* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #8b1d3b;
  --accent: #f6c1cc;
  --light: #ffffff;
  --muted: #666;
  --bg: #faf7f8;
  /* convenience aliases used throughout the stylesheet */
  --primary-color: var(--primary);
  --secondary-color: var(--accent);
  --dark-color: #222;
}

html,
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--dark-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  /* base responsive font size */
  font-size: clamp(14px, 1.2vw + 12px, 18px);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 1.3rem 2.3rem;
  border: 1px solid var(--secondary-color);
  border-radius: 32px;
  background: var(--secondary-color);
  color: var(--dark-color);
  cursor: pointer;
  transform-origin: all 0.2s;
}

.btn:hover {
  background: var(--primary-color);
  border-color: var(--light);
  color: var(--light);
}

/* Navbar */
.navbar {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s ease-in-out;
}

.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  height: 45px;
}

.navbar .main-menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
}

.navbar a {
  margin-left: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 500;
}

.navbar a:hover {
  color: var(--accent);
}

.navbar i {
  font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

.navbar .mobile-menu-toggle {
  color: #fff;
  cursor: pointer;
}

.navbar .mobile-menu-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.95;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.navbar .mobile-menu-items.active {
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

.navbar .mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.2rem;
}

/* HERO */
.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)),
    url("https://images.unsplash.com/photo-1617922001439-4a2e6562f328?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NTY2Nzh8MHwxfHNlYXJjaHwxfHx3b21lbiUyMGZhc2hpb258ZW58MHx8fHwxNzY5NTU3NjgyfDA&ixlib=rb-4.1.0&q=85")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  padding-top: 120px;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.05;
}

/* Hero entrance animation */
.hero-content {
  max-width: 600px;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 800ms ease-out 200ms forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  border: 1px solid var(--primary);
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.outline {
  background: transparent;
  color: var(--primary);
}

.btn:hover {
  transform: translateY(-2px);
}

/* New Arrivals */
.new-arrivals {
  padding: 90px 60px;
  background: var(--light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15px;
  color: var(--muted);
}

/* GRID */
.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.arrival-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.arrival-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HOVER */
.arrival-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

/* Make general cards (testimonial, arrival) have a clearer hover */
.testimonial-card,
.arrival-card {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.14);
}

/* WHY SHOP WITH US */
section {
  padding: 80px 60px;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  font-size: 14px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--light);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 22px;
}

.feature-card h3 {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
}

/* Hover effect on feature icon */
.feature-icon {
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.feature-icon:hover {
  transform: scale(1.08);
  background: var(--secondary-color);
  box-shadow: 0 8px 20px rgba(139, 29, 59, 0.08);
}

/* Stronger shadow on feature card hover */
.feature-card {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 100px 60px;
  background: #fafafa;
}

.about h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 15px;
}

.about ul {
  margin-top: 15px;
  columns: 2;
  font-size: 14px;
  color: var(--primary);
  text-decoration: dotted;
}

.about ul li {
  margin-bottom: 8px;
}

/* Custom pink bullet for About lists */
.about ul {
  list-style: none; /* remove default bullets */
  padding-left: 0;
}

.about ul li {
  position: relative;
  padding-left: 22px; /* space for custom bullet */
  margin-bottom: 10px;
}

.about ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
}

/* Accent text highlighting in About section */
.accent-text {
  color: var(--accent);
  font-weight: 600;
}

/* Video */
.about-video video {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.testimonials {
  padding: 100px 60px;
  background: var(--light);
  text-align: center;
}

.testimonials h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 10px;
}
.testimonials .subtitle {
  color: var(--muted);
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--light);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--secondary-color);
  text-align: left;
}

.testimonial-card .stars {
  color: var(--secondary-color);
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card .author {
  color: var(--primary);
  font-weight: 600;
}

/* Call-To-Action */
.cta {
  padding: 120px 60px;
  background: radial-gradient(
    circle at top,
    var(--secondary-color),
    var(--light)
  );
  text-align: center;
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 25px;
}

.cta p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cta-note {
  display: inline-block;
  background: var(--light);
  padding: 14px 26px;
  border-radius: 30px;
  color: var(--muted);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--light);
  padding: 80px 60px 40px;
}

.footer-img {
  height: 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer p,
.footer li {
  color: #f3dce2;
  line-height: 1.8;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.socials span {
  display: inline-block;
  margin-right: 12px;
  background: #ffffff;
  color: #8b1d3b;
  padding: 8px 12px;
  border-radius: 50%;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

/* RESPONSIVE: breakpoints for 1200, 992, 768, 576 */

/* <= 1200px */
@media (max-width: 1200px) {
  .container {
    max-width: 1100px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .section-header h2 {
    font-size: 36px;
  }
}

/* <= 992px */
@media (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }

  .arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }

  section {
    padding: 60px 30px;
  }
}

/* <= 768px — mobile: show hamburger, hide desktop menu */
@media (max-width: 768px) {
  .navbar .main-menu-items {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .navbar img {
    height: 40px;
  }

  .hero {
    padding: 100px 18px;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .arrivals-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile menu: full-width dropdown from top (40% screen height) */
  .navbar .mobile-menu-items {
    position: fixed;
    top: 0;
    left: 0;
    height: 40vh;
    width: 100vw;
    background: var(--light);
    color: var(--primary);
    padding: 1rem 1.5rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1500;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .navbar .mobile-menu-items.active {
    transform: translateY(0);
  }

  .navbar .mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
  }

  .navbar .mobile-menu-close:hover {
    opacity: 0.7;
  }

  .navbar .mobile-menu-toggle {
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .navbar .mobile-menu-list {
    color: var(--primary);
    gap: 1.75rem;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .navbar .mobile-menu-list li a {
    color: var(--primary);
    transition: opacity 0.2s ease;
  }

  .navbar .mobile-menu-list li a:hover {
    opacity: 0.7;
  }

  .mobile-social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }

  .mobile-social-icons a {
    color: var(--primary);
    font-size: 2rem;
    transition: opacity 0.2s ease;
  }

  .mobile-social-icons a:hover {
    opacity: 0.7;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Prevent body scroll when menu open (JS toggles overflow) */
}

/* <= 576px */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .container {
    padding: 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 32px;
  }

  .cta p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    padding: 12px 18px;
  }
}

/* Additional tuning: typography and CTA note responsiveness */
@media (max-width: 768px) {
  .hero p {
    font-size: 15px;
  }

  .btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .cta-note {
    display: block;
    width: 90%;
    max-width: 760px;
    margin: 16px auto 0;
    padding: 10px 14px;
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero p {
    font-size: 14px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta-note {
    width: 95%;
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Small refinement for medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .arrivals-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 44px;
  }
}
