/* ==========================================================================
   Loving Crafts - Component Stylesheet
   Components: Header, Mega Menus, Hero, Product Cards with Radial Hover,
   Stats, Gallery, Cart, Modal, Footer
   ========================================================================== */

/* 1. Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #92400E 0%, #D97706 35%, #F59E0B 65%, #D97706 100%);
  background-size: 300% auto;
  animation: shineGradient 6s linear infinite;
  color: #FFFFFF;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 101;
  position: relative;
}

@keyframes shineGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.announcement-bar a {
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.announcement-bar a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* 2. Main Header & Navbar */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--lc-border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Premium top gradient stripe */
.site-header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #D97706 0%, #F59E0B 40%, #EC4899 75%, #D97706 100%);
  background-size: 200% auto;
  animation: headerStripe 4s linear infinite;
}

@keyframes headerStripe {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0;
}

.brand-logo .logo-title {
  font-family: 'Sacramento', 'Brush Script MT', cursive;
  font-size: 2.2rem;
  color: var(--lc-navy-dark);
  line-height: 1;
  position: relative;
  letter-spacing: 1px;
}

.brand-logo .logo-title .heart-dot {
  color: #E11D48;
  font-size: 1.1rem;
  display: inline-block;
  margin-left: 1px;
  animation: heartbeat 2.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.2); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

.brand-logo .logo-tagline {
  font-family: var(--lc-font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lc-gold-primary);
  margin-top: 1px;
}

/* Nav Menu */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--lc-text-dark);
  padding: 26px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--lc-transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-item:hover > .nav-link, .nav-link.active {
  color: var(--lc-gold-primary);
}

.nav-link .caret {
  font-size: 0.55rem;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-item:hover .nav-link .caret {
  transform: rotate(180deg);
}

/* Dropdown Animation & Layout */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  border-radius: var(--lc-radius-md);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border: 1px solid var(--lc-border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 99;
  list-style: none;
  padding: 12px 0;
}

.nav-item.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu for SHOP */
.mega-menu-shop {
  width: 540px;
  padding: 0;
  display: flex;
  background: #FFFFFF;
  border-radius: var(--lc-radius-md);
  overflow: hidden;
}

.mega-menu-shop .categories-col {
  width: 58%;
  padding: 16px 12px;
  border-right: 1px solid var(--lc-border-light);
  max-height: 480px;
  overflow-y: auto;
}

.mega-menu-shop .occasions-col {
  width: 42%;
  padding: 16px 14px;
  background: #FFFDF9;
}

.mega-header {
  font-family: var(--lc-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--lc-gold-hover);
  padding: 6px 12px 10px;
  border-bottom: 1.5px solid var(--lc-gold-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lc-text-dark);
  border-radius: var(--lc-radius-sm);
  transition: var(--lc-transition);
}

.mega-item:hover {
  background: var(--lc-gold-light);
  color: var(--lc-gold-hover);
  padding-left: 16px;
}

.mega-item .item-icon {
  font-size: 0.95rem;
  color: var(--lc-gold-primary);
  width: 18px;
}

/* Learn & Create Dropdown */
.learn-dropdown {
  width: 290px;
  padding: 12px;
}

.learn-menu-card {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: var(--lc-radius-sm);
  transition: var(--lc-transition);
}

.learn-menu-card:hover {
  background: var(--lc-gold-light);
}

.learn-menu-card .icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #FEF3C7;
  color: var(--lc-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.learn-menu-card .card-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lc-text-dark);
  margin-bottom: 2px;
}

.learn-menu-card .card-info p {
  font-size: 0.76rem;
  color: var(--lc-text-muted);
  line-height: 1.3;
}

/* Header Right: Search & Actions */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-shrink: 0;
}

.header-search {
  position: relative;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--lc-bg-cream);
  border: 1.5px solid var(--lc-border-subtle);
  border-radius: var(--lc-radius-full);
  padding: 7px 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 240px;
}

