/* assets/css/style.css — SHOPWITHPRAJINAA Luxury Boutique Design System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary-pink: #F8BBD0;
  --primary-pink-light: #FCE4EC;
  --primary-rose: #D81B60;
  --rose-gold: #B76E79;
  --rose-gold-dark: #9E5560;
  --gold-accent: #C5A059;
  --bg-cream: #FAF6F0;
  --bg-light: #FDFBF7;
  --bg-card: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-body: #333333;
  --text-muted: #767676;
  --border-light: #EFE8E1;
  --border-pink: #F3D3DC;
  
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 6px 18px rgba(183, 110, 121, 0.10);
  --shadow-lg: 0 14px 32px rgba(183, 110, 121, 0.16);
  --shadow-hover: 0 16px 36px rgba(183, 110, 121, 0.22);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   TOP ANNOUNCEMENT BAR
   ========================================= */
.announcement-bar {
  background: linear-gradient(90deg, #1A1A1A 0%, #2D1A22 50%, #1A1A1A 100%);
  color: #FFF;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 100;
}
.announcement-bar .highlight {
  color: #F8BBD0;
  font-weight: 700;
}
.announcement-bar a {
  text-decoration: underline;
  margin-left: 6px;
  color: #FFF;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: var(--transition);
}

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-logo:hover {
  opacity: 0.92;
}
.site-logo-img {
  height: 48px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
}
.header-brand-emblem {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: #FFF;
  border: 1.5px solid var(--rose-gold);
  box-shadow: 0 2px 8px rgba(183, 110, 121, 0.2);
  flex-shrink: 0;
  display: block;
}
.brand-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site-logo .brand-name {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.15;
  background: linear-gradient(135deg, #1A1A1A 0%, #9E5560 50%, #B76E79 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.site-logo .brand-subtitle {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--rose-gold);
  font-weight: 600;
  margin-top: 1px;
  white-space: nowrap;
}

/* Desktop Menu */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 0;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--rose-gold);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--rose-gold);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link.badge-offer {
  color: var(--primary-rose);
  font-weight: 600;
}
.nav-link.badge-offer span {
  background: var(--primary-rose);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

/* Header Action Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.action-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition);
}
.action-icon-btn:hover {
  background: var(--primary-pink-light);
  color: var(--rose-gold-dark);
}
.action-icon-btn svg {
  width: 22px;
  height: 22px;
}
.action-icon-btn .badge-counter {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary-rose);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 5px rgba(216, 27, 96, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-dark);
}
.mobile-menu-toggle svg {
  width: 26px;
  height: 26px;
}

/* =========================================
   SEARCH MODAL / LIVE SEARCH
   ========================================= */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.search-modal.active {
  display: flex;
}
.search-modal-content {
  background: #FFF;
  width: 90%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--border-pink);
  padding-bottom: 12px;
}
.search-input-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--rose-gold);
  margin-right: 12px;
}
.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  color: var(--text-dark);
}
.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
}
.search-results-list {
  max-height: 380px;
  overflow-y: auto;
  margin-top: 16px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.search-result-item:hover {
  background: var(--bg-cream);
}
.search-result-item img {
  width: 50px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.search-result-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.search-result-info .price {
  font-size: 13px;
  color: var(--rose-gold-dark);
  font-weight: 700;
}

/* =========================================
   SLIDE-IN CART DRAWER
   ========================================= */
.cart-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
}
.cart-drawer-overlay.active {
  display: block;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #FFF;
  z-index: 2001;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cart-drawer.active {
  right: 0;
}
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}
.cart-drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}
.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
}
.free-shipping-bar {
  background: var(--primary-pink-light);
  padding: 12px 20px;
  font-size: 12.5px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-pink);
}
.shipping-progress {
  height: 6px;
  background: #E0D4D7;
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
}
.shipping-progress-fill {
  height: 100%;
  background: var(--primary-rose);
  transition: width 0.4s ease;
}
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.cart-item-row {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.cart-item-row img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cart-item-details {
  flex: 1;
}
.cart-item-details h4 {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item-variant {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--rose-gold-dark);
}
.cart-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: max-content;
  margin-top: 8px;
}
.cart-qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-qty-input {
  width: 32px;
  text-align: center;
  border: none;
  font-size: 13px;
  font-weight: 600;
}
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  position: absolute;
  top: 0;
  right: 0;
}
.cart-item-remove:hover {
  color: #E53935;
}
.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-light);
}
.cart-subtotal-line {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.btn-checkout-drawer {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #1A1A1A 0%, #3D1F28 100%);
  color: #FFF;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-checkout-drawer:hover {
  background: var(--rose-gold);
}
.btn-view-cart {
  display: block;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
  color: var(--text-muted);
  text-decoration: underline;
}

/* =========================================
   HERO BANNER SECTION
   ========================================= */
.hero-section {
  position: relative;
  background-color: #F8BBD0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 45%, rgba(255,255,255,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF;
  color: var(--rose-gold-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border: 1px solid var(--border-pink);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-title span {
  color: var(--rose-gold);
  font-style: italic;
}
.hero-subtitle {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1A1A1A 0%, #3B1B25 100%);
  color: #FFF;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--rose-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFF;
  color: var(--text-dark);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold-dark);
  transform: translateY(-2px);
}

/* =========================================
   FEATURE HIGHLIGHTS / TRUST BAR
   ========================================= */
.trust-bar {
  background: #FFF;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-light);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold-dark);
  flex-shrink: 0;
}
.trust-icon svg {
  width: 24px;
  height: 24px;
}
.trust-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.trust-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================================
   INSTAGRAM STORIES & REEL SHOWCASE
   ========================================= */
.video-stories-section {
  padding: 40px 0 20px;
}
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 36px;
}
.section-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rose-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}
.section-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.stories-reel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(135deg, #FFF 0%, var(--bg-cream) 100%);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-pink);
  box-shadow: var(--shadow-md);
}
.reel-video-container {
  width: 270px;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  background: #000;
}
.reel-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #FFF;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.reel-badge .dot {
  width: 8px;
  height: 8px;
  background: #FF0055;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
