/* ==============================
   GLOBAL STYLES
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff8f9;
  color: #333333;
  line-height: 1.6;
}

/* ==============================
   NAVIGATION BAR
============================== */
header {
  background-color: #00b8d4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 1rem;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #f8bbd0;
}

nav ul li img {
  border-radius: 50%;
  object-fit: cover;
}

/* ==============================
   HERO SECTIONS
============================== */
.hero,
.shop-details-hero {
  background: linear-gradient(135deg, #f8bbd0 40%, #00b8d4 60%);
  color: #ffffff;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1,
.shop-details-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero button {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.hero button:hover {
  background-color: #c2185b;
}

.hero-img,
.shop-details-hero img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==============================
   MAIN SECTIONS (for all pages)
============================== */
section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  color: #e91e63;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ==============================
   ABOUT & HOME PAGE
============================== */
.special-offers ul,
.shop-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
}

.special-offers li,
.shop-list li {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-offers li:hover,
.shop-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.special-offers li img,
.shop-list li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.special-offers h3 {
  margin: 1rem 0 0.5rem;
  color: #333333;
}

.special-offers p {
  padding: 0 1rem 1.5rem;
  color: #666666;
}

/* ==============================
   SHOP DETAILS PAGES
============================== */
.shop-details-info ul {
  list-style: none;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shop-details-info ul li {
  margin: 0.8rem 0;
}

.shop-details-info a {
  color: #00b8d4;
  text-decoration: none;
}

.shop-details-info a:hover {
  text-decoration: underline;
}

.shop-details-description {
  background-color: #ffffff;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==============================
   CONTACT PAGE
============================== */
.contact-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #00b8d4;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0097a7;
}

/* ==============================
   FOOTER
============================== */
footer {
  background-color: #333333;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  margin-top: 3rem;
}

footer p {
  margin: 0;
}

/* ==============================
   RESPONSIVE DESIGN
============================== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-img {
    max-width: 100%;
  }

  section {
    padding: 2rem 1rem;
  }
}