.search-input-wrap:focus-within {
  border-color: var(--lc-gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(217,119,6,0.12);
}

.search-input-wrap input {
  background: transparent;
  width: 100%;
  font-size: 0.84rem;
  color: var(--lc-text-dark);
  min-width: 0;
}

.search-input-wrap input::placeholder {
  color: var(--lc-text-light);
}

.search-input-wrap .search-icon-btn {
  background: transparent;
  color: var(--lc-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-input-wrap .search-icon-btn:hover {
  color: var(--lc-gold-primary);
}

/* Header Action Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lc-text-dark);
  font-size: 1.2rem;
  background: var(--lc-bg-cream);
  transition: var(--lc-transition);
}

.action-btn:hover {
  background: var(--lc-gold-light);
  color: var(--lc-gold-hover);
}

.action-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--lc-gold-primary);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

/* Account Dropdown Menu */
.account-dropdown-wrap {
  position: relative;
}

.account-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 270px;
  background: #FFFFFF;
  border-radius: var(--lc-radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--lc-border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.account-dropdown-wrap.active .account-dropdown-menu,
.account-dropdown-wrap:hover .account-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-user-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lc-bg-cream);
  border-bottom: 1px solid var(--lc-border-light);
}

.user-avatar-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D97706, #F59E0B);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.user-info-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.user-info-text strong {
  font-size: 0.92rem;
  color: var(--lc-text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-info-text span {
  font-size: 0.76rem;
  color: var(--lc-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-guest-header {
  padding: 16px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--lc-bg-cream);
  border-bottom: 1px solid var(--lc-border-light);
}

.dropdown-guest-header strong {
  font-size: 0.95rem;
  color: var(--lc-text-dark);
}

.dropdown-guest-header span {
  font-size: 0.78rem;
  color: var(--lc-text-muted);
}

.dropdown-guest-actions {
  padding: 12px 16px;
}

.account-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lc-text-dark);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.account-dropdown-menu .dropdown-item:hover {
  background: var(--lc-gold-light);
  color: var(--lc-gold-hover);
}

.account-dropdown-menu .dropdown-item .item-icon {
  font-size: 1.05rem;
  width: 20px;
  display: inline-flex;
  justify-content: center;
}

.account-dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--lc-border-light);
  margin: 4px 0;
}

.account-dropdown-menu .dropdown-item.logout-link {
  color: #DC2626;
}

.account-dropdown-menu .dropdown-item.logout-link:hover {
  background: #FEE2E2;
  color: #991B1B;
}

.account-dropdown-menu .dropdown-item.admin-link {
  color: #D97706;
}

.account-dropdown-menu .dropdown-item.admin-link:hover {
  background: #FEF3C7;
  color: #B45309;
}

/* ==========================================================================
   Print Receipt Styles (@media print)
   ========================================================================== */
.print-only-header {
  display: none;
}

@media print {
  /* Hide non-printable elements */
  .announcement-bar,
  .site-header,
  .site-footer,
  .breadcrumb,
  .no-print,
  .btn,
  button,
  .btn-print,
  .whatsapp-floating-btn,
  .lc-modal-overlay,
  .card-action-group {
    display: none !important;
  }

  body {
    background: #FFFFFF !important;
    color: #111827 !important;
    font-size: 11pt;
    padding: 0 !important;
    margin: 0 !important;
  }

  .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 20px !important;
    margin: 0 !important;
  }

  .print-only-header {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #1E293B;
  }

  .order-success-grid {
    display: block !important;
  }

  .order-card-box {
    box-shadow: none !important;
    border: 1px solid #CBD5E1 !important;
    border-radius: 6px !important;
    margin-bottom: 20px !important;
    page-break-inside: avoid;
  }
}

