* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fffdf8;
  color: #333;
  line-height: 1.6;
}

/*HEADER */
header {
  background-color: #330011;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffcc00;
}

/* === HERO === */
.hero {
  background-image: url('images/pets-3715733_1280.jpg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.pet-text {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 10px;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
}

/*SECTIONS */
.section {
  padding: 4rem 2rem;
}

.section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #330011;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ffcc00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section p {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 1.1rem;
  color: #555;
}

/*  TIPS  */
.tips {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.tips li {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* SHOP */
h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #4CAF50;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  flex: 1 1 calc(25% - 2rem);
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #222;
}

.product-card p {
  font-size: 0.9rem;
  color: #666;
}

/* SERVICES */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  width: 280px;
  background: #f2f7f0;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #5a7d4d;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/*CONTACT */
.map {
  margin-top: 3rem;
  margin-bottom: -55px;
}

#about {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

#about p {
  text-align: justify;
  font-size: 1.1rem;
  color: #444;
}

/*FOOTER */
footer {
  background: #330011;
  color: #eee;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffcc00;
}

/*RESPONSIVE */
@media (max-width: 1024px) {
  .product-card {
    flex: 1 1 calc(33.333% - 2rem);
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 1 1 48%;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 1 1 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