.stories-content-side {
  max-width: 500px;
}
.stories-content-side h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.stories-content-side p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-rose);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

/* =========================================
   12 PRODUCT CATEGORIES GRID
   ========================================= */
.categories-section {
  padding: 50px 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.category-card {
  background: #FFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-pink);
}
.category-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F2ECE9;
}
.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.category-card:hover .category-img-wrap img {
  transform: scale(1.08);
}
.category-card-body {
  padding: 14px 10px;
  background: #FFF;
}
.category-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-explore-btn {
  font-size: 11px;
  color: var(--rose-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   FLASH SALE / FESTIVE PROMO BANNER
   ========================================= */
.flash-sale-section {
  padding: 30px 0 50px;
}
.flash-sale-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: #2D1A22;
  box-shadow: var(--shadow-lg);
}
.flash-sale-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.flash-sale-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(26,10,18,0.92) 0%, rgba(26,10,18,0.6) 60%, rgba(26,10,18,0.2) 100%);
}
.flash-sale-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 40px 50px;
  color: #FFF;
}
.flash-sale-badge {
  display: inline-block;
  background: #FF0055;
  color: #FFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.flash-sale-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.flash-sale-desc {
  font-size: 15px;
  color: #F8BBD0;
  margin-bottom: 24px;
}
.countdown-timer {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.countdown-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-align: center;
  min-width: 65px;
}
.countdown-box .number {
  font-size: 22px;
  font-weight: 800;
  color: #FFF;
  display: block;
}
.countdown-box .label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FCE4EC;
}

/* =========================================
   PRODUCT LISTING & CARDS
   ========================================= */