/* 3. Hero Slider — CSS Background Image + Text Overlay (Reference Style) */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  /* 362/1024 = 35.35vw — maintains the exact image aspect ratio */
  height: 35.35vw;
  max-height: 600px;
  min-height: 280px;
}

/* Each slide fills the wrapper as a background-image container */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease-in-out, visibility 0.75s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Text block — sits on the LEFT of the background image */
.hero-text-overlay {
  position: relative;
  width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 20px 48px 72px;
  gap: 0;
  z-index: 5;
}


/* Small decorative tag above the headline */
.hero-badge-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #92400E;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-badge-line {
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: #D97706;
}

/* Main headline — large, bold, dark */
.hero-headline {
  font-family: var(--lc-font-heading);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  font-weight: 800;
  color: #1C1209;
  line-height: 1.18;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

/* Subtitle text */
.hero-subtext {
  font-size: clamp(0.8rem, 1.2vw, 0.97rem);
  color: #5C4A2A;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 14px 0;
}

/* Offer strip: "FLAT 40% OFF + Free Gift..." */
.hero-offer-strip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.hero-offer-flat {
  font-size: 0.7rem;
  font-weight: 700;
  color: #92400E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-offer-text {
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 800;
  color: #B45309;
  line-height: 1.3;
}

/* Trust badges row: Rating + COD */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 24px;
  padding: 5px 12px 5px 8px;
  font-size: 0.72rem;
  color: #3B2500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hero-trust-icon {
  font-size: 0.88rem;
  color: #D97706;
  flex-shrink: 0;
}

.hero-trust-badge div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-trust-badge strong {
  font-weight: 700;
  font-size: 0.73rem;
  color: #1C1209;
  line-height: 1;
}

.hero-trust-badge span {
  font-size: 0.62rem;
  color: #6B4F2A;
  line-height: 1;
}

.hero-trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(180, 130, 60, 0.25);
  flex-shrink: 0;
}

/* Shop Now CTA Button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1C1209;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  width: fit-content;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.hero-cta-btn:hover {
  background: #C27803;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 120, 3, 0.38);
}

/* Prev/Next Navigation Arrows */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  color: #1E293B;
  font-size: 1.1rem;
  transition: var(--lc-transition);
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.hero-nav-arrow:hover {
  background: var(--lc-gold-primary);
  color: #FFFFFF;
  border-color: var(--lc-gold-primary);
  transform: translateY(-50%) scale(1.08);
}

.hero-nav-prev { left: 16px; }
.hero-nav-next { right: 16px; }

/* Dots indicator at bottom */
.hero-dots-wrap {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: var(--lc-transition);
  padding: 0;
}

.hero-dot.active {
  background: #FFFFFF;
  width: 26px;
  border-radius: 5px;
  border-color: rgba(255,255,255,0.9);
}


/* 4. Circular Category Navigation Strip (Enlarged with Interactive Drag-to-Scroll) */
.category-circles-section {
  padding: 36px 0 28px;
  background: #FAF6F0;
  border-bottom: 1px solid #F1ECE1;
  position: relative;
  overflow: hidden;
}

.cat-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.category-scroll-container {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 10px 20px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  scroll-behavior: smooth;
  width: 100%;
}

.category-scroll-container.grabbing {
  cursor: grabbing;
  scroll-behavior: auto;
}

.category-scroll-container::-webkit-scrollbar {
  display: none;
}

.category-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  width: 150px;
  text-align: center;
  transition: transform 0.28s ease, filter 0.28s ease;
  gap: 12px;
}

.category-circle-item:hover {
  transform: translateY(-5px);
}

.category-circle-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: #FAF5EE;
  border: 3.5px solid #D97706;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.22);
  transition: var(--lc-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-circle-item:hover .category-circle-img {
  border-color: #B45309;
  box-shadow: 0 10px 26px rgba(217, 119, 6, 0.4);
  transform: scale(1.04);
}

.category-circle-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.category-circle-item:hover .category-circle-img img {
  transform: scale(1.08);
}

.category-circle-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.category-circle-item:hover .category-circle-name {
  color: var(--lc-gold-primary);
}

/* Category Slider Navigation Buttons */
.cat-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  color: #1E293B;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--lc-transition);
}

