@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* Global Styles */
:root {
  --primary: #F68B1E; /* Brand orange */
  --secondary: #111111; /* Dark/black accents */
  --accent: #FFF4E5; /* Soft orange tint */
  --light: #ffffff;
  --dark: #333333;
  --gray: #f5f5f5;
  --dark-gray: #777777;
  --gold: #C19A6B;
  --black: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
    padding-top: 64px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(246, 139, 30, 0.20);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(246, 139, 30, 0.30);
}

.btn:active {
    transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(246, 139, 30, 0.20);
}

.btn-secondary {
    background-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background-color: var(--primary);
  box-shadow: 0 6px 20px rgba(246, 139, 30, 0.30);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.2);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--primary);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
    margin: 15px auto 0;
}

.text-center {
    text-align: center;
}

.light-bg {
    background-color: var(--gray);
}

/* Header Styles */
header {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 32px;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
  }

/* Consistent site header used across pages */
.site-header{
    background-color: var(--light);
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
}
.site-header .header-inner{
    display:flex;
    align-items:center;
    gap:18px;
    padding:12px 20px;
    max-width:1200px;
    margin: 0 auto;
}

/* Ensure header-inner is positioned for absolute centering on mobile */
.site-header .header-inner { position: relative; }
.site-header .header-left{flex:0 0 auto}
.site-header .header-center{flex:1 1 auto; text-align:center; display:flex; justify-content:center}
.site-header .header-right{flex:0 0 auto}
.site-logo{height:48px; width:auto; display:block}
.site-header .header-left{display:flex; align-items:center; gap:10px}
.site-header .header-left .logo-link{display:flex; align-items:center}
.site-header .logo-link .site-logo{display:block}
.site-brand{display:none}
.header-nav{display:flex; gap:18px; align-items:center}
.header-nav a{color:var(--secondary); text-decoration:none; font-size:16px}
.cart-icon{height:28px; width:auto}

/* Responsive: hide inline nav on small screens; mobile menu handled elsewhere */
@media (max-width:720px){
  .site-header .header-inner{padding:10px; justify-content:space-between}
  /* keep nav available for mobile (hidden off-canvas via left:-100%) so JS can toggle it */
  .header-nav{display:flex}
  /* keep the header center container visible so its nav can slide in on mobile */
  .site-header .header-center{display:flex}
  .site-brand{font-size:20px}
  .site-logo{height:40px}
  .header-right{display:flex; align-items:center; gap:8px}
  /* cart left, hamburger right */
  .header-right .cart-link{order:1}
  .header-right .mobile-menu-btn{order:2; display:inline-flex; width:44px; height:44px; align-items:center; justify-content:center; border-radius:8px}
  .mobile-menu-btn .hamburger{width:20px; height:14px}
  .mobile-menu-btn .hamburger span{height:2px}
  /* Show floating cart and hide header cart link on mobile to use floating cart UX */
  .floating-cart{display:block; right:16px; bottom:16px}
  .header-right .cart-link{display:none}
}

/* Hamburger button styles */
.mobile-menu-btn{display:inline-flex; align-items:center; justify-content:center; background:none; border:0; padding:6px; margin-right:8px}
.hamburger{display:inline-block; width:24px; height:18px; position:relative}
.hamburger span{display:block; height:2px; background:var(--secondary); margin:4px 0; transition: all 0.22s ease}
.mobile-menu-btn.open .hamburger span:nth-child(1){transform: translateY(6px) rotate(45deg)}
.mobile-menu-btn.open .hamburger span:nth-child(2){opacity:0}
.mobile-menu-btn.open .hamburger span:nth-child(3){transform: translateY(-6px) rotate(-45deg)}

/* Ensure cart icon sits after button */
.header-right .cart-link{display:inline-flex; align-items:center}

  .logo span {
    color: var(--secondary);
  }

nav ul {
  list-style: none;
  margin-left: 30px;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--secondary);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .header-container {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 24px;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--light);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1300; /* ensure mobile nav sits above the fixed header */
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

  /* Support nav markup that uses anchors directly (no ul/li) */
  .header-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    width: 100%;
    align-items: flex-start;
  }
    
    nav ul li {
        margin: 0;
        border-bottom: 1px solid var(--gray);
    }

  .header-nav a {
    display: block;
    width: 100%;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--gray);
    transition: color 0.3s ease, background-color 0.18s ease;
  }

  .header-nav a:last-child {
    border-bottom: none;
  }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
        font-weight: 500;
        color: var(--dark);
        transition: color 0.3s ease;
    }
    
    nav ul li a:after {
        display: none;
    }
    
    nav ul li a:hover {
        color: var(--secondary);
        background-color: var(--accent);
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

  .header-nav a:hover {
    color: var(--secondary);
    background-color: var(--accent);
  }
    
    .cart-icon {
        margin-left: 15px;
    }
    
    .cart-icon a {
        padding: 6px;
        font-size: 18px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
    
    /* Overlay when mobile menu is open */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    z-index: 1290; /* sits below the nav but above the page content/header */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

  /* Show close button inside nav on mobile */
  .mobile-nav-close { display: block; }
}

/* Mobile search button (next to cart) */
.mobile-search-btn {
  display: none; /* visible on mobile via media query */
  background: none;
  border: none;
  font-size: 18px;
  padding: 8px 10px;
  margin-left: 8px;
  color: var(--secondary);
  cursor: pointer;
}

.mobile-search-btn i { font-size: 18px; }

/* Mobile search overlay panel */
#mobileSearchOverlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1350;
  background: rgba(0,0,0,0.45);
}

#mobileSearchOverlay.active { display: flex; }

.mobile-search-panel {
  background: var(--light);
  width: 94%;
  max-width: 640px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.mobile-search-panel form { display:flex; gap:10px; align-items:center; }
.mobile-search-panel input[type="search"] { flex:1; padding:12px 14px; border:1px solid #ddd; border-radius:8px; font-size:16px; }
.mobile-search-panel .btn { padding: 10px 16px; border-radius:8px; }
.mobile-search-close { background:none; border:none; font-size:28px; position:absolute; right:18px; top:10px; color:var(--secondary); }

@media (max-width: 768px) {
  .mobile-search-btn { display: inline-flex; }
  /* center logo on mobile */
  .site-logo { position: absolute; left: 50%; transform: translateX(-50%); top: 10px; z-index: 1400; height: 40px; }
  /* ensure header-right stays on the right */
  .header-right { display:flex; align-items:center; gap:8px; }
}

/* Shop page search styling */
.shop-search { position: relative; max-width: 520px; margin: 0 auto; }
.shop-search input#searchInput {
  width: 100%;
  padding: 12px 44px 12px 16px; /* room for clear button */
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 18px rgba(128,0,32,0.06);
  font-size: 16px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.shop-search input#searchInput:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(193,154,107,0.12);
}
.shop-search .search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--secondary);
  padding: 6px;
  cursor: pointer;
  border-radius: 6px;
}
.shop-search .search-clear.show { display: block; }

/* Ensure modal and action buttons center their text and are vertically aligned */
.request-modal-panel .btn,
.mobile-search-panel .btn,
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 12px 26px !important; /* comfortable horizontal padding */
  line-height: 1 !important; /* ensure vertical centering of text */
  min-height: 44px !important; /* consistent tappable area on mobile */
  white-space: nowrap !important; /* avoid wrapping inside pills */
  gap: 8px !important; /* spacing for icon + text if present */
}