.products-section {
  padding: 50px 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #FFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-pink);
}
.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #F7F3EF;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover .product-media img {
  transform: scale(1.06);
}
.product-badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1A1A1A;
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}
.product-badge-tag.bestseller {
  background: linear-gradient(135deg, #B76E79 0%, #9E5560 100%);
}
.product-badge-tag.trending {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}
.product-badge-tag.limited {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}
.product-badge-tag.new {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.btn-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-wishlist:hover, .btn-wishlist.active {
  background: #FFF;
  color: #E91E63;
  transform: scale(1.1);
}
.btn-wishlist svg {
  width: 18px;
  height: 18px;
}

.quick-view-overlay-btn {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: bottom 0.3s ease;
  z-index: 3;
}
.product-card:hover .quick-view-overlay-btn {
  bottom: 0;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rose-gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.product-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #FFA41C;
  margin-bottom: 8px;
}
.product-rating .reviews-count {
  color: var(--text-muted);
  font-size: 11px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.discount-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.original-price {
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.discount-pill {
  font-size: 11px;
  font-weight: 700;
  color: #10B981;
  background: #ECFDF5;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.btn-card-cart {
  background: var(--bg-cream);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: var(--transition);
}
.btn-card-cart:hover {
  background: var(--primary-pink-light);
  border-color: var(--border-pink);
  color: var(--rose-gold-dark);
}
.btn-card-buy {
  background: #1A1A1A;
  color: #FFF;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-card-buy:hover {
  background: var(--rose-gold);
}

/* =========================================
   CUSTOMER LOVE / REVIEWS SECTION
   ========================================= */
.reviews-section {
  padding: 60px 0;
  background: #FFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-pink);
  position: relative;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-gold);
}
.review-author-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #10B981;
  font-weight: 600;
}
.verified-badge svg {
  width: 14px;
  height: 14px;
}
.review-stars {
  color: #FFA41C;
  font-size: 14px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 13.5px;
  color: #4A4A4A;
  line-height: 1.6;
  font-style: italic;
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1500;
  transition: var(--transition);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-floating-btn:hover {
  transform: scale(1.1);
  color: #FFF;
}
.whatsapp-floating-btn svg {
  width: 32px;
  height: 32px;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #1A1A1A;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.whatsapp-floating-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #161616;
  color: #C0C0C0;
  padding: 60px 0 24px;
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #FFF;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
}
.footer-brand p {
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 13px;
  color: #999;
}
.footer-title {
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a:hover {
  color: var(--primary-pink);
  padding-left: 4px;
}
.newsletter-form {
  display: flex;
  margin-top: 14px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  background: #262626;
  color: #FFF;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  outline: none;
  font-size: 13px;
}
.newsletter-form button {
  background: var(--rose-gold);
  color: #FFF;
  border: none;
  padding: 0 18px;
  font-weight: 700;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background: var(--primary-rose);
}
.footer-bottom {
  border-top: 1px solid #2B2B2B;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-badges {
  display: flex;
  gap: 8px;
}
.payment-badge {
  background: #262626;
  color: #AAA;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* =========================================
   RESPONSIVE CORE LAYOUT ARCHITECTURE
   ========================================= */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
}
.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.auth-layout {
  max-width: 520px;
  margin: 0 auto;
}
.auth-card-unified {
  background: #FFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 32px rgba(0,0,0,0.06);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.auth-tabs {
  display: flex;
  background: #FAF6F0;
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 22px;
  border: 1px solid #F3D3DC;
  gap: 4px;
}
.auth-tab-btn {
  flex: 1;
  padding: 11px 16px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.auth-tab-btn.active {
  background: #FFF;
  color: var(--primary-rose);
  box-shadow: 0 2px 8px rgba(183, 110, 121, 0.2);
  font-weight: 700;
}
.auth-panel {
  display: none;
}
.auth-panel.active {
  display: block;
  animation: fadeInAuth 0.3s ease;
}
@keyframes fadeInAuth {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.account-dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
}
.track-stepper-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  text-align: center;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.form-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-sidebar-main {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}
.grid-main-sidebar {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 28px;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}