.cat-nav-btn:hover {
  background: var(--lc-gold-primary);
  color: #FFFFFF;
  border-color: var(--lc-gold-primary);
  transform: translateY(-60%) scale(1.08);
}

.cat-prev-btn {
  left: 5px;
}

.cat-next-btn {
  right: 5px;
}

/* 5. Product Card & Arch Dome Hover Animation (The Sunday Stories / Boutique Arch Style) */
.product-card {
  background: #FFFFFF;
  border-radius: var(--lc-radius-md);
  border: 1px solid var(--lc-border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--lc-shadow-sm);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-top-left-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-top-right-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
  position: relative;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
  border-color: var(--lc-border-subtle);
  transform: translateY(-5px);
  border-top-left-radius: 115px;
  border-top-right-radius: 115px;
}

.product-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect ratio square */
  background: #FAF5EE;
  overflow: hidden;
  border-top-left-radius: var(--lc-radius-md);
  border-top-right-radius: var(--lc-radius-md);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: border-top-left-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-top-right-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-thumb {
  border-top-left-radius: 115px;
  border-top-right-radius: 115px;
}

.product-card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.05);
}

/* Badges floating on thumbnail */
.card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
}

/* No light overlay - product photo remains crystal clear */
.card-radial-overlay {
  display: none !important;
}

.card-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 7;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.product-card:hover .card-action-group {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--lc-text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--lc-transition);
  border: 1px solid var(--lc-border-light);
}

.card-action-btn:hover {
  background: var(--lc-gold-primary);
  color: #FFFFFF;
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
}

.card-action-btn.active-wishlist {
  background: #FCE7F3;
  color: #BE185D;
}

/* Card Body */
.product-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-family: var(--lc-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lc-text-dark);
  margin-bottom: 5px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.product-card-title a:hover {
  color: var(--lc-gold-primary);
}

.card-short-desc {
  font-size: 0.78rem;
  color: var(--lc-text-light);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-rating-row {
  margin-bottom: 8px;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  padding-top: 6px;
}

.price-original {
  font-size: 0.9rem;
  color: var(--lc-text-light);
  text-decoration: line-through;
}

.price-discounted {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lc-text-dark);
}

/* Add to Bag button at card bottom */
.btn-add-to-bag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 16px;
  background: transparent;
  border: 1.5px solid var(--lc-gold-primary);
  border-radius: var(--lc-radius-full);
  color: var(--lc-gold-hover);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--lc-transition);
  margin-top: auto;
}

.btn-add-to-bag:hover {
  background: var(--lc-gold-primary);
  color: #FFFFFF;
}

/* 6. Feature & Trust Section */
.trust-features-section {
  background: #FFFDF9;
  padding: 30px 0;
  border-top: 1px solid var(--lc-border-light);
  border-bottom: 1px solid var(--lc-border-light);
}

.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lc-gold-light);
  color: var(--lc-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--lc-text-dark);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--lc-text-muted);
}

/* 7. Statistics Section */
.stats-section {
  background: linear-gradient(135deg, #FFFDF9 0%, #F5EDE1 100%);
  padding: 60px 0;
  border-bottom: 1px solid var(--lc-border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-box {
  padding: 20px 10px;
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: inline-block;
}

.stat-number {
  font-family: var(--lc-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lc-gold-hover);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lc-text-dark);
}

/* 8. Customer Reviews & Testimonials Section */
.testimonials-section {
  background: #FAF6F0;
  padding: 60px 0;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--lc-radius-md);
  padding: 24px;
  box-shadow: var(--lc-shadow-sm);
  border: 1px solid var(--lc-border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.testimonial-title {
  font-family: var(--lc-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lc-text-dark);
  margin-bottom: 8px;
}

.testimonial-body {
  font-size: 0.9rem;
  color: var(--lc-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--lc-border-light);
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lc-gold-light);
  color: var(--lc-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lc-text-dark);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--lc-text-muted);
}

/* 9. Product Details Page Component (Luxury Redesign) */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  padding: 24px 0 50px;
  align-items: start;
}