/* Center the modal actions group and allow wrap on very small screens */
.request-modal-panel .modal-actions,
.request-modal-panel form > div {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

/* Make sure any inline spans inside buttons stay centered vertically */
.request-modal-panel .btn > span,
.mobile-search-panel .btn > span {
  display: inline-block;
  line-height: 1 !important;
  vertical-align: middle !important;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background-color: var(--accent);
}

.mobile-menu-btn:active {
    background-color: var(--secondary);
    color: var(--light);
}

/* Mobile nav close button */
.mobile-nav-close {
  display: none; /* shown only on mobile via media query rules above */
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: var(--secondary);
  padding: 8px 12px;
  position: absolute;
  right: 16px;
  top: 12px;
  cursor: pointer;
}

.mobile-nav-close:focus {
  outline: 2px solid var(--primary);
  border-radius: 6px;
}

.cart-icon {
    position: relative;
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.cart-icon a {
    color: var(--dark);
    font-size: 30px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-icon a:hover {
    color: var(--secondary);
    background-color: var(--accent);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary);
    color: var(--light);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid var(--light);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
    max-width: 1440px;
    margin: 0 auto 0 auto;
    min-height: 600px;
    background: #fff;
    gap: 0;
}
.hero-content {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4vw 0 7vw;
    color: var(--black);
    z-index: 2;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--black);
    letter-spacing: 0.01em;
}
.hero-content .subhead {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    color: #555;
    margin-bottom: 2.2rem;
    letter-spacing: 0.01em;
}
.cta-gold {
    background: var(--primary);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 1.1rem 2.8rem;
    box-shadow: 0 2px 8px rgba(193,154,107,0.10);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.2s;
    outline: none;
    display: inline-block;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}
.cta-gold:hover, .cta-gold:focus {
    background: #b68b5a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(193,154,107,0.3);
}
.hero-carousel {
    flex: 1 1 60%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    overflow: hidden;
    background: #f8f6f7;
    border-radius: 0 0 0 60px;
}
.hero-carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-carousel-img {
    display: none;
    width: 100%;
    max-width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(193,154,107,0.10);
    transition: box-shadow 0.3s, filter 0.3s;
}
.hero-carousel-img.active {
    display: block;
    animation: fadeIn 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-carousel-img:hover {
    box-shadow: 0 16px 48px rgba(193,154,107,0.18);
    filter: brightness(1.04) saturate(1.1);
}
.hero-carousel-img:hover::after {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(193,154,107,0.18) 0%, rgba(255,255,255,0.0) 100%);
    pointer-events: none;
    border-radius: 24px;
}
.hero-carousel-prev, .hero-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(193,154,107,0.08);
    opacity: 0.85;
}
.hero-carousel-prev { left: 2vw; }
.hero-carousel-next { right: 2vw; }
.hero-carousel-prev:hover, .hero-carousel-next:hover {
    background: #b68b5a;
    color: #fff;
    opacity: 1;
}
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 80px;
        min-height: 480px;
    }
    .hero-content {
        flex: unset;
        width: 100%;
        padding: 0 4vw 0 4vw;
        text-align: center;
        align-items: center;
    }
    .hero-carousel {
        flex: unset;
        width: 100%;
        min-height: 320px;
        border-radius: 0 0 0 30px;
        margin-top: 2.5rem;
    }
    .hero-carousel-img {
        max-width: 90vw;
        height: 380px;
    }
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 60px;
        min-height: 320px;
    }
    .hero-content {
        padding: 0 2vw 0 2vw;
        text-align: center;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-content .subhead {
        font-size: 1.1rem;
    }
    .cta-gold {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    .hero-carousel {
        min-height: 220px;
        border-radius: 0 0 0 12px;
        margin-top: 1.2rem;
    }
    .hero-carousel-img {
        width: 100vw;
        height: 100vw;
        max-width: 100vw;
        object-fit: cover;
        border-radius: 8px;
    }
    .hero-carousel-prev, .hero-carousel-next {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}
@media (max-width: 480px) {
    .hero {
        padding-top: 32px;
        min-height: 180px;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .hero-content .subhead {
        font-size: 0.98rem;
    }
    .cta-gold {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
    }
    .hero-carousel-img {
        height: 70vw;
    }
    .hero-carousel-prev, .hero-carousel-next {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}

/* Hero Shop Now Button Styling */
.hero .btn {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 28px auto 0 auto;
  border-radius: 30px;
  padding: 15px 0;
  background: var(--primary);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 12px rgba(128,0,32,0.10);
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.hero .btn:hover, .hero .btn:focus {
  background: var(--secondary);
  color: var(--light);
  transform: scale(1.04);
  box-shadow: 0 4px 18px rgba(183,110,121,0.13);
}
.hero .btn:active {
  background: var(--primary);
  color: var(--light);
  transform: scale(0.98);
}
@media (max-width: 768px) {
  .hero .btn {
    max-width: 90%;
    width: 100%;
    font-size: 16px;
    padding: 13px 0;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .hero .btn {
    max-width: 95%;
    font-size: 15px;
    padding: 12px 0;
    margin-top: 14px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: var(--light);
    text-align: center;
    padding: 80px 0;
    margin-top: 80px;
}

.page-header h1 {
    color: var(--light);
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: var(--gray);
}

.categories-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-snap-type: x mandatory;
}
.categories-grid::-webkit-scrollbar {
    display: none;
}

@keyframes categories-autoscroll {
    0% { scroll-behavior: smooth; transform: translateX(0); }
    100% { scroll-behavior: smooth; transform: translateX(-40%); }
}

@media (max-width: 768px) {
    .categories-grid {
        gap: 16px;
    }
}

.category-card {
    min-width: 220px;
    max-width: 260px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.category-info {
    padding: 20px;
}

.category-info h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.category-info p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.product-card {
    background-color: var(--light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(128,0,32,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    position: relative;
}

.product-card:hover, .product-card:focus-within {
    box-shadow: 0 8px 32px rgba(128,0,32,0.13);
    transform: translateY(-4px) scale(1.02);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: var(--light);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    background: var(--gray);
    transition: transform 0.2s;
}

.product-card:hover .product-img {
    transform: scale(1.04);
}

.product-info {
    padding: 18px 16px 16px 16px;
}

.product-info h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.product-price {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 17px;
}

.product-price .old-price {
    text-decoration: line-through;
    color: var(--dark-gray);
    font-size: 14px;
    margin-left: 5px;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 12px 0;
    background-color: var(--secondary);
    color: var(--light);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-size: 15px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(128,0,32,0.06);
}

.add-to-cart:active {
    background: var(--primary);
    color: var(--light);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--gray);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

/* About Page */
.about-page {
    padding: 80px 0;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-values {
    margin-bottom: 60px;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 24px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.about-team {
    margin-top: 60px;
}

.about-team h2 {
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--dark-gray);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--accent);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--secondary);
}

/* Instagram Section */
.instagram {
    padding: 80px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.instagram-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover .instagram-img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background-color: rgba(246, 139, 30, 0.70);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-icon {
    color: var(--light);
    font-size: 24px;
}

/* Shop Page */
.shop {
    padding: 60px 0;
}

.shop-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.shop-filter {
    position: relative;
}

#filterBtn {
    background-color: #fff;
    border: 1.5px solid var(--secondary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.08rem;
    box-shadow: 0 1px 6px rgba(183,110,121,0.06);
    transition: background 0.18s, box-shadow 0.18s, border-color 0.18s, transform 0.18s;
    min-width: 120px;
    min-height: 48px;
}
#filterBtn:hover, #filterBtn:focus {
    background: #f7e6ea;
    box-shadow: 0 4px 18px rgba(183,110,121,0.13);
    border-color: #b76e79;
    color: #8d4a5a;
    transform: translateY(-2px) scale(1.03);
    outline: none;
}
#filterBtn i, #filterBtn svg {
    font-size: 1.2em;
    vertical-align: middle;
    margin-right: 4px;
}
@media (max-width: 600px) {
  #filterBtn {
    min-width: 90px;
    min-height: 44px;
    font-size: 1rem;
    padding: 10px 16px;
  }
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1.5px solid #eee;
    border-radius: 18px;
    padding: 24px 20px 20px 20px;
    width: 260px;
    box-shadow: 0 8px 32px rgba(183,110,121,0.13);
    z-index: 100;
    display: none;
    transition: box-shadow 0.18s, border-color 0.18s, background 0.18s;
}
.filter-dropdown.active {
    display: block;
}
.filter-dropdown:hover, .filter-dropdown:focus-within {
    box-shadow: 0 12px 40px rgba(183,110,121,0.18);
    border-color: #b76e79;
}
.apply-filters {
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.08rem;
    margin-top: 10px;
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
    box-shadow: 0 1px 6px rgba(183,110,121,0.06);
}
.apply-filters:hover, .apply-filters:focus {
    background-color: #b76e79;
    box-shadow: 0 4px 18px rgba(183,110,121,0.13);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}
.shop-sort {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-sort label {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 600;
  margin-right: 8px;
  letter-spacing: 0.01em;
}
.shop-sort select {
  padding: 12px 44px 12px 24px;
  border: 2px solid #b76e79;
  border-radius: 999px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  box-shadow: 0 2px 12px rgba(183,110,121,0.10);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  min-width: 170px;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
  cursor: pointer;
  position: relative;
}
.shop-sort select:focus, .shop-sort select:hover {
  border-color: #222;
  box-shadow: 0 4px 18px rgba(183,110,121,0.18);
  background: #f7e6ea;
  color: #b76e79;
}
.shop-sort select::-ms-expand {
  display: none;
}
.shop-sort select::-webkit-input-placeholder {
  color: #b76e79;
}
.shop-sort select::placeholder {
  color: #b76e79;
}
.shop-sort::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg fill="%23b76e79" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat center/contain;
  z-index: 2;
}
.shop-sort select {
  background-image: none !important;
}
@media (max-width: 600px) {
  .shop-sort label {
    font-size: 1rem;
  }
  .shop-sort select {
    min-width: 120px;
    font-size: 1rem;
    padding: 10px 36px 10px 14px;
  }
  .shop-sort::after {
    right: 14px;
    width: 16px;
    height: 16px;
  }
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.category-filter {
    list-style: none;
}

.category-filter li {
    margin-bottom: 10px;
}

.category-filter a {
    color: var(--dark);
    transition: color 0.3s ease;
}

.category-filter a:hover {
    color: var(--secondary);
}

.price-range {
    margin-top: 15px;
}



.price-range input[type="range"] {
    width: 100%;
    height: 5px;
    appearance: none;
    -webkit-appearance: none;
    background-color: #ddd;
    border-radius: 5px;
    outline: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background-color: var(--secondary);
    border-radius: 50%;
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
}

.shop-products {
    margin-bottom: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.page-numbers {
    font-weight: 500;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--dark-gray);
}

.breadcrumb a {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

.product-detail-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 900px;
    margin: 48px auto 64px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(128,0,32,0.10);
    padding: 36px 32px;
}
.product-detail-img-wrap {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-img {
  width: 100%;
  max-width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(128,0,32,0.07);
}
.product-detail-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-detail-info h1 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 8px;
}
.product-detail-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}
.product-detail-desc {
  font-size: 1.08rem;
  color: var(--dark-gray);
  margin-bottom: 18px;
}
.product-detail-add {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .product-detail-container {
    flex-direction: column;
    gap: 24px;
    padding: 22px 8px;
  }
  .product-detail-img-wrap {
    max-width: 100%;
    justify-content: center;
  }
  .product-detail-img {
    max-width: 100%;
    height: 220px;
  }
}

.product-gallery {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.product-thumbnail.active {
    border-color: var(--primary);
}

.product-main-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background-color: var(--gray);
    border-radius: 10px;
    padding: 20px;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.product-price-detail {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-rating-stars {
    color: #ffc107;
}

.product-review-count {
    color: var(--dark-gray);
    font-size: 14px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.option-values {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option-value {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-value:hover {
    border-color: var(--primary);
}

.option-value.selected {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector h3 {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.quantity-control {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 16px;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.add-to-cart-btn {
    padding: 15px 30px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary);
}

.wishlist-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

.product-meta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.meta-item {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.meta-item span:first-child {
    font-weight: 500;
    min-width: 100px;
}

/* Related Products */
.related-products {
    padding: 60px 0;
}

/* Cart Page */
.cart {
    padding: 60px 0;
}

.page-title {
    margin-bottom: 40px;
    text-align: center;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.cart-item-option {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.cart-item-remove {
    color: var(--dark-gray);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: var(--primary);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    background-color: var(--light);
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.cart-item-quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cart-item-total {
    font-weight: 600;
    text-align: right;
}

.empty-cart {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empty-cart .btn,
.empty-cart a.btn {
  margin: 18px auto 0 auto;
  display: block;
  min-width: 200px;
  font-size: 1.1rem;
}

.empty-cart i {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.empty-cart h3 {
    margin-bottom: 10px;
}

.empty-cart p {
  text-align: center;
  width: 100%;
}

.cart-summary {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-weight: 600;
    font-size: 18px;
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    margin-top: 18px;
    background: var(--primary);
    color: var(--light);
    box-shadow: 0 2px 12px rgba(128,0,32,0.10);
    transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
}
.checkout-btn:hover, .checkout-btn:focus {
  background: var(--secondary);
  color: var(--light);
  transform: scale(1.04);
  box-shadow: 0 4px 18px rgba(183,110,121,0.13);
}
.checkout-btn:active {
  background: var(--primary);
  color: var(--light);
  transform: scale(0.98);
}
@media (max-width: 900px) {
  .checkout-btn {
    font-size: 16px;
    padding: 13px 0;
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .checkout-btn {
    font-size: 15px;
    padding: 12px 0;
    margin-top: 10px;
  }
}

.secure-checkout {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--dark-gray);
}

/* Recently Viewed */
.recently-viewed {
    padding: 60px 0;
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.no-results h3 { color: var(--primary); margin-bottom:10px; }
.no-results p { color: var(--dark-gray); max-width:640px; margin:0 auto; }

/* Request Item Modal */
.request-modal { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2000; }
.request-modal-overlay { position:absolute; inset:0; background: rgba(0,0,0,0.5); }
.request-modal-panel { position: relative; background: var(--light); width: 96%; max-width: 640px; border-radius: 12px; padding: 22px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); z-index: 2001; }
.request-modal h2 { margin-top:0; color: var(--primary); }
.request-modal p { color: var(--dark-gray); margin-bottom: 12px; }
.request-modal label { display:block; margin-top:10px; font-weight:600; }
.request-modal input[type="text"], .request-modal input[type="tel"], .request-modal textarea { width:100%; padding:10px 12px; border:1px solid #e6e6e6; border-radius:8px; font-size:14px; margin-top:6px; }
.request-modal .request-modal-close { position:absolute; right:12px; top:8px; background:none; border:none; font-size:28px; color:var(--secondary); }
.request-modal .btn { margin-top:8px; }

@media (max-width:480px) {
  .request-modal-panel { padding: 14px; }

  /* Modal overlay dimmer */
  .request-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
  }

  /* Request modal specifics */
  .request-modal-panel h2 { margin-bottom: 8px; color: var(--primary); font-size: 1.6rem; }
  .request-modal-panel p#requestItemIntro { margin-bottom: 14px; color: #666; line-height: 1.45; }
  .request-modal-panel label { display: block; margin-top: 10px; margin-bottom: 6px; font-weight: 600; color: var(--dark); }
  .request-modal-panel input[type="text"],
  .request-modal-panel input[type="tel"],
  .request-modal-panel textarea { width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid #eee; font-size: 15px; }

  /* Polished actions */
  .modal-actions { display:flex; gap:14px; justify-content:center; align-items:center; margin-top:14px; flex-wrap:wrap; }
  .modal-actions .btn { padding: 12px 22px; min-width: 180px; font-size: 15px; }
  .modal-actions .btn-secondary { min-width: 140px; }

  /* Focus/keyboard accessibility */
  .request-modal-panel .btn:focus, .request-modal-panel input:focus, .request-modal-panel textarea:focus { outline: 3px solid rgba(246,139,30,0.18); outline-offset: 2px; }

  @media (max-width: 420px) {
    .modal-actions .btn { min-width: 100%; }
    .request-modal-panel { padding: 16px; }
  }
  .request-modal .request-modal-close { right:8px; top:6px; }
}

/* Checkout Page */
.checkout {
    padding: 60px 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.checkout-form {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.shipping-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-method input {
    margin-right: 15px;
}

.shipping-method:hover {
    border-color: var(--primary);
}

.method-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.method-name {
    font-weight: 500;
}

.method-price {
    font-weight: 600;
    color: var(--primary);
}

.method-time {
    font-size: 14px;
    color: var(--dark-gray);
    width: 100%;
}

.payment-methods {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.payment-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.payment-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    background-color: var(--light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-tab.active {
    background-color: var(--primary);
    color: var(--light);
}

.payment-content {
    padding: 20px;
    display: none;
}

.payment-content.active {
    display: block;
}

.order-summary {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.order-item-name {
    flex: 1;
}

.order-item-quantity {
    color: var(--dark-gray);
}

.order-item-price {
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

/* Contact Page */
.contact {
    padding: 60px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding: 30px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: var(--secondary);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.contact-form {
    padding: 30px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-map {
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links h3 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-contact {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
  margin-top: 0;
}

.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--secondary);
  text-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  word-break: break-word;
  color: #fff;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 17px;
  min-width: 20px;
  text-align: center;
}

.footer-contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s, text-decoration 0.2s;
}

.footer-contact-link:hover, .footer-contact-link:focus {
  color: var(--secondary);
  text-decoration: underline;
}

@media (max-width: 700px) {
  .footer-contact {
    font-size: 15px;
    margin-top: 0;
    text-align: center;
  }
  .footer-contact h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .footer-contact p {
    justify-content: center;
    font-size: 15px;
    margin-bottom: 6px;
  }
  .footer-contact i {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .footer-contact {
    font-size: 14px;
  }
  .footer-contact h3 {
    font-size: 16px;
  }
  .footer-contact p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .footer-contact i {
    font-size: 15px;
  }
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Notification Popup Styles */
.notification {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  min-width: 260px;
  max-width: 90vw;
  background: var(--light);
  color: var(--primary);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(128,0,32,0.18);
  padding: 18px 48px 18px 56px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  font-weight: 600;
  border-left: 6px solid var(--secondary);
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
}
.notification .notif-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--secondary);
}
.notification .notif-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--dark-gray);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.notification .notif-close:hover {
  opacity: 1;
}
.notification.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(30px);
}
@media (max-width: 576px) {
  .notification {
    padding: 14px 12px 14px 40px;
    font-size: 15px;
    min-width: 180px;
  }
  .notification .notif-icon {
    left: 10px;
    font-size: 18px;
  }
  .notification .notif-close {
    right: 8px;
    font-size: 18px;
  }
}

/* --- GENERAL SPACING & NO HORIZONTAL SCROLL --- */
body {
  overflow-x: hidden;
}
.container {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 576px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.section-title {
  margin-bottom: 32px;
  font-size: 28px;
}

/* --- BUTTONS POLISH --- */
.btn, .btn-secondary, .add-to-cart, .add-to-cart-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(128,0,32,0.06);
}
.btn:active, .btn-secondary:active {
  background: var(--secondary);
  color: var(--light);
}

/* --- REMOVE OUTLINES ON BUTTONS BUT KEEP FOR KEYBOARD USERS --- */
button:focus:not(:focus-visible) {
  outline: none;
}
button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* --- ENSURE NO HORIZONTAL SCROLL ON MOBILE --- */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* --- HOMEPAGE & SHOP GRID POLISH --- */
.products, .categories, .about, .newsletter, .instagram, .related-products, .recently-viewed {
  padding-left: 0;
  padding-right: 0;
}
.products {
  padding-top: 60px;
  padding-bottom: 60px;
}
.categories {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-title {
  margin-bottom: 36px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.products-grid, .categories-grid {
  gap: 28px;
}

@media (max-width: 768px) {
  .products-grid, .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .products-grid, .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.product-card {
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(128,0,32,0.07);
  transition: box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
}
.product-card:hover, .product-card:focus-within {
  box-shadow: 0 8px 32px rgba(128,0,32,0.13);
  transform: translateY(-3px) scale(1.01);
}
.product-img {
  height: 210px;
  border-radius: 12px 12px 0 0;
  background: var(--gray);
  object-fit: cover;
  transition: transform 0.18s;
}
.product-card:hover .product-img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .products, .categories {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .products-grid, .categories-grid {
    gap: 16px;
  }
  .product-img {
    height: 200px;
  }
  .section-title {
    font-size: 22px;
    margin-bottom: 22px;
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
  }
  
  .btn-secondary {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
  }
}
.product-info {
  padding: 16px 12px 14px 12px;
}

@media (max-width: 768px) {
  .product-info {
    padding: 12px 8px 10px 8px;
  }
  
  .product-info h3 {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.3;
    font-weight: 500;
  }
  
  .product-price {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 600;
  }
  
  .add-to-cart {
    padding: 10px 0;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  }
}
.product-info h3 {
  font-size: 16px;
  margin-bottom: 7px;
}
.product-price {
  font-size: 16px;
  margin-bottom: 8px;
}
.add-to-cart {
  padding: 11px 0;
  font-size: 14px;
  border-radius: 30px;
  margin-top: 7px;
}
.add-to-cart:active {
  background: var(--primary);
  color: var(--light);
}
/* Newsletter & Instagram mobile polish */
.newsletter-form {
  flex-direction: column;
  gap: 8px;
}
.newsletter-form input, .newsletter-form button {
  border-radius: 30px;
}
.instagram-grid {
  gap: 10px;
}
@media (max-width: 576px) {
  .products, .categories, .about, .newsletter, .instagram, .related-products, .recently-viewed {
    padding-left: 0;
    padding-right: 0;
  }
  .product-img {
    height: 180px;
  }
  
  .product-info {
    padding: 10px 6px 8px 6px;
  }
  
  .product-info h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  .product-price {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .add-to-cart {
    padding: 8px 0;
    font-size: 12px;
    margin-top: 6px;
    min-height: 32px;
  }
  
  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .btn-secondary {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
  }
}
/* Remove horizontal scroll on all sections */
html, body, .container {
  max-width: 100vw;
  overflow-x: hidden;
}

/* --- PRODUCT DETAIL, ABOUT, CONTACT, CHECKOUT POLISH --- */
@media (max-width: 992px) {
  .product-detail-container,
  .about-container,
  .about-story,
  .contact-container,
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .product-main-image {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .product-detail-container,
  .about-container,
  .about-story,
  .contact-container,
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product-main-image {
    height: 220px;
    padding: 10px;
  }
  .product-thumbnails {
    flex-direction: row;
    gap: 8px;
  }
  .about-img, .story-image img {
    margin-bottom: 18px;
  }
}
.product-detail, .about-page, .contact, .checkout {
  padding-top: 48px;
  padding-bottom: 48px;
}
.form-group input, .form-group select, .form-group textarea {
  font-size: 16px;
  border-radius: 6px;
  padding: 12px 14px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 2px solid var(--secondary);
}
.form-section, .order-summary, .cart-summary {
  margin-bottom: 18px;
}
.checkout-btn, .btn, .btn-secondary {
  padding: 14px 0;
  font-size: 16px;
  border-radius: 30px;
}
@media (max-width: 576px) {
  .product-main-image {
    height: 140px;
    padding: 4px;
  }
  .product-detail, .about-page, .contact, .checkout {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* Modern Hamburger Icon */
.hamburger {
  display: inline-block;
  width: 28px;
  height: 22px;
  position: relative;
  z-index: 1002;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.35s cubic-bezier(.68,-0.55,.27,1.55);
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}
.mobile-menu-btn.open .hamburger span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.mobile-menu-btn.open .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open .hamburger span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    min-height: 48px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .mobile-menu-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 0 0 6px;
    z-index: 1002 !important;
    display: block !important;
    padding: 10px 14px;
  }
  .cart-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 6px 0 0;
    z-index: 1002;
    padding: 0;
  }
  .cart-icon a {
    padding: 10px 14px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .logo {
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
    flex: none;
  }
  nav {
    order: 4;
  }
}

/* Explore Button (Category Card) Styling */
.category-card .btn {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 18px auto 0 auto;
  border-radius: 30px;
  padding: 13px 0;
  background: var(--secondary);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(183,110,121,0.10);
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.category-card .btn:hover, .category-card .btn:focus {
  background: var(--primary);
  color: var(--light);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(128,0,32,0.13);
}
.category-card .btn:active {
  background: var(--secondary);
  color: var(--light);
  transform: scale(0.98);
}
@media (max-width: 768px) {
  .category-card .btn {
    max-width: 100%;
    font-size: 15px;
    padding: 12px 0;
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .category-card .btn {
    font-size: 14px;
    padding: 11px 0;
    margin-top: 10px;
  }
}

/* View All Products Button Styling */
.products .btn {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 28px auto 0 auto;
  border-radius: 30px;
  padding: 15px 0;
  background: var(--primary);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 12px rgba(128,0,32,0.10);
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.products .btn:hover, .products .btn:focus {
  background: var(--secondary);
  color: var(--light);
  transform: scale(1.04);
  box-shadow: 0 4px 18px rgba(183,110,121,0.13);
}
.products .btn:active {
  background: var(--primary);
  color: var(--light);
  transform: scale(0.98);
}
@media (max-width: 768px) {
  .products .btn {
    max-width: 90%;
    width: 100%;
    font-size: 16px;
    padding: 13px 0;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .products .btn {
    max-width: 95%;
    font-size: 15px;
    padding: 12px 0;
    margin-top: 14px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Homepage About Section Modern Layout */
.about {
  background: var(--gray);
  padding: 60px 0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  flex: 1 1 0;
  min-width: 260px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 18px;
  font-size: 30px;
}

.about-content p {
  font-size: 17px;
  color: var(--dark-gray);
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 10px;
}

.about-img {
  flex: 1 1 0;
  max-width: 380px;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(128,0,32,0.10);
  overflow: hidden;
  min-width: 220px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Responsive: Stack on mobile */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 8px;
  }
  .about-content .section-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .about-img {
    max-width: 95vw;
    border-radius: 16px;
  }
  .about-content p {
    font-size: 15px;
  }
}

/* Main container centering and max-width for desktop */
.container,
.about-container,
.products-container,
.categories-container,
.shop-container,
.checkout-container,
.contact-container,
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Prevent double padding on mobile (keep mobile rules last) */
@media (max-width: 768px) {
  .container,
  .about-container,
  .products-container,
  .categories-container,
  .shop-container,
  .checkout-container,
  .contact-container,
  .page-container {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* Modern About Section */
.about {
  background: var(--gray);
  padding: 64px 0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.about-content {
  flex: 1 1 0;
  min-width: 260px;
}

.about-content .section-title {
  text-align: center;
  margin-bottom: 18px;
  font-size: 2rem;
}

.about-content p {
  font-size: 1.08rem;
  color: var(--dark-gray);
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-content .btn {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 18px 0 0 0;
  border-radius: 30px;
  padding: 13px 0;
  background: var(--primary);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(128,0,32,0.10);
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.about-content .btn:hover, .about-content .btn:focus {
  background: var(--secondary);
  color: var(--light);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(183,110,121,0.13);
}
.about-content .btn:active {
  background: var(--primary);
  color: var(--light);
  transform: scale(0.98);
}

.about-img-wrapper {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  max-width: 380px;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(128,0,32,0.10);
  object-fit: cover;
  display: block;
}

/* Responsive: Stack on mobile/tablet */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 8px;
  }
  .about-content .section-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .about-img-wrapper {
    max-width: 95vw;
  }
  .about-img {
    border-radius: 16px;
  }
  .about-content p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 36px 0;
  }
  .about-content .btn {
    max-width: 100%;
    font-size: 15px;
    padding: 12px 0;
    margin-top: 14px;
  }
  .about-img-wrapper {
    max-width: 100vw;
  }
}

/* Modern Cart Layout */
.cart-main-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2.5rem;
}
.cart-products-card {
  flex: 2 1 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(183,110,121,0.07);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 0;
}
.cart-summary-card {
  flex: 1 1 320px;
  background: #fff6fa;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(183,110,121,0.10);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 280px;
  max-width: 380px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  z-index: 2;
}
.cart-summary-card h3 {
  color: #b76e79;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem;
  margin-bottom: 1.1rem;
  color: #444;
}
.summary-row.total {
  font-size: 1.18rem;
  font-weight: 700;
  color: #b76e79;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}
.checkout-btn {
  width: 100%;
  margin-top: 1.2rem;
  font-size: 1.13rem;
  padding: 1rem 0;
  border-radius: 999px;
  background: #b76e79;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(183,110,121,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: center;
  display: block;
  letter-spacing: 0.02em;
}
.checkout-btn:hover, .checkout-btn:focus {
  background: #8d4a5a;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(183,110,121,0.13);
}
.secure-checkout {
  text-align: center;
  color: #b76e79;
  font-size: 1rem;
  margin-top: 1.1rem;
  margin-bottom: 0;
}
.secure-checkout i {
  margin-right: 0.5em;
}
@media (max-width: 900px) {
  .cart-main-layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  .cart-summary-card {
    position: static;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  .cart-products-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

/* Cart Page Styles */
.cart-section {
  max-width: 900px;
  margin: 2.5rem auto 3rem auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.cart-item-card {
  display: flex;
  align-items: center;
  background: #f8f6f7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(183,110,121,0.07);
  padding: 1rem 1.2rem;
  gap: 1.2rem;
  position: relative;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(183,110,121,0.06);
}
.cart-item-info {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cart-item-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
}
.cart-item-price {
  color: #b76e79;
  font-weight: 600;
  font-size: 1.08rem;
}
.cart-item-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.qty-btn {
  background: #f3dbe2;
  color: #b76e79;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.qty-btn:hover, .qty-btn:focus {
  background: #b76e79;
  color: #fff;
}
.cart-item-qty {
  min-width: 28px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}
.remove-cart-item {
  background: none;
  border: none;
  color: #b76e79;
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  transition: color 0.18s;
}
.remove-cart-item:hover, .remove-cart-item:focus {
  color: #8d4a5a;
}
.cart-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3dbe2;
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  margin-top: 1.5rem;
  gap: 1.2rem;
}
.cart-summary-label {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}
.cart-summary-value {
  font-size: 1.3rem;
  color: #b76e79;
  font-weight: 700;
}
.checkout-btn {
  background: #b76e79;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 2.1rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(183,110,121,0.08);
  transition: background 0.18s, transform 0.18s;
  text-decoration: none;
  margin-left: auto;
}
.checkout-btn:hover, .checkout-btn:focus {
  background: #8d4a5a;
  transform: translateY(-2px) scale(1.03);
}
.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-cart i {
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
}

.empty-cart h3 {
  margin-bottom: 10px;
}

.empty-cart p {
  text-align: center;
  width: 100%;
}

.back-to-shop {
  display: inline-block;
  margin: 18px auto 0 auto;
  text-align: center;
  max-width: 220px;
}

.back-to-shop:hover { color: #8d4a5a; }

@media (max-width: 700px) {
  .cart-section {
    padding: 0.7rem;
  }
  .cart-item-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 0.7rem 0.7rem 1.1rem 0.7rem;
  }
  .cart-item-img {
    width: 100%;
    height: 54vw;
    max-height: 180px;
  }
  .cart-summary-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 1rem 0.7rem;
  }
}

/* Checkout Order Summary Styles */
.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.7rem;
}
.order-item-card {
  display: flex;
  align-items: center;
  background: #f8f6f7;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(183,110,121,0.06);
  padding: 0.7rem 1.1rem;
  gap: 1.1rem;
}
.order-item-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(183,110,121,0.06);
}
.order-item-info {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.order-item-name {
  font-size: 1.05rem;
  font-weight: 500;
  color: #222;
}
.order-item-qty {
  font-size: 0.98rem;
  color: #888;
}
.order-item-price {
  color: #b76e79;
  font-weight: 600;
  font-size: 1.05rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 0.5rem;
}
.summary-row.total {
  font-size: 1.18rem;
  color: #b76e79;
  font-weight: 700;
  margin-top: 0.7rem;
}
@media (max-width: 700px) {
  .order-item-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.6rem 0.6rem 1rem 0.6rem;
  }
  .order-item-img {
    width: 100%;
    height: 38vw;
    max-height: 120px;
  }
}

/* Thank You Page Styles */
.thankyou-page {
  max-width: 520px;
  margin: 3.5rem auto 3rem auto;
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-align: center;
}
.thankyou-icon {
  font-size: 3.5rem;
  color: #b76e79;
  margin-bottom: 1.2rem;
}
.thankyou-ref {
  margin: 1.2rem 0 1.7rem 0;
  font-size: 1.08rem;
  color: #444;
}
.order-ref {
  color: #b76e79;
  font-weight: 600;
  font-size: 1.1rem;
}
.thankyou-summary {
  margin: 2.2rem 0 0.5rem 0;
}
@media (max-width: 700px) {
  .thankyou-page {
    padding: 1.1rem 0.5rem 1.5rem 0.5rem;
  }
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100vw;
  min-height: 420px;
  max-height: 540px;
  overflow: hidden;
  margin-top: 80px; /* Adjust if header height changes (header padding is 20px 0) */
  z-index: 2; /* Lower than header's z-index: 1000 */
  background: #f8f6f7;
}
.hero-slides {
  display: flex;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  height: 100%;
}
.hero-slide {
  min-width: 100vw;
  height: 420px;
  max-height: 540px;
  background-size: cover;
  background-position: center;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(.77,0,.18,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide-content {
  background: rgba(255,255,255,0.82);
  border-radius: 18px;
  padding: 2.2rem 2.8rem;
  box-shadow: 0 4px 32px rgba(183,110,121,0.10);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.hero-slide-content h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: #b76e79;
  margin-bottom: 0.5rem;
}
.hero-slide-content p {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 1.2rem;
}
.hero-slide-content .btn {
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: 1.5px solid #b76e79;
  color: #b76e79;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(183,110,121,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow.left { left: 2vw; }
.hero-arrow.right { right: 2vw; }
.hero-arrow:hover, .hero-arrow:focus {
  background: #b76e79;
  color: #fff;
  outline: none;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 12;
}
.hero-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #b76e79;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.hero-dot.active, .hero-dot:focus {
  background: #b76e79;
  border-color: #b76e79;
  transform: scale(1.18);
}
@media (max-width: 900px) {
  .hero-slider, .hero-slide {
    min-height: 320px;
    height: 320px;
    max-height: 400px;
  }
  .hero-slide-content {
    padding: 1.2rem 1.1rem;
    max-width: 98vw;
  }
  .hero-slide-content h1 {
    font-size: 1.5rem;
  }
  .hero-slide-content p {
    font-size: 1rem;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .hero-slider, .hero-slide {
    min-height: 180px;
    height: 180px;
    max-height: 220px;
  }
  .hero-slide-content {
    padding: 0.7rem 0.3rem;
    max-width: 99vw;
  }
  .hero-arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .hero-dots {
    bottom: 10px;
  }
}

/* Accent font for hero headlines */
.accent-script {
  font-family: 'Dancing Script', cursive;
  color: #e09ca6;
  font-size: 1.1em;
  letter-spacing: 0.02em;
}

/* Modern Hero Section */
.hero-modern {
  width: 100%;
  background: #f8f6f7;
  margin-top: 80px; /* match header height */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  overflow: hidden;
}
.hero-modern-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  min-height: 320px;
  padding: 0 1.5rem;
  gap: 0;
}
.hero-modern-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-height: 420px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  animation: fadeIn 1.2s cubic-bezier(.77,0,.18,1);
}
.hero-modern-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 4px 32px rgba(183,110,121,0.10);
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
}
.hero-modern-image img:hover {
  transform: scale(1.03);
}
.hero-modern-content {
  flex: 1 1 50%;
  background: rgba(255,255,255,0.92);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 4px 32px rgba(183,110,121,0.10);
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1);
}
.hero-modern-content h1 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: #b76e79;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.hero-modern-content p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.hero-modern-cta {
  font-size: 1.15rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: #b76e79;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(183,110,121,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 0.5rem;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.02em;
}
.hero-modern-cta:hover, .hero-modern-cta:focus {
  background: #8d4a5a;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(183,110,121,0.13);
}
@media (min-width: 900px) {
  .hero-modern-inner {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    min-height: 420px;
    padding: 0 2.5rem;
  }
  .hero-modern-image {
    border-radius: 18px 0 0 18px;
    max-height: 540px;
  }
  .hero-modern-image img {
    border-radius: 18px 0 0 18px;
    min-height: 420px;
    max-height: 540px;
  }
  .hero-modern-content {
    border-radius: 0 18px 18px 0;
    padding: 3.2rem 2.5rem 3.2rem 2.5rem;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
  }
  .hero-modern-content h1 {
    font-size: 2.8rem;
  }
  .hero-modern-content p {
    font-size: 1.25rem;
  }
}
@media (max-width: 600px) {
  .hero-modern {
    margin-top: 60px;
  }
  .hero-modern-content {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .hero-modern-content h1 {
    font-size: 1.3rem;
  }
  .hero-modern-content p {
    font-size: 1rem;
  }
  .hero-modern-cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  .hero-modern-image {
    min-height: 140px;
    max-height: 220px;
    border-radius: 12px 12px 0 0;
  }
  .hero-modern-image img {
    border-radius: 12px 12px 0 0;
  }
  .hero-modern-content {
    border-radius: 0 0 12px 12px;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Modern Hero Carousel */
.hero-modern-carousel {
  width: 100%;
  background: #f8f6f7;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  overflow: hidden;
}
.hero-modern-carousel-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  min-height: 320px;
  padding: 0 1.5rem;
  position: relative;
}
.hero-modern-slide {
  display: none;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  animation: fadeIn 1.2s cubic-bezier(.77,0,.18,1);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.hero-modern-slide.active {
  display: flex;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1);
}
.hero-modern-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-height: 420px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}
.hero-modern-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 4px 32px rgba(183,110,121,0.10);
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
}
.hero-modern-image img:hover {
  transform: scale(1.03);
}
.hero-modern-content {
  flex: 1 1 50%;
  background: rgba(255,255,255,0.92);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 4px 32px rgba(183,110,121,0.10);
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}
.hero-modern-content h1 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: #b76e79;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.hero-modern-content p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.hero-modern-cta {
  font-size: 1.15rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: #b76e79;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(183,110,121,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 0.5rem;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.02em;
}
.hero-modern-cta:hover, .hero-modern-cta:focus {
  background: #8d4a5a;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(183,110,121,0.13);
}
.hero-modern-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
  z-index: 10;
  position: relative;
}
.hero-modern-carousel-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #b76e79;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
  outline: none;
}
.hero-modern-carousel-dot.active, .hero-modern-carousel-dot:focus {
  background: #b76e79;
  border-color: #b76e79;
  transform: scale(1.18);
}
@media (min-width: 900px) {
  .hero-modern-carousel-inner {
    min-height: 420px;
    padding: 0 2.5rem;
  }
  .hero-modern-slide {
    flex-direction: row;
    align-items: stretch;
    min-height: 420px;
  }
  .hero-modern-image {
    border-radius: 18px 0 0 18px;
    max-height: 540px;
  }
  .hero-modern-image img {
    border-radius: 18px 0 0 18px;
    min-height: 420px;
    max-height: 540px;
  }
  .hero-modern-content {
    border-radius: 0 18px 18px 0;
    padding: 3.2rem 2.5rem 3.2rem 2.5rem;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
  }
  .hero-modern-content h1 {
    font-size: 2.8rem;
  }
  .hero-modern-content p {
    font-size: 1.25rem;
  }
}
@media (max-width: 600px) {
  .hero-modern-carousel {
    margin-top: 60px;
  }
  .hero-modern-content {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .hero-modern-content h1 {
    font-size: 1.3rem;
  }
  .hero-modern-content p {
    font-size: 1rem;
  }
  .hero-modern-cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  .hero-modern-image {
    min-height: 140px;
    max-height: 220px;
    border-radius: 12px 12px 0 0;
  }
  .hero-modern-image img {
    border-radius: 12px 12px 0 0;
  }
  .hero-modern-content {
    border-radius: 0 0 12px 12px;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Testimonials Section */
.testimonials {
  background: #fff6fa;
  padding: 64px 0 56px 0;
  margin: 0;
}
.testimonials .section-title {
  color: #b76e79;
  margin-bottom: 2.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(183,110,121,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(183,110,121,0.13);
  transform: translateY(-4px) scale(1.02);
}
.testimonial-stars {
  color: #f7b731;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-text {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 1.2rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-author {
  font-size: 1rem;
  color: #b76e79;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
@media (min-width: 700px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .testimonials {
    padding: 36px 0 24px 0;
  }
  .testimonial-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .testimonials .section-title {
    font-size: 1.3rem;
  }
}

/* Shop Filter Enhancements */
.color-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.color-filter li {
  margin: 0;
}
.color-swatch {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #eee;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(183,110,121,0.07);
  vertical-align: middle;
  outline: none;
}
.color-swatch.selected,
.color-swatch:focus {
  border: 2.5px solid #b76e79;
  box-shadow: 0 2px 8px rgba(183,110,121,0.13);
}
.size-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.size-pill {
  display: inline-block;
  padding: 0.4em 1.1em;
  border-radius: 999px;
  background: #f8f6f7;
  color: #b76e79;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #eee;
  cursor: pointer;
  transition: border 0.2s, background 0.2s, color 0.2s;
  outline: none;
}
.size-pill.selected,
.size-pill:focus {
  border: 2.5px solid #b76e79;
  background: #fff6fa;
  color: #8d4a5a;
}
.filter-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
  justify-content: flex-end;
}
.clear-filters {
  background: none;
  border: 1.5px solid #b76e79;
  color: #b76e79;
  border-radius: 999px;
  padding: 0.5em 1.3em;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.clear-filters:hover, .clear-filters:focus {
  background: #fff6fa;
  color: #8d4a5a;
  border-color: #8d4a5a;
}
@media (max-width: 600px) {
  .color-swatch, .size-pill {
    width: 22px;
    height: 22px;
    font-size: 0.95rem;
    padding: 0.3em 0.7em;
  }
  .filter-actions {
    flex-direction: column;
    gap: 0.4rem;
    align-items: stretch;
  }
}

/* --- Modern Product Detail Page --- */
.product-detail-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(128,0,32,0.08), 0 1.5px 6px rgba(0,0,0,0.03);
  padding: 32px 28px;
  margin: 40px 0 60px 0;
  max-width: 950px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.product-detail-main {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.product-detail-gallery-col {
  flex: 0 0 380px;
  min-width: 0;
}
.product-detail-info-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
}
.product-detail-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.product-detail-title {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.1;
}
.product-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.product-detail-category {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 8px;
}
.product-detail-desc {
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 18px;
}
.add-to-cart-btn {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 18px 0;
  border-radius: 30px;
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 2px 12px rgba(128,0,32,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 320px;
  margin-top: 10px;
  margin-bottom: 6px;
}
.add-to-cart-btn:hover, .add-to-cart-btn:focus {
  background: var(--secondary);
  color: var(--light);
  box-shadow: 0 4px 18px rgba(183,110,121,0.13);
}
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-main-image-wrap {
  background: var(--gray);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(128,0,32,0.06);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-main-image {
  width: 100%;
  max-width: 340px;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--light);
  box-shadow: 0 1.5px 6px rgba(0,0,0,0.03);
}
.product-thumbnails {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product-thumbnail {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 7px;
  border: 2px solid transparent;
  background: var(--light);
  box-shadow: 0 1px 4px rgba(128,0,32,0.04);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-thumbnail.active, .product-thumbnail:focus {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(128,0,32,0.10);
  outline: none;
}
@media (max-width: 900px) {
  .product-detail-main {
    flex-direction: column;
    gap: 32px;
  }
  .product-detail-gallery-col, .product-detail-info-col {
    width: 100%;
    min-width: 0;
    flex: unset;
  }
  .product-main-image {
    max-width: 100%;
    height: 320px;
  }
  .product-detail-card {
    padding: 18px 6px;
  }
}
@media (max-width: 600px) {
  .product-detail-title {
    font-size: 1.5rem;
  }
  .product-detail-price {
    font-size: 1.2rem;
  }
  .product-detail-desc {
    font-size: 1rem;
  }
  .product-main-image {
    height: 200px;
  }
  .product-detail-card {
    margin: 18px 0 32px 0;
    padding: 8px 2px;
  }
  .add-to-cart-btn {
    font-size: 1rem;
    padding: 14px 0;
  }
  .product-thumbnails {
    gap: 7px;
  }
  .product-thumbnail {
    width: 44px;
    height: 44px;
  }
}

/* --- Related Products (You May Also Like) --- */
.related-products-section {
  margin: 56px auto 0 auto;
  max-width: 950px;
  width: 100%;
  background: var(--light);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(128,0,32,0.06);
  padding: 36px 24px 32px 24px;
}
.related-title {
  font-size: 1.7rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 32px;
  text-align: left;
  letter-spacing: 0.2px;
}
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}
.related-product-card {
  background: var(--gray);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(128,0,32,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.related-product-card:hover, .related-product-card:focus-within {
  box-shadow: 0 6px 24px rgba(128,0,32,0.13);
  transform: translateY(-3px) scale(1.03);
}
.related-product-card a {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.related-product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  background: var(--light);
  transition: filter 0.2s;
}
.related-product-card:hover .related-product-img, .related-product-card:focus-within .related-product-img {
  filter: brightness(0.96) saturate(1.1);
}
.related-product-info {
  padding: 16px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}
.related-product-name {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
  font-family: 'Montserrat', sans-serif;
}
.related-product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 700px) {
  .related-products-section {
    padding: 18px 4px 18px 4px;
    margin-top: 32px;
  }
  .related-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .related-products-grid {
    gap: 14px;
  }
  .related-product-img {
    height: 120px;
  }
  .related-product-info {
    padding: 10px 7px 12px 7px;
  }
  .related-product-name {
    font-size: 0.98rem;
  }
  .related-product-price {
    font-size: 1rem;
  }
}

/* --- Wishlist Button (Product Page) --- */
.wishlist-btn {
  background: none;
  border: none;
  outline: none;
  margin-left: 14px;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--secondary);
  vertical-align: middle;
  transition: color 0.2s, transform 0.2s;
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
}
.wishlist-btn .fa-heart {
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 1px 4px rgba(128,0,32,0.07);
}
.wishlist-btn .fas.fa-heart {
  color: var(--primary);
}
.wishlist-btn:hover .fa-heart, .wishlist-btn:focus .fa-heart {
  color: #e63946;
  transform: scale(1.13);
}
@media (max-width: 600px) {
  .wishlist-btn {
    font-size: 1.1rem;
    margin-left: 7px;
  }
}

/* --- Product Star Ratings & Reviews --- */
.product-detail-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  margin-top: 2px;
}
.product-detail-stars {
  font-size: 1.18rem;
  color: #ffc107;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.product-detail-stars .fa-star,
.product-detail-stars .fa-star-half-alt {
  color: #ffc107;
  margin-right: 1.5px;
}
.product-detail-stars .fa-star:last-child,
.product-detail-stars .fa-star-half-alt:last-child {
  margin-right: 0;
}
.product-detail-stars .fa-star,
.product-detail-stars .fa-star-half-alt,
.product-detail-stars .fa-star-half {
  filter: drop-shadow(0 1px 2px rgba(128,0,32,0.07));
}
.product-detail-stars .fa-star-half-alt {
  color: #ffc107;
}
.product-detail-stars .fa-star-half {
  color: #ffc107;
}
.product-detail-stars .fa-star,
.product-detail-stars .fa-star-half-alt,
.product-detail-stars .fa-star-half,
.product-detail-stars .far.fa-star {
  font-size: 1.18rem;
}
.product-detail-review-count {
  font-size: 1.01rem;
  color: var(--dark-gray);
  font-family: 'Montserrat', sans-serif;
  margin-left: 2px;
  letter-spacing: 0.1px;
}
@media (max-width: 600px) {
  .product-detail-rating-row {
    gap: 5px;
    margin-bottom: 4px;
  }
  .product-detail-stars {
    font-size: 1rem;
  }
  .product-detail-review-count {
    font-size: 0.93rem;
  }
}

/* --- Product Gallery Arrows & Animation --- */
.product-main-image-wrap {
  position: relative;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(128,0,32,0.08);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  opacity: 0.92;
}
.gallery-arrow:hover, .gallery-arrow:focus {
  background: var(--secondary);
  color: var(--light);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}
.gallery-arrow-left {
  left: 10px;
}
.gallery-arrow-right {
  right: 10px;
}
.fade-in {
  animation: fadeInImg 0.33s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInImg {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 600px) {
  .gallery-arrow {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    left: 4px;
    right: 4px;
  }
  .gallery-arrow-left {
    left: 4px;
  }
  .gallery-arrow-right {
    right: 4px;
  }
}

/* --- About Page Modern Hero & Story (Redesigned) --- */
.about-hero {
  position: relative;
  width: 100vw;
  min-height: 340px;
  background: linear-gradient(120deg, #f3d9dc 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  padding-top: 100px; /* Space for header */
  padding-bottom: 3rem;
  z-index: 1;
}
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.about-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 2;
  pointer-events: none;
}
.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--light);
  padding: 3rem 0 3rem 0;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1);
  background: rgba(0,0,0,0.10);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(128,0,32,0.07);
}
.about-hero-title {
  font-size: 3.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  color: var(--light);
  text-shadow: 0 2px 16px rgba(0,0,0,0.13);
}
.about-hero-subtitle {
  font-size: 1.35rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 32px;
  color: #f3d9dc;
  text-shadow: 0 1px 8px rgba(0,0,0,0.10);
}
.about-hero-cta {
  font-size: 1.18rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 30px;
  background: var(--secondary);
  color: var(--light);
  box-shadow: 0 2px 12px rgba(128,0,32,0.10);
  transition: background 0.3s, color 0.3s, box-shadow 0.2s;
  text-shadow: none;
  border: none;
}
.about-hero-cta:hover, .about-hero-cta:focus {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 4px 18px rgba(183,110,121,0.13);
  transition: background 0.3s, color 0.3s, box-shadow 0.2s;
}
@media (max-width: 700px) {
  .about-hero {
    padding-top: 70px;
    padding-bottom: 1.5rem;
  }
  .about-hero-content {
    padding: 1.5rem 0 1.5rem 0;
    max-width: 98vw;
  }
  .about-hero-title {
    font-size: 2.1rem;
  }
  .about-hero-subtitle {
    font-size: 1.1rem;
  }
  .about-hero-cta {
    font-size: 1rem;
    padding: 12px 22px;
  }
}

.about-story-modern {
  background: var(--light);
  padding: 0 0 40px 0;
}
.about-story-modern-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0 0 0;
  animation: fadeIn 1s cubic-bezier(.4,0,.2,1);
}
.about-story-modern-img {
  flex: 0 0 380px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-story-modern-img img {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(128,0,32,0.08), 0 1.5px 6px rgba(0,0,0,0.03);
  object-fit: cover;
}
.about-story-modern-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--dark);
}
.about-story-modern-content h2 {
  font-size: 2.1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.about-story-modern-content p {
  font-size: 1.13rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .about-story-modern-inner {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0 0 0;
  }
  .about-story-modern-img, .about-story-modern-content {
    width: 100%;
    min-width: 0;
    flex: unset;
  }
  .about-story-modern-img img {
    max-width: 100%;
  }
  .about-story-modern-content h2 {
    font-size: 1.3rem;
  }
  .about-story-modern-content p {
    font-size: 1rem;
  }
}

/* --- About Page Modern Values Section --- */
.about-values-modern {
  background: linear-gradient(120deg, #f3d9dc 0%, #f5f5f5 100%);
  padding: 60px 0 60px 0;
  margin: 0;
}
.about-values-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.about-values-title {
  font-size: 2.1rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 38px;
  letter-spacing: 0.2px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  justify-items: center;
}
.about-value-card {
  background: var(--light);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(128,0,32,0.06);
  padding: 38px 22px 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1);
}
.about-value-card:hover, .about-value-card:focus-within {
  box-shadow: 0 6px 24px rgba(128,0,32,0.13);
  transform: translateY(-4px) scale(1.03);
}
.about-value-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(128,0,32,0.07);
}
.about-value-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}
.about-value-desc {
  font-size: 1.05rem;
  color: var(--dark-gray);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .about-values-modern {
    padding: 32px 0 32px 0;
  }
  .about-values-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .about-values-grid {
    gap: 16px;
  }
  .about-value-card {
    padding: 22px 8px 18px 8px;
  }
  .about-value-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .about-value-title {
    font-size: 1rem;
  }
  .about-value-desc {
    font-size: 0.97rem;
  }
}

/* --- About Page Modern Team Section --- */
.about-team-modern {
  background: var(--light);
  padding: 60px 0 60px 0;
}
.about-team-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.about-team-title {
  font-size: 2.1rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 38px;
  letter-spacing: 0.2px;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  justify-items: center;
}
.about-team-card {
  background: var(--gray);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(128,0,32,0.06);
  padding: 38px 22px 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1);
}
.about-team-card:hover, .about-team-card:focus-within {
  box-shadow: 0 6px 24px rgba(128,0,32,0.13);
  transform: translateY(-4px) scale(1.03);
}
.about-team-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(128,0,32,0.07);
  border: 3px solid var(--light);
}
.about-team-name {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}
.about-team-role {
  font-size: 1.01rem;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}
.about-team-bio {
  font-size: 1.01rem;
  color: var(--dark-gray);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .about-team-modern {
    padding: 32px 0 32px 0;
  }
  .about-team-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .about-team-grid {
    gap: 16px;
  }
  .about-team-card {
    padding: 22px 8px 18px 8px;
  }
  .about-team-img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  .about-team-name {
    font-size: 1rem;
  }
  .about-team-role {
    font-size: 0.93rem;
  }
  .about-team-bio {
    font-size: 0.97rem;
  }
}

/* --- About Page Trust Badges/Stats Row --- */
.about-trust-row {
  background: linear-gradient(90deg, #f3d9dc 0%, #f5f5f5 100%);
  padding: 32px 0 32px 0;
  margin: 0;
}
.about-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 38px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.about-trust-badge {
  background: var(--light);
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(128,0,32,0.06);
  padding: 14px 28px;
  font-size: 1.08rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1);
}
.about-trust-badge i {
  font-size: 1.3em;
  color: var(--secondary);
  margin-right: 7px;
}
.about-trust-badge:hover, .about-trust-badge:focus {
  box-shadow: 0 6px 24px rgba(128,0,32,0.13);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
  .about-trust-inner {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .about-trust-badge {
    font-size: 0.98rem;
    padding: 10px 12px;
    justify-content: center;
  }
}

/* --- About Page Modern Newsletter Section --- */
.about-newsletter-modern {
  background: linear-gradient(120deg, #f3d9dc 0%, #f5f5f5 100%);
  padding: 60px 0 60px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-newsletter-inner {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(128,0,32,0.07);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 44px 32px 38px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1);
}
.about-newsletter-title {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.about-newsletter-desc {
  font-size: 1.13rem;
  color: var(--dark-gray);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 28px;
}
.about-newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  background: var(--gray);
  border-radius: 30px;
  box-shadow: 0 1px 4px rgba(128,0,32,0.04);
  overflow: hidden;
}
.about-newsletter-form input[type="email"] {
  flex: 1 1 0;
  border: none;
  padding: 16px 18px;
  font-size: 1.08rem;
  border-radius: 30px 0 0 30px;
  outline: none;
  background: transparent;
  color: var(--dark);
}
.about-newsletter-form button {
  background: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 0 30px 30px 0;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 0 28px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(128,0,32,0.07);
}
.about-newsletter-form button:hover, .about-newsletter-form button:focus {
  background: var(--secondary);
  color: var(--light);
}
@media (max-width: 700px) {
  .about-newsletter-modern {
    padding: 32px 0 32px 0;
  }
  .about-newsletter-inner {
    padding: 22px 6px 18px 6px;
    max-width: 98vw;
  }
  .about-newsletter-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .about-newsletter-desc {
    font-size: 0.97rem;
    margin-bottom: 14px;
  }
  .about-newsletter-form input[type="email"] {
    padding: 12px 10px;
    font-size: 0.97rem;
  }
  .about-newsletter-form button {
    font-size: 0.97rem;
    padding: 0 14px;
  }
}

@media (max-width: 700px) {
  .about-story-modern-inner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 0 0 0;
    align-items: center;
    justify-content: center;
  }
  .about-story-modern-img, .about-story-modern-content {
    width: 100%;
    min-width: 0;
    flex: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .about-story-modern-img img {
    max-width: 90vw;
    margin-bottom: 12px;
  }
  .about-story-modern-content h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  .about-story-modern-content p {
    font-size: 1rem;
    margin-bottom: 0;
    padding: 0 8px;
  }
}

/* --- Homepage Modern Newsletter Section --- */
.home-newsletter-modern {
  background: linear-gradient(120deg, #f3d9dc 0%, #f5f5f5 100%);
  padding: 60px 0 60px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-newsletter-inner {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(128,0,32,0.07);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 44px 32px 38px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1);
}
.home-newsletter-title {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.home-newsletter-desc {
  font-size: 1.13rem;
  color: var(--dark-gray);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 28px;
}
.home-newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  background: var(--gray);
  border-radius: 30px;
  box-shadow: 0 1px 4px rgba(128,0,32,0.04);
  overflow: hidden;
}
.home-newsletter-form input[type="email"] {
  flex: 1 1 0;
  border: none;
  padding: 16px 18px;
  font-size: 1.08rem;
  border-radius: 30px 0 0 30px;
  outline: none;
  background: transparent;
  color: var(--dark);
}
.home-newsletter-form button {
  background: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 0 30px 30px 0;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 0 28px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(128,0,32,0.07);
}
.home-newsletter-form button:hover, .home-newsletter-form button:focus {
  background: var(--secondary);
  color: var(--light);
}
@media (max-width: 700px) {
  .home-newsletter-modern {
    padding: 32px 0 32px 0;
  }
  .home-newsletter-inner {
    padding: 22px 6px 18px 6px;
    max-width: 98vw;
  }
  .home-newsletter-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .home-newsletter-desc {
    font-size: 0.97rem;
    margin-bottom: 14px;
  }
  .home-newsletter-form input[type="email"] {
    padding: 12px 10px;
    font-size: 0.97rem;
  }
  .home-newsletter-form button {
    font-size: 0.97rem;
    padding: 0 14px;
  }
}

@media (max-width: 700px) {
  .about {
    padding: 38px 0 38px 0;
  }
  .about-container {
    gap: 22px;
    padding: 0 6px;
  }
  .about-content {
    text-align: center;
    padding-bottom: 10px;
  }
  .about-img-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
  }
}

@media (max-width: 700px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }
  .footer-about, .footer-links, .footer-contact {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    padding-top: 18px;
    word-break: break-word;
  }
  .footer-bottom a {
    display: inline-block;
    margin-top: 4px;
    color: #fff;
    text-decoration: underline;
    word-break: break-all;
  }
}

.contact-form button {
  display: block;
  margin: 24px auto 0 auto;
  min-width: 180px;
}

/* Responsive: Only hero headline and subhead padding on mobile */
@media (max-width: 600px) {
  .hero-content h1,
  .hero-content .subhead {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Product Detail Close Button Styling */
.product-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 20;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(128,0,32,0.10);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  outline: none;
}
.product-detail-close:hover, .product-detail-close:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(128,0,32,0.18);
}
@media (max-width: 600px) {
  .product-detail-close {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 1.5rem;
  }
}

/* Cart Notification Popup (Gold/Black Theme) */
.cart-notification {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 9999;
  min-width: 320px;
  max-width: 90vw;
  background: #fff;
  color: var(--primary);
  border-left: 4px solid #C19A6B;
  box-shadow: 0 6px 32px rgba(0,0,0,0.13);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px 18px 18px;
  border-radius: 12px;
  font-size: 1.13rem;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-40px) scale(0.98);
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
}
.cart-notification.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.cart-notification .cart-notif-icon {
  background: #C19A6B22;
  color: var(--primary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cart-notification .cart-notif-message {
  flex: 1 1 0;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cart-notification .cart-notif-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  margin-left: 12px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.cart-notification .cart-notif-close:hover {
  opacity: 1;
}
@media (max-width: 600px) {
  .cart-notification {
    top: 12px;
    right: 4px;
    min-width: 0;
    width: 98vw;
    padding: 14px 10px 14px 10px;
    font-size: 1rem;
  }
  .cart-notification .cart-notif-icon {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}

/* Newsletter Modern Section (screenshot match) */
.newsletter-modern-bg {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #97163A;
  overflow: hidden;
  padding: 80px 0 70px 0;
  z-index: 1;
}
.newsletter-modern-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-modern-icon {
  background: #fff;
  color: #97163A;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  margin: 0 auto 28px auto;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.newsletter-modern-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.newsletter-modern-subhead {
  font-size: 1.5rem;
  color: #f8d7b6;
  margin-bottom: 18px;
  font-weight: 500;
}
.newsletter-modern-desc {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif;
}
.newsletter-modern-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.newsletter-modern-input-group {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 0 18px;
  height: 56px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-right: 12px;
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 400px;
}
.newsletter-modern-input-icon {
  color: #97163A;
  font-size: 1.2rem;
  margin-right: 8px;
}
.newsletter-modern-input-group input[type="email"] {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  color: #97163A;
  padding: 0 0 0 0;
  width: 100%;
  height: 44px;
}
.newsletter-modern-btn {
  background: #fff;
  color: #97163A;
  font-weight: 700;
  font-size: 1.18rem;
  border: none;
  border-radius: 999px;
  padding: 0 36px;
  height: 56px;
  margin-left: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: inline-block;
}
.newsletter-modern-btn:hover,
.newsletter-modern-btn:focus {
  background: #f8d7b6;
  color: #97163A;
}
.newsletter-modern-privacy {
  color: #fff;
  font-size: 1rem;
  margin-top: 18px;
  opacity: 0.85;
}
/* Decorative Circles */
.newsletter-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.newsletter-bg-circle-1 {
  width: 170px;
  height: 170px;
  top: 40px;
  left: 40px;
}
.newsletter-bg-circle-2 {
  width: 80px;
  height: 80px;
  top: 320px;
  left: 500px;
}
.newsletter-bg-circle-3 {
  width: 120px;
  height: 120px;
  bottom: 40px;
  right: 80px;
}
/* Responsive */
@media (max-width: 900px) {
  .newsletter-modern-title {
    font-size: 2.2rem;
  }
  .newsletter-modern-inner {
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .newsletter-modern-bg {
    padding: 48px 0 38px 0;
  }
  .newsletter-modern-title {
    font-size: 1.4rem;
  }
  .newsletter-modern-subhead {
    font-size: 1.08rem;
  }
  .newsletter-modern-desc {
    font-size: 1rem;
  }
  .newsletter-modern-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .newsletter-modern-input-group {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
  }
  .newsletter-modern-btn {
    width: 100%;
    padding: 0;
    height: 48px;
    font-size: 1rem;
  }
  .newsletter-bg-circle-1 {
    width: 90px; height: 90px; top: 10px; left: 10px;
  }
  .newsletter-bg-circle-2 {
    width: 40px; height: 40px; top: 180px; left: 60vw;
  }
  .newsletter-bg-circle-3 {
    width: 60px; height: 60px; bottom: 10px; right: 10px;
  }
}

@media (max-width: 600px) {
  .newsletter-modern-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .newsletter-modern-input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 999px;
    box-shadow: none;
    border: none;
    padding: 0 16px;
    margin-bottom: 0;
    box-sizing: border-box;
    min-height: 44px;
    max-height: 44px;
  }
  .newsletter-modern-input-icon {
    color: #97163A;
    font-size: 1.2rem;
    margin-right: 8px;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .newsletter-modern-input-group input[type="email"] {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    border: none;
    outline: none;
    background: transparent;
    color: #97163A;
    padding: 0;
    box-sizing: border-box;
    border-radius: 999px;
    display: block;
    text-align: center;
    min-height: 44px;
    max-height: 44px;
    line-height: 44px;
  }
  .newsletter-modern-btn {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    margin-left: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-top: 0;
    box-shadow: none;
    border: none;
    min-height: 44px;
    max-height: 44px;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .newsletter-modern-inner {
    padding: 0 6px;
  }
  .newsletter-modern-icon {
    margin: 0 auto 16px auto;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
  }
  .newsletter-modern-title {
    font-size: 1.25rem;
    margin-bottom: 6px;
    text-align: center;
  }
  .newsletter-modern-subhead {
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
  }
  .newsletter-modern-desc {
    font-size: 1rem;
    margin-bottom: 14px;
    text-align: center;
  }
  .newsletter-modern-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .newsletter-modern-input-group {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    margin-bottom: 0;
    box-sizing: border-box;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    box-shadow: none;
    border: none;
  }
  .newsletter-modern-input-group input[type="email"] {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    border: none;
    outline: none;
    background: transparent;
    color: #97163A;
    padding: 8px 6px;
    box-sizing: border-box;
    border-radius: 18px;
    display: block;
  }
  .newsletter-modern-btn {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    margin-left: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-top: 0;
    box-shadow: none;
    border: none;
    padding: 8px 0;
  }
  .newsletter-modern-input-icon {
    margin-right: 8px;
    color: #97163A;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
  }
  .newsletter-modern-privacy {
    font-size: 0.97rem;
    margin-top: 10px;
    text-align: center;
  }
}

/* --- Luxury Filter Sidebar/Modal --- */
.filter-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(128,0,32,0.18);
  z-index: 2002;
  transition: opacity 0.3s;
  opacity: 0;
}
.filter-overlay.active {
  display: block;
  opacity: 1;
}
.filter-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  max-width: 96vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 32px rgba(128,0,32,0.13);
  z-index: 2003;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.filter-sidebar.active {
  transform: translateX(0);
}
.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 12px 24px;
  border-bottom: 1px solid #eee;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
}
.filter-sidebar-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
  transition: color 0.18s;
}
.filter-sidebar-close:hover, .filter-sidebar-close:focus {
  color: var(--primary);
}
.filter-sidebar-content {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 18px 24px 0 24px;
}
.filter-sidebar-actions {
  padding: 18px 24px 24px 24px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
  background: #fff;
}
@media (max-width: 700px) {
  .filter-sidebar {
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 90vh;
    min-height: 40vh;
    bottom: 0;
    top: auto;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%) !important;
    transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
    box-shadow: 0 -8px 32px rgba(128,0,32,0.13);
    display: flex;
    flex-direction: column;
    z-index: 2003;
    overflow: hidden;
  }
  .filter-sidebar.active {
    transform: translateY(0) !important;
  }
  .filter-sidebar-header, .filter-sidebar-content, .filter-sidebar-actions {
    padding-left: 12px;
    padding-right: 12px;
  }
  .filter-sidebar-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 18px 12px 0 12px;
    max-height: 60vh;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
  }
  .filter-sidebar-actions {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 12px 18px 12px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 0.7rem;
    justify-content: flex-end;
    z-index: 10;
  }
  .apply-filters, .clear-filters {
    font-size: 1.08rem;
    min-height: 44px;
    border-radius: 999px;
    padding: 0 18px;
    flex: 1 1 0;
    margin-bottom: 0;
    margin-top: 0;
    box-shadow: 0 2px 8px rgba(128,0,32,0.06);
  }
  .apply-filters {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    margin-right: 8px;
  }
  .clear-filters {
    background: #fff;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    font-weight: 600;
  }
  .apply-filters:active, .apply-filters:focus {
    background: var(--secondary);
    color: #fff;
  }
  .clear-filters:active, .clear-filters:focus {
    background: #fff6fa;
    color: #8d4a5a;
    border-color: #8d4a5a;
  }
  .color-swatch, .size-pill {
    min-width: 32px;
    min-height: 32px;
    font-size: 1rem;
    margin-right: 6px;
    margin-bottom: 6px;
  }
  .color-filter, .size-filter {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .price-range input[type="range"] {
    height: 8px;
  }
}

.filter-overlay.active {
  display: block !important;
  opacity: 1;
}
.filter-sidebar.active {
  display: flex !important;
  transform: translateX(0) !important;
}
@media (max-width: 700px) {
  .filter-sidebar.active {
    display: flex !important;
    transform: translateY(0) !important;
  }
}

.shop-sort.sort-active select {
  box-shadow: 0 8px 32px rgba(183,110,121,0.18), 0 0 0 2px #b76e79;
  border-color: #b76e79;
  background: #fffbe9;
  color: #b76e79;
  transform: translateY(-2px) scale(1.03);
  z-index: 3;
}
.shop-sort.sort-active::after {
  filter: drop-shadow(0 2px 6px rgba(183,110,121,0.18));
}
.shop-sort select, .shop-sort.sort-active select {
  transition: box-shadow 0.25s cubic-bezier(.4,1.3,.6,1), border-color 0.18s, background 0.18s, color 0.18s, transform 0.18s;
}

@media (max-width: 600px) {
  .shop-top {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .shop-filter {
    margin-bottom: 0;
  }
  .shop-sort {
    margin-left: 0;
    margin-bottom: 0;
    padding-left: 2px;
    padding-right: 2px;
  }
  .shop-sort select {
    min-width: 90px;
    max-width: 120px;
    font-size: 1rem;
    padding: 10px 28px 10px 10px;
  }
  .shop-sort::after {
    right: 10px;
    width: 14px;
    height: 14px;
  }
}

#viewAllBtn {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 13px 36px;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 12px rgba(183,110,121,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
#viewAllBtn:hover, #viewAllBtn:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px rgba(183,110,121,0.13);
  outline: none;
}

.announcement-bar {
  width: 100%;
  background: #8d2340;
  color: #fff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 8px 0 7px 0;
  letter-spacing: 0.01em;
  z-index: 2001;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.announcement-bar span.marquee {
  display: inline-block;
  animation: flash-text 2s ease-in-out infinite;
}
@keyframes flash-text {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@media (max-width: 600px) {
  .announcement-bar {
    position: static !important;
    font-size: 0.95rem;
    padding: 5px 2px 5px 2px;
    z-index: 1;
    box-shadow: none;
  }
  header {
    top: 0 !important;
    position: relative !important;
  }
  body {
    padding-top: 0 !important;
  }
}

.announcement-bar {
  width: 100%;
  background: #8d2340;
  color: #fff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 8px 0 7px 0;
  letter-spacing: 0.01em;
  z-index: 2001;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.announcement-bar span.marquee {
  display: inline-block;
  animation: flash-text 2s ease-in-out infinite;
}
@keyframes flash-text {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.announcement-bar span.marquee {
  display: inline-block;
  animation: flash-text 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.announcement-bar span.marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shimmer 2.8s linear infinite;
  pointer-events: none;
}
@keyframes flash-text {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Floating Cart Styles */
.floating-cart {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}

.cart-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-btn:hover {
  background-color: var(--secondary);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-panel.open {
  right: 0;
}

/* Mobile: hide header cart and surface the floating cart */
@media (max-width: 720px) {
  .site-header .header-right .cart-icon,
  .site-header .header-right .cart-link,
  .site-header .header-right a[href*="cart.html"] {
    display: none !important;
  }
  .floating-cart {
    display: block !important;
    z-index: 1202; /* above header */
  }
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  margin: 0;
  color: var(--primary);
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}

.item-details {
  flex: 1;
}

.item-details h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
}

.item-details p {
  margin: 0;
  color: var(--secondary);
  font-weight: bold;
}

.item-quantity {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.item-quantity button {
  width: 25px;
  height: 25px;
  border: none;
  background-color: #f0f0f0;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-quantity button:hover {
  background-color: var(--primary);
  color: white;
}

.item-quantity span {
  margin: 0 10px;
}

.remove-item {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkout-btn:hover {
  background-color: var(--secondary);
}

@media (max-width: 768px) {
  .floating-cart {
    display: block;
  }
  
  .cart-panel {
    width: 100%;
    right: -100%;
  }
}

/* Enhanced Floating Cart Button States */
.cart-btn.touch-active {
  background-color: var(--secondary);
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cart-btn.focused {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  background-color: var(--secondary);
}

.cart-btn.hovered {
  background-color: #99002a;
  transform: scale(1.1);
}

/* Cart Panel Animation Enhancement */
.cart-panel {
  transition: right 0.3s ease, transform 0.2s ease;
}

.cart-panel.open {
  transform: translateX(0);
}

/* Enhanced Cart Button for Better Touch Feedback */
.cart-btn:active {
  transform: scale(1.05);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Improved Cart Count Visibility */
.cart-count {
  transition: all 0.2s ease;
}

.cart-count.updated {
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(183, 110, 121, 0.6);
}

/* Smooth Transitions for All States */
.cart-btn,
.cart-count {
  transition: all 0.2s ease;
}
@media (min-width: 769px) {
  .floating-cart {
    display: none;
  }
}