/* Sticky Gallery Column */
.gallery-sticky-wrap {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-container {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 76px;
  flex-shrink: 0;
}

.gallery-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--lc-radius-md);
  border: 2px solid var(--lc-border-subtle);
  overflow: hidden;
  cursor: pointer;
  background: #FAF5EE;
  transition: var(--lc-transition);
  position: relative;
}

.gallery-thumb:hover, .gallery-thumb.active {
  border-color: var(--lc-gold-primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
  transform: translateY(-2px);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  flex-grow: 1;
  position: relative;
  border-radius: var(--lc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lc-border-subtle);
  background: #FAF5EE;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.gallery-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-main:hover img {
  transform: scale(1.03);
}

/* Left Column Guarantee & Assurance Badges (Eliminates bottom white space) */
.product-guarantees-card {
  background: #FFFFFF;
  border: 1px solid var(--lc-border-subtle);
  border-radius: var(--lc-radius-md);
  padding: 18px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lc-gold-light);
  color: var(--lc-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.guarantee-item div {
  display: flex;
  flex-direction: column;
}

.guarantee-item strong {
  font-size: 0.82rem;
  color: var(--lc-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.guarantee-item span {
  font-size: 0.72rem;
  color: var(--lc-text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

/* Right Column: Product Info Panel */
.product-info-panel {
  display: flex;
  flex-direction: column;
}

.product-info-panel h1 {
  font-family: var(--lc-font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 700;
  color: #1E293B;
  line-height: 1.25;
  margin-bottom: 10px;
}

.detail-price-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
  padding: 16px 20px;
  background: #FFFFFF;
  border-radius: var(--lc-radius-md);
  border: 1px solid var(--lc-border-subtle);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.detail-price-box .curr-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1E293B;
  line-height: 1;
}

.detail-price-box .orig-price {
  font-size: 1.2rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.detail-price-box .price-save-tag {
  background: #ECFDF5;
  color: #059669;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #A7F3D0;
  margin-left: auto;
}

/* Key Highlights Pill Tags */
.product-spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--lc-border-subtle);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--lc-text-dark);
}

.spec-pill strong {
  color: #1E293B;
}

/* Personalization Box */
.customization-box {
  background: #FFFFFF;
  border: 1.5px solid #F1ECE1;
  border-radius: var(--lc-radius-md);
  padding: 22px 24px;
  margin: 20px 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
}

.customization-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 6px;
}

.customization-box-sub {
  font-size: 0.83rem;
  color: var(--lc-text-muted);
  margin-bottom: 18px;
  line-height: 1.45;
}

/* Quantity Counter & CTA Button Group */
.qty-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.qty-counter {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--lc-border-subtle);
  border-radius: var(--lc-radius-md);
  background: #FFFFFF;
  height: 48px;
  overflow: hidden;
}

.qty-counter button {
  width: 40px;
  height: 100%;
  background: #FAF6F0;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1E293B;
  transition: var(--lc-transition);
}

.qty-counter button:hover {
  background: var(--lc-gold-light);
  color: var(--lc-gold-hover);
}

.qty-counter input {
  width: 44px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #1E293B;
  background: #FFFFFF;
}

.btn-cart-primary {
  height: 48px;
  padding: 0 28px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--lc-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-buy-now {
  height: 48px;
  padding: 0 28px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--lc-radius-md);
  background: #1E293B;
  color: #FFFFFF;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--lc-transition);
  cursor: pointer;
}

.btn-buy-now:hover {
  background: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

.btn-wishlist-round {
  width: 48px;
  height: 48px;
  border-radius: var(--lc-radius-md);
  border: 1.5px solid var(--lc-border-subtle);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  color: #64748B;
  transition: var(--lc-transition);
}

.btn-wishlist-round:hover, .btn-wishlist-round.active-wishlist {
  background: #FCE7F3;
  color: #BE185D;
  border-color: #F472B6;
  transform: scale(1.05);
}

/* Interactive Tabs Section (Product Story, Specs, Reviews) */
.product-tabs-wrapper {
  margin-top: 50px;
  background: #FFFFFF;
  border-radius: var(--lc-radius-lg);
  border: 1px solid var(--lc-border-subtle);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  overflow: hidden;
}

.product-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--lc-border-subtle);
  background: #FAF6F0;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-tab-btn {
  padding: 16px 28px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--lc-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  transition: var(--lc-transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-tab-btn:hover {
  color: var(--lc-gold-primary);
}

.product-tab-btn.active {
  color: #1E293B;
  background: #FFFFFF;
  border-bottom-color: var(--lc-gold-primary);
}

.product-tab-badge {
  background: var(--lc-gold-light);
  color: #92400E;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  font-family: var(--lc-font-body);
}

.product-tab-pane {
  display: none;
  padding: 36px 40px;
  line-height: 1.8;
  color: var(--lc-text-dark);
}

.product-tab-pane.active {
  display: block;
}

/* Reviews Breakdown Header */
.reviews-header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: #FAF6F0;
  border-radius: var(--lc-radius-md);
  border: 1px solid var(--lc-border-subtle);
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-score-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-big-num {
  font-family: var(--lc-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #1E293B;
  line-height: 1;
}

.review-card-item {
  padding: 20px 24px;
  background: #FFFFFF;
  border-radius: var(--lc-radius-md);
  border: 1px solid var(--lc-border-subtle);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: var(--lc-transition);
}

.review-card-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lc-gold-light);
  color: var(--lc-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

/* 10. Free Shipping Progress Bar in Cart */
.free-shipping-bar {
  background: var(--lc-gold-light);
  border: 1px solid #FDE68A;
  border-radius: var(--lc-radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
}

.free-shipping-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #92400E;
  margin-bottom: 8px;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--lc-gold-primary);
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* 11. Dark Navy Footer */
.site-footer {
  background: var(--lc-navy-dark);
  color: #E2E8F0;
  padding: 60px 0 24px;
  margin-top: 60px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-title {
  font-family: var(--lc-font-script);
  font-size: 2.4rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.footer-tagline {
  color: #94A3B8;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--lc-transition);
}

.social-btn:hover {
  background: var(--lc-gold-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--lc-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--lc-gold-accent);
  padding-left: 4px;
}

.newsletter-form {
  margin-top: 12px;
}

.newsletter-input-group {
  display: flex;
  border-radius: var(--lc-radius-full);
  overflow: hidden;
  background: #FFFFFF;
  padding: 4px;
}

.newsletter-input-group input {
  padding: 10px 14px;
  width: 100%;
  font-size: 0.88rem;
  color: var(--lc-text-dark);
}

.newsletter-input-group button {
  background: var(--lc-gold-primary);
  color: #FFFFFF;
  padding: 0 18px;
  border-radius: var(--lc-radius-full);
  font-weight: bold;
  cursor: pointer;
  transition: var(--lc-transition);
}

.newsletter-input-group button:hover {
  background: var(--lc-gold-hover);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748B;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--lc-transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(6deg);
}

/* Toast Notifications */
.lc-toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-toast {
  background: #1E293B;
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--lc-radius-md);
  box-shadow: var(--lc-shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInToast 0.3s ease;
  border-left: 4px solid var(--lc-gold-primary);
}

@keyframes slideInToast {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
