/* =============================================
   HİERA E-Ticaret - Ana Stil Dosyası
   Modern Butik Tasarım
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
   --gold: #C8A96E;
   --gold-dark: #B89A60;
   --gold-light: rgba(200, 169, 110, 0.1);
   --accent-gold: #D4AF37;
   --black: #1A1A1A;
   --text: #2D2D2D;
   --text-light: #8A8A8A;
   --text-muted: #B0B0B0;
   --white: #FFFFFF;
   --bg: #FAF8F5;
   --bg-nude: #F5F0EB;
   --bg-cream: #F8F6F2;
   --border: #E8E3DD;
   --border-light: #F0EBE5;
   --success: #5AA867;
   --error: #C75050;
   --warning: #E8A032;
   --info: #4F8CD2;
   --heading: 'Playfair Display', Georgia, serif;
   --body: 'Inter', -apple-system, sans-serif;
   --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
   --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
   --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
   --radius: 8px;
   --radius-lg: 16px;
   --container: 1280px;
   --topbar-h: 70px;
   --transition: all .3s ease
}

/* Reset */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box
}

html {
   scroll-behavior: smooth;
   -webkit-text-size-adjust: 100%
}

body {
   font-family: var(--body);
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
   font-size: 15px;
   overflow-x: hidden
}

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

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

button {
   cursor: pointer;
   font-family: var(--body)
}

ul,
ol {
   list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--heading);
   font-weight: 600;
   line-height: 1.3
}

/* Container */
.container {
   max-width: var(--container);
   margin: 0 auto;
   padding: 0 20px
}

/* =============================================
   MARQUEE ANNOUNCEMENT BAR
   ============================================= */
.marquee-strip {
   overflow: hidden;
   white-space: nowrap;
   color: #fff;
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   padding: 9px 0;
   position: relative
}

.marquee-track {
   display: flex;
   width: max-content;
   animation: marqueeScroll 30s linear infinite
}

.marquee-content {
   flex-shrink: 0;
   padding: 0 8px
}

@keyframes marqueeScroll {
   0% { transform: translateX(0) }
   100% { transform: translateX(-50%) }
}

.marquee-strip:hover .marquee-track {
   animation-play-state: paused
}

/* =============================================
   TOPBAR STRIP
   ============================================= */
.topbar-strip {
   background: var(--black);
   color: rgba(255, 255, 255, 0.7);
   font-size: 12px;
   padding: 8px 0;
   letter-spacing: .3px
}

.topbar-strip-inner {
   display: flex;
   justify-content: space-between;
   align-items: center
}

.topbar-left {
   display: flex;
   align-items: center;
   gap: 6px
}

.topbar-left i {
   color: var(--gold);
   font-size: 11px
}

.topbar-divider {
   opacity: .3;
   margin: 0 8px
}

.topbar-right-strip {
   display: flex;
   align-items: center;
   gap: 4px
}

.topbar-right-strip a {
   color: rgba(255, 255, 255, 0.7);
   font-size: 12px;
   transition: var(--transition)
}

.topbar-right-strip a:hover {
   color: var(--gold)
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
   background: var(--white);
   position: sticky;
   top: 0;
   z-index: 1000;
   border-bottom: 1px solid var(--border-light);
   transition: var(--transition)
}

.navbar.scrolled {
   box-shadow: var(--shadow)
}

.navbar-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: var(--topbar-h);
   max-width: var(--container);
   margin: 0 auto;
   padding: 0 20px
}

.navbar-logo img {
   height: 44px;
   width: auto;
   transition: var(--transition)
}

.navbar-logo:hover img {
   transform: scale(1.05)
}

.navbar-nav {
   display: flex;
   align-items: center;
   gap: 28px
}

.navbar-nav a {
   font-size: 13px;
   font-weight: 500;
   color: var(--text);
   letter-spacing: .5px;
   text-transform: uppercase;
   position: relative;
   padding: 4px 0
}

.navbar-nav a::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--gold);
   transition: width .3s
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
   width: 100%
}

.navbar-nav a:hover {
   color: var(--gold)
}

.navbar-icons {
   display: flex;
   align-items: center;
   gap: 16px
}

.navbar-icon {
   position: relative;
   color: var(--text);
   font-size: 18px;
   transition: var(--transition);
   background: none;
   border: none;
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%
}

.navbar-icon:hover {
   color: var(--gold);
   background: var(--gold-light)
}

.navbar-icon .badge-count {
   position: absolute;
   top: 2px;
   right: 2px;
   background: var(--gold);
   color: var(--white);
   font-size: 9px;
   width: 16px;
   height: 16px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700
}

.navbar-hamburger {
   display: none;
   background: none;
   border: none;
   font-size: 22px;
   color: var(--text);
   width: 40px;
   height: 40px;
   border-radius: 50%;
   transition: var(--transition)
}

.navbar-hamburger:hover {
   background: var(--gold-light);
   color: var(--gold)
}

/* User Dropdown */
.navbar-user-dropdown {
   position: relative
}

.user-dropdown {
   display: none;
   position: absolute;
   top: 100%;
   right: 0;
   width: 220px;
   background: var(--white);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg);
   border: 1px solid var(--border-light);
   overflow: visible;
   z-index: 100;
   animation: dropIn .2s ease;
   padding-top: 0
}

.user-dropdown::before {
   content: '';
   position: absolute;
   top: -12px;
   right: 0;
   width: 100%;
   height: 12px;
   background: transparent
}

.navbar-user-dropdown:hover .user-dropdown {
   display: block
}

.user-dropdown .dropdown-header {
   padding: 14px 16px;
   background: var(--bg-cream);
   font-size: 13px;
   color: var(--text-light);
   border-bottom: 1px solid var(--border-light)
}

.user-dropdown a {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 11px 16px;
   font-size: 13px;
   color: var(--text);
   transition: var(--transition)
}

.user-dropdown a:hover {
   background: var(--gold-light);
   color: var(--gold)
}

.user-dropdown a i {
   width: 16px;
   text-align: center;
   font-size: 13px;
   color: var(--text-light)
}

.user-dropdown a:hover i {
   color: var(--gold)
}

.dropdown-divider {
   border-top: 1px solid var(--border-light)
}

.dropdown-logout {
   color: var(--error) !important
}

.dropdown-login-btn {
   background: var(--gold) !important;
   color: var(--white) !important;
   margin: 8px;
   border-radius: var(--radius) !important;
   justify-content: center
}

.dropdown-login-btn:hover {
   background: var(--gold-dark) !important
}

.dropdown-login-btn i {
   color: var(--white) !important
}

@keyframes dropIn {
   from {
      opacity: 0;
      transform: translateY(-8px)
   }

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

/* Search Overlay */
.search-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(26, 26, 26, 0.85);
   backdrop-filter: blur(10px);
   z-index: 3000;
   align-items: center;
   justify-content: center
}

.search-overlay.open {
   display: flex
}

.search-overlay-inner {
   width: 90%;
   max-width: 640px;
   position: relative
}

.search-form-overlay {
   display: flex;
   gap: 0
}

.search-input-overlay {
   flex: 1;
   padding: 18px 24px;
   border: none;
   border-radius: var(--radius) 0 0 var(--radius);
   font-size: 17px;
   font-family: var(--body);
   outline: none;
   background: var(--white)
}

.search-form-overlay button {
   padding: 18px 28px;
   background: var(--gold);
   color: var(--white);
   border: none;
   border-radius: 0 var(--radius) var(--radius) 0;
   font-size: 18px;
   cursor: pointer;
   transition: var(--transition)
}

.search-form-overlay button:hover {
   background: var(--gold-dark)
}

.search-close {
   position: absolute;
   top: -50px;
   right: 0;
   background: none;
   border: none;
   color: rgba(255, 255, 255, 0.6);
   font-size: 28px;
   cursor: pointer;
   transition: var(--transition)
}

.search-close:hover {
   color: var(--white)
}

/* Mobile Menu */
.mobile-menu {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   background: var(--white);
   z-index: 2000;
   padding: 80px 24px 24px;
   overflow-y: auto;
   transform: translateX(-100%);
   transition: transform .3s ease
}

.mobile-menu.open {
   transform: translateX(0)
}

.mobile-menu-close {
   position: absolute;
   top: 20px;
   right: 20px;
   background: none;
   border: none;
   font-size: 28px;
   color: var(--text)
}

.mobile-menu-header {
   margin-bottom: 20px;
   padding-bottom: 16px;
   border-bottom: 1px solid var(--border-light)
}

.mobile-menu a {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 13px 0;
   font-size: 16px;
   font-weight: 500;
   border-bottom: 1px solid var(--border-light);
   color: var(--text)
}

.mobile-menu a:hover {
   color: var(--gold)
}

.mobile-menu a i {
   width: 20px;
   text-align: center;
   color: var(--text-light);
   font-size: 15px
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
   position: relative;
   height: 80vh;
   min-height: 500px;
   overflow: hidden;
   background: var(--black)
}

.hero-slide {
   position: absolute;
   inset: 0;
   opacity: 0;
   transition: opacity .8s ease;
   display: flex;
   align-items: center
}

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

.hero-slide-bg {
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center;
   transition: transform 8s ease
}

.hero-slide.active .hero-slide-bg {
   transform: scale(1.03)
}

.hero-slide-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.25))
}

.hero-slide-content {
   position: relative;
   z-index: 2;
   max-width: 650px;
   padding: 0 40px
}

.hero-slide-content h1 {
   font-family: var(--heading);
   font-size: clamp(32px, 5vw, 56px);
   color: var(--white);
   font-weight: 700;
   line-height: 1.15;
   margin-bottom: 16px;
   animation: heroFadeUp .8s ease .2s both
}

.hero-slide-content p {
   color: rgba(255, 255, 255, 0.75);
   font-size: clamp(15px, 2vw, 18px);
   margin-bottom: 32px;
   line-height: 1.7;
   animation: heroFadeUp .8s ease .4s both
}

.hero-slide-content .btn-hero {
   animation: heroFadeUp .8s ease .6s both
}

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

/* Hero Arrows */
.hero-arrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   z-index: 10;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   border: 2px solid rgba(255,255,255,0.3);
   background: rgba(0,0,0,0.3);
   backdrop-filter: blur(4px);
   color: var(--white);
   font-size: 18px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all .3s ease
}

.hero-arrow:hover {
   background: var(--gold);
   border-color: var(--gold);
   transform: translateY(-50%) scale(1.1)
}

.hero-arrow-left { left: 24px }
.hero-arrow-right { right: 24px }

/* Hero Dots */
.hero-dots {
   position: absolute;
   bottom: 28px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 10;
   display: flex;
   gap: 10px
}

.hero-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   border: 2px solid rgba(255,255,255,0.5);
   background: transparent;
   cursor: pointer;
   transition: all .3s ease;
   padding: 0
}

.hero-dot.active {
   background: var(--gold);
   border-color: var(--gold);
   transform: scale(1.3)
}

.hero-dot:hover {
   border-color: var(--white)
}

.btn-hero {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 16px 40px;
   background: var(--gold);
   color: var(--white);
   font-size: 14px;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
   border: none;
   border-radius: 4px;
   transition: var(--transition)
}

.btn-hero:hover {
   background: var(--gold-dark);
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(200, 169, 110, 0.3)
}

/* =============================================
   PRODUCT CAROUSEL
   ============================================= */
.product-carousel-wrap {
   position: relative;
   padding: 0 50px
}

.product-carousel {
   overflow: hidden;
   border-radius: var(--radius)
}

.product-carousel::-webkit-scrollbar {
   display: none
}

.product-carousel-track {
   display: flex;
   gap: 20px;
   transition: transform .5s cubic-bezier(.4,0,.2,1);
   scroll-behavior: smooth
}

.product-carousel-item {
   min-width: calc(25% - 15px);
   flex-shrink: 0
}

.carousel-arrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   z-index: 5;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   border: 1px solid var(--border);
   background: var(--white);
   color: var(--text);
   font-size: 16px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all .3s ease;
   box-shadow: var(--shadow-sm)
}

.carousel-arrow:hover {
   background: var(--gold);
   color: var(--white);
   border-color: var(--gold);
   box-shadow: var(--shadow)
}

.carousel-arrow-left { left: 0 }
.carousel-arrow-right { right: 0 }

@media (max-width: 1024px) {
   .product-carousel-item { min-width: calc(33.333% - 14px) }
   .product-carousel-wrap { padding: 0 44px }
}

@media (max-width: 768px) {
   .product-carousel-item { min-width: calc(50% - 10px) }
   .hero-slider { height: 60vh; min-height: 400px }
   .hero-arrow { width: 36px; height: 36px; font-size: 14px }
   .hero-arrow-left { left: 12px }
   .hero-arrow-right { right: 12px }
   .hero-slide-content { padding: 0 20px }
   .product-carousel-wrap { padding: 0 36px }
   .carousel-arrow { width: 32px; height: 32px; font-size: 13px }
}

@media (max-width: 480px) {
   .product-carousel-item { min-width: calc(50% - 6px) }
   .product-carousel-track { gap: 12px }
   .hero-slider { height: 50vh; min-height: 350px }
   .hero-slide-content h1 { font-size: 28px }
   .product-carousel-wrap { padding: 0 28px }
}

/* =============================================
   SECTION TITLES
   ============================================= */
.section {
   padding: 80px 0
}

.section-header {
   text-align: center;
   margin-bottom: 48px
}

.section-header h2 {
   font-size: clamp(24px, 3vw, 36px);
   color: var(--text);
   margin-bottom: 8px
}

.section-header p {
   color: var(--text-light);
   font-size: 16px;
   max-width: 500px;
   margin: 0 auto
}

.section-header .gold-line {
   width: 60px;
   height: 2px;
   background: var(--gold);
   margin: 16px auto 0
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
   gap: 24px;
   transition: all .3s ease
}

.product-card {
   background: var(--white);
   border-radius: var(--radius-lg);
   overflow: hidden;
   transition: var(--transition);
   position: relative;
   border: 1px solid var(--border-light);
   display: flex;
   flex-direction: column;
   height: 100%
}

.product-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-lg);
   border-color: var(--gold)
}

.product-card-img {
   position: relative;
   width: 100%;
   padding-top: 133.33%;
   overflow: hidden;
   background: var(--bg-cream);
   display: block;
   flex-shrink: 0
}

.product-card-img img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .6s ease
}

.product-card:hover .product-card-img img {
   transform: scale(1.08)
}

.product-card-img img[loading="lazy"] {
   opacity: 0;
   transition: opacity .4s ease, transform .6s ease
}

.product-card-img img.loaded {
   opacity: 1
}

.product-badges {
   position: absolute;
   top: 12px;
   left: 12px;
   display: flex;
   flex-direction: column;
   gap: 6px;
   z-index: 2
}

.product-badge {
   padding: 5px 12px;
   font-size: 10px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .5px;
   border-radius: 4px
}

.product-badge.new {
   background: var(--text);
   color: var(--white)
}

.product-badge.sale {
   background: var(--error);
   color: var(--white)
}

.product-badge.bestseller {
   background: var(--gold);
   color: var(--white)
}

.product-card-actions {
   position: absolute;
   top: 12px;
   right: 12px;
   display: flex;
   flex-direction: column;
   gap: 8px;
   opacity: 0;
   transform: translateX(10px);
   transition: var(--transition);
   z-index: 2
}

.product-card:hover .product-card-actions {
   opacity: 1;
   transform: translateX(0)
}

.product-action-btn {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: var(--white);
   border: none;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   color: var(--text);
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   transition: var(--transition);
   cursor: pointer
}

.product-action-btn:hover {
   background: var(--gold);
   color: var(--white);
   transform: scale(1.1)
}

.product-action-btn.favorited {
   color: var(--error)
}

.product-quick-add {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   opacity: 0;
   transform: translateY(100%);
   transition: var(--transition);
   z-index: 2
}

.product-card:hover .product-quick-add {
   opacity: 1;
   transform: translateY(0)
}

.quick-add-btn {
   width: 100%;
   padding: 12px;
   background: rgba(26, 26, 26, 0.9);
   color: var(--white);
   border: none;
   font-size: 13px;
   font-weight: 600;
   letter-spacing: .5px;
   cursor: pointer;
   transition: var(--transition);
   font-family: var(--body);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px
}

.quick-add-btn:hover {
   background: var(--gold)
}

.product-card-info {
   padding: 16px 18px 20px;
   flex: 1;
   display: flex;
   flex-direction: column;
   min-height: 0
}

.product-card-category {
   font-size: 11px;
   color: var(--text-light);
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 6px
}

.product-card-title {
   font-family: var(--body);
   font-size: 14px;
   font-weight: 500;
   color: var(--text);
   margin-bottom: 10px;
   line-height: 1.4;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden
}

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

.product-card-price {
   display: flex;
   align-items: center;
   gap: 8px;
   flex-wrap: wrap;
   margin-top: auto
}

.product-price {
   font-size: 17px;
   font-weight: 700;
   color: var(--text)
}

.product-price-old {
   font-size: 13px;
   color: var(--text-muted);
   text-decoration: line-through
}

.product-price-discount {
   font-size: 11px;
   color: var(--error);
   font-weight: 600;
   background: rgba(199, 80, 80, 0.08);
   padding: 2px 6px;
   border-radius: 4px
}

.product-stock-warning {
   font-size: 12px;
   color: var(--error);
   margin-top: 8px;
   display: flex;
   align-items: center;
   gap: 4px;
   animation: pulse 2s infinite
}

@keyframes pulse {

   0%,
   100% {
      opacity: 1
   }

   50% {
      opacity: .5
   }
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
   gap: 20px
}

.category-card {
   position: relative;
   aspect-ratio: 1;
   border-radius: var(--radius-lg);
   overflow: hidden;
   cursor: pointer;
   transition: var(--transition)
}

.category-card:hover {
   transform: translateY(-4px)
}

.category-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .5s ease
}

.category-card:hover img {
   transform: scale(1.1)
}

.category-card-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(0deg, rgba(26, 26, 26, 0.7), transparent);
   display: flex;
   align-items: flex-end;
   padding: 20px
}

.category-card-overlay h3 {
   color: var(--white);
   font-size: 18px;
   font-weight: 600;
   letter-spacing: .5px
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 28px;
   border-radius: var(--radius);
   font-size: 14px;
   font-weight: 500;
   border: none;
   transition: var(--transition);
   font-family: var(--body);
   letter-spacing: .3px
}

.btn-primary {
   background: var(--gold);
   color: var(--white)
}

.btn-primary:hover {
   background: var(--gold-dark);
   transform: translateY(-1px)
}

.btn-secondary {
   background: var(--text);
   color: var(--white)
}

.btn-outline {
   background: transparent;
   border: 2px solid var(--gold);
   color: var(--gold)
}

.btn-outline:hover {
   background: var(--gold);
   color: var(--white)
}

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

.btn-lg {
   padding: 16px 36px;
   font-size: 16px
}

.btn-block {
   width: 100%
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
   background: var(--black);
   color: rgba(255, 255, 255, 0.6);
   padding: 60px 0 0
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
   margin-bottom: 40px
}

.footer-brand img {
   height: 50px;
   margin-bottom: 16px
}

.footer-brand p {
   font-size: 14px;
   line-height: 1.7;
   margin-bottom: 16px
}

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

.footer-social a {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.15);
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, 0.6);
   transition: var(--transition)
}

.footer-social a:hover {
   background: var(--gold);
   border-color: var(--gold);
   color: var(--white)
}

.footer h4 {
   color: var(--white);
   font-family: var(--body);
   font-size: 14px;
   font-weight: 600;
   margin-bottom: 20px;
   letter-spacing: .5px;
   text-transform: uppercase
}

.footer ul li {
   margin-bottom: 10px
}

.footer ul li a {
   font-size: 14px;
   transition: var(--transition)
}

.footer ul li a:hover {
   color: var(--gold);
   padding-left: 4px
}

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

.footer-payment {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 12px;
   margin-top: 8px;
   opacity: .5
}

/* =============================================
   FORMS (Public)
   ============================================= */
.form-group {
   margin-bottom: 18px
}

.form-group label {
   display: block;
   font-size: 13px;
   font-weight: 500;
   margin-bottom: 6px;
   color: var(--text)
}

.form-control {
   width: 100%;
   padding: 12px 16px;
   border: 1px solid var(--border);
   border-radius: var(--radius);
   font-size: 14px;
   font-family: var(--body);
   transition: var(--transition);
   background: var(--white)
}

.form-control:focus {
   outline: none;
   border-color: var(--gold);
   box-shadow: 0 0 0 3px var(--gold-light)
}

.form-error {
   color: var(--error);
   font-size: 12px;
   margin-top: 4px
}

.form-hint {
   color: var(--text-light);
   font-size: 12px;
   margin-top: 4px
}

.password-wrapper {
   position: relative
}

.password-wrapper .form-control {
   padding-right: 48px
}

.password-toggle {
   position: absolute;
   right: 1px;
   top: 1px;
   bottom: 1px;
   width: 44px;
   background: transparent;
   border: none;
   color: var(--text-light);
   font-size: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   border-radius: 0 var(--radius) var(--radius) 0;
   transition: var(--transition)
}

.password-toggle:hover {
   color: var(--gold)
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
   padding: 16px 0;
   font-size: 13px;
   color: var(--text-light)
}

.breadcrumb a {
   color: var(--text-light);
   transition: color .2s
}

.breadcrumb a:hover {
   color: var(--gold)
}

.breadcrumb span {
   margin: 0 8px;
   opacity: .5
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width:1024px) {
   .navbar-nav {
      display: none
   }

   .navbar-hamburger {
      display: block
   }

   .mobile-menu {
      display: block
   }

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

   .hero {
      height: 60vh
   }

   .topbar-strip .topbar-left span:not(:first-child),
   .topbar-divider:first-of-type {
      display: none
   }
}

@media(max-width:768px) {
   .section {
      padding: 48px 0
   }

   .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px
   }

   .product-card-info {
      padding: 12px
   }

   .product-card-title {
      font-size: 13px
   }

   .product-price {
      font-size: 15px
   }

   .hero {
      height: 50vh;
      min-height: 400px
   }

   .hero-content {
      padding: 0 20px
   }

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

@media(max-width:480px) {
   .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px
   }

   .product-card-info {
      padding: 10px
   }

   .container {
      padding: 0 16px
   }

   .hero-content h1 {
      font-size: 28px
   }
}

/* Lazy loading animation */
.lazy-load {
   opacity: 0;
   transition: opacity .4s ease
}

.lazy-load.loaded {
   opacity: 1
}

/* Alert Messages (public) */
.alert-box {
   padding: 14px 20px;
   border-radius: var(--radius);
   margin-bottom: 20px;
   font-size: 14px;
   display: flex;
   align-items: center;
   gap: 10px
}

.alert-box.success {
   background: rgba(90, 168, 103, 0.1);
   color: #3D7A4A;
   border: 1px solid rgba(90, 168, 103, 0.2)
}

.alert-box.error {
   background: rgba(199, 80, 80, 0.1);
   color: #A03030;
   border: 1px solid rgba(199, 80, 80, 0.2)
}

.alert-box.warning {
   background: rgba(232, 160, 50, 0.1);
   color: #8A6A20;
   border: 1px solid rgba(232, 160, 50, 0.2)
}

/* Page Header */
.page-hero {
   background: var(--bg-nude);
   padding: 48px 0;
   text-align: center
}

.page-hero h1 {
   font-size: clamp(24px, 4vw, 40px);
   margin-bottom: 8px
}

.page-hero p {
   color: var(--text-light);
   font-size: 16px
}

/* Scroll to top */
.scroll-top {
   position: fixed;
   bottom: 24px;
   right: 24px;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--gold);
   color: var(--white);
   border: none;
   display: none;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   box-shadow: var(--shadow);
   z-index: 100;
   transition: var(--transition)
}

.scroll-top.visible {
   display: flex
}

.scroll-top:hover {
   background: var(--gold-dark);
   transform: translateY(-2px)
}

.topbar-strip-inner {
   display: flex;
   justify-content: center;
   align-items: center;
}

.topbar-left {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 12px;
   text-align: center;
}

.topbar-strip-inner {
   display: flex;
   justify-content: center;
   align-items: center;
}

.topbar-left {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 12px;
   text-align: center;
}

@media (max-width: 576px) {
   .topbar-left {
      flex-wrap: wrap;
      gap: 6px;
      font-size: 13px;
   }

   .topbar-divider {
      display: none;
   }
}

/* =============================================
   POPUP MODAL
   ============================================= */
.popup-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: 5000;
   align-items: center;
   justify-content: center;
}
.popup-overlay.active {
   display: flex;
   animation: fadeIn .3s ease;
}
.popup-overlay.closing {
   animation: fadeOut .3s ease;
}
.popup-modal {
   background: var(--white);
   border-radius: var(--radius-lg);
   max-width: 480px;
   width: 90%;
   overflow: hidden;
   position: relative;
   box-shadow: 0 20px 60px rgba(0,0,0,0.3);
   animation: slideUp .4s ease;
}
.popup-close {
   position: absolute;
   top: 12px;
   right: 12px;
   background: rgba(255,255,255,0.9);
   border: none;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   font-size: 16px;
   color: var(--text);
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   z-index: 2;
   transition: var(--transition);
}
.popup-close:hover {
   background: var(--error);
   color: var(--white);
}
.popup-image {
   width: 100%;
   max-height: 300px;
   object-fit: cover;
}
.popup-content {
   padding: 28px;
   text-align: center;
}
.popup-content h3 {
   font-size: 22px;
   margin-bottom: 10px;
   color: var(--text);
}
.popup-content p {
   font-size: 14px;
   color: var(--text-light);
   line-height: 1.7;
   margin-bottom: 20px;
}
.popup-btn {
   display: inline-flex;
   padding: 12px 32px;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeOut { from{opacity:1} to{opacity:0} }
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* =============================================
   QUICK VIEW MODAL
   ============================================= */
.qv-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0,0,0,0.5);
   backdrop-filter: blur(4px);
   z-index: 9998;
   opacity: 0;
   visibility: hidden;
   transition: all .3s ease
}

.qv-overlay.open {
   opacity: 1;
   visibility: visible
}

.qv-modal {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) scale(0.9);
   z-index: 9999;
   background: var(--white);
   border-radius: 16px;
   width: 90%;
   max-width: 680px;
   max-height: 90vh;
   overflow-y: auto;
   box-shadow: 0 25px 60px rgba(0,0,0,0.2);
   opacity: 0;
   visibility: hidden;
   transition: all .35s cubic-bezier(.4,0,.2,1)
}

.qv-modal.open {
   opacity: 1;
   visibility: visible;
   transform: translate(-50%, -50%) scale(1)
}

.qv-close {
   position: absolute;
   top: 12px;
   right: 12px;
   z-index: 5;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   border: none;
   background: var(--bg-cream);
   color: var(--text);
   font-size: 16px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all .2s ease
}

.qv-close:hover {
   background: var(--error);
   color: var(--white)
}

.qv-loading {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 60px;
   font-size: 15px;
   color: var(--text-light)
}

.qv-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0
}

.qv-image {
   position: relative;
   border-radius: 16px 0 0 16px;
   overflow: hidden;
   background: var(--bg-cream);
   aspect-ratio: 3/4
}

.qv-image img {
   width: 100%;
   height: 100%;
   object-fit: cover
}

.qv-discount-badge {
   position: absolute;
   top: 12px;
   left: 12px;
   background: var(--error);
   color: #fff;
   padding: 4px 10px;
   border-radius: 4px;
   font-size: 12px;
   font-weight: 700
}

.qv-info {
   padding: 28px 24px;
   display: flex;
   flex-direction: column;
   gap: 12px
}

.qv-category {
   font-size: 11px;
   color: var(--text-light);
   text-transform: uppercase;
   letter-spacing: 1.5px
}

.qv-name {
   font-family: var(--heading);
   font-size: 20px;
   font-weight: 700;
   line-height: 1.3;
   color: var(--text);
   margin: 0
}

.qv-price-block {
   display: flex;
   align-items: baseline;
   gap: 10px
}

.qv-price {
   font-size: 24px;
   font-weight: 700;
   color: var(--text)
}

.qv-price-old {
   font-size: 16px;
   color: var(--text-muted);
   text-decoration: line-through
}

.qv-option-group {
   margin-top: 4px
}

.qv-option-group > label {
   display: block;
   font-size: 13px;
   color: var(--text);
   margin-bottom: 6px
}

.qv-colors {
   display: flex;
   gap: 8px;
   flex-wrap: wrap
}

.qv-color-btn {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   border: 2px solid transparent;
   cursor: pointer;
   transition: all .2s ease;
   padding: 0
}

.qv-color-btn.selected {
   border-color: var(--gold);
   box-shadow: 0 0 0 2px var(--gold)
}

.qv-color-btn:hover {
   transform: scale(1.15)
}

.qv-sizes {
   display: flex;
   gap: 8px;
   flex-wrap: wrap
}

.qv-size-btn {
   min-width: 44px;
   height: 36px;
   border: 1px solid var(--border);
   border-radius: 6px;
   background: var(--white);
   font-size: 13px;
   font-weight: 500;
   cursor: pointer;
   transition: all .2s ease;
   padding: 0 10px
}

.qv-size-btn:hover {
   border-color: var(--gold)
}

.qv-size-btn.selected {
   background: var(--gold);
   color: var(--white);
   border-color: var(--gold)
}

.qv-size-btn.out-of-stock {
   opacity: .35;
   cursor: not-allowed;
   text-decoration: line-through
}

.qv-qty {
   display: flex;
   align-items: center;
   border: 1px solid var(--border);
   border-radius: 8px;
   overflow: hidden;
   width: fit-content
}

.qv-qty button {
   width: 36px;
   height: 36px;
   border: none;
   background: var(--bg-cream);
   font-size: 16px;
   cursor: pointer;
   transition: all .2s ease
}

.qv-qty button:hover {
   background: var(--gold);
   color: var(--white)
}

.qv-qty input {
   width: 44px;
   height: 36px;
   border: none;
   text-align: center;
   font-size: 15px;
   font-weight: 600;
   font-family: var(--body)
}

.qv-add-btn {
   margin-top: 8px;
   height: 48px;
   font-size: 15px;
   font-weight: 600
}

.qv-detail-link {
   text-align: center;
   font-size: 13px;
   color: var(--text-light);
   transition: color .2s
}

.qv-detail-link:hover {
   color: var(--gold)
}

@media (max-width: 600px) {
   .qv-content { grid-template-columns: 1fr }
   .qv-image { border-radius: 16px 16px 0 0; aspect-ratio: 1/1; max-height: 280px }
   .qv-modal { max-width: 95%; max-height: 95vh }
   .qv-info { padding: 20px 16px }
}

/* =============================================
   CART SIDEBAR DRAWER
   ============================================= */
.cart-sidebar-backdrop {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(26, 26, 26, 0.5);
   backdrop-filter: blur(4px);
   -webkit-backdrop-filter: blur(4px);
   z-index: 4000;
   opacity: 0;
   visibility: hidden;
   transition: all .35s cubic-bezier(.4,0,.2,1)
}

.cart-sidebar-backdrop.open {
   opacity: 1;
   visibility: visible
}

.cart-sidebar {
   position: fixed;
   top: 0;
   right: 0;
   width: 420px;
   max-width: 92vw;
   height: 100vh;
   height: 100dvh;
   background: var(--white);
   z-index: 4001;
   display: flex;
   flex-direction: column;
   transform: translateX(100%);
   transition: transform .4s cubic-bezier(.4,0,.2,1);
   box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15)
}

.cart-sidebar.open {
   transform: translateX(0)
}

/* Header */
.cart-sidebar-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 24px;
   border-bottom: 1px solid var(--border-light);
   background: var(--white);
   flex-shrink: 0
}

.cart-sidebar-header h3 {
   font-family: var(--body);
   font-size: 16px;
   font-weight: 700;
   color: var(--text);
   display: flex;
   align-items: center;
   gap: 10px;
   margin: 0
}

.cart-sidebar-header h3 i {
   color: var(--gold);
   font-size: 18px
}

.cart-sidebar-close {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   border: 1px solid var(--border-light);
   background: var(--white);
   color: var(--text);
   font-size: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: var(--transition)
}

.cart-sidebar-close:hover {
   background: var(--text);
   color: var(--white);
   border-color: var(--text)
}

/* Body - Scrollable items area */
.cart-sidebar-body {
   flex: 1;
   overflow-y: auto;
   overflow-x: hidden;
   padding: 0;
   scrollbar-width: thin;
   scrollbar-color: var(--border) transparent
}

.cart-sidebar-body::-webkit-scrollbar {
   width: 4px
}

.cart-sidebar-body::-webkit-scrollbar-thumb {
   background: var(--border);
   border-radius: 4px
}

/* Empty state */
.cart-sidebar-empty {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 60px 24px;
   text-align: center
}

.cart-sidebar-empty > i {
   font-size: 52px;
   color: var(--border);
   margin-bottom: 16px
}

.cart-sidebar-empty p {
   color: var(--text-light);
   font-size: 15px;
   margin-bottom: 20px
}

/* Cart Item */
.cart-sidebar-item {
   display: flex;
   gap: 14px;
   padding: 16px 24px;
   border-bottom: 1px solid var(--border-light);
   position: relative;
   transition: background .2s ease;
   animation: cartItemIn .35s ease forwards
}

@keyframes cartItemIn {
   from { opacity: 0; transform: translateX(20px) }
   to { opacity: 1; transform: translateX(0) }
}

.cart-sidebar-item:hover {
   background: var(--bg-cream)
}

.cart-sidebar-item-img {
   width: 80px;
   height: 90px;
   border-radius: 10px;
   overflow: hidden;
   flex-shrink: 0;
   background: var(--bg-cream);
   border: 1px solid var(--border-light)
}

.cart-sidebar-item-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .3s ease
}

.cart-sidebar-item:hover .cart-sidebar-item-img img {
   transform: scale(1.05)
}

.cart-sidebar-item-info {
   flex: 1;
   min-width: 0;
   display: flex;
   flex-direction: column;
   justify-content: space-between
}

.cart-sidebar-item-name {
   font-size: 13px;
   font-weight: 600;
   color: var(--text);
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
   line-height: 1.4;
   margin-bottom: 2px;
   text-decoration: none
}

.cart-sidebar-item-name:hover {
   color: var(--gold)
}

.cart-sidebar-item-meta {
   font-size: 11px;
   color: var(--text-light);
   display: flex;
   gap: 8px;
   margin-bottom: 6px
}

.cart-sidebar-item-meta span {
   background: var(--bg-nude);
   padding: 2px 8px;
   border-radius: 4px;
   font-weight: 500
}

.cart-sidebar-item-bottom {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 8px
}

.cart-sidebar-qty {
   display: flex;
   align-items: center;
   gap: 0;
   border: 1px solid var(--border);
   border-radius: 6px;
   overflow: hidden
}

.cart-sidebar-qty button {
   width: 28px;
   height: 28px;
   border: none;
   background: var(--bg-cream);
   color: var(--text);
   font-size: 14px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition)
}

.cart-sidebar-qty button:hover {
   background: var(--gold);
   color: var(--white)
}

.cart-sidebar-qty span {
   width: 30px;
   text-align: center;
   font-size: 13px;
   font-weight: 600;
   color: var(--text);
   background: var(--white)
}

.cart-sidebar-item-prices {
   text-align: right;
   min-width: 70px
}

.cart-sidebar-item-price {
   font-size: 14px;
   font-weight: 700;
   color: var(--text)
}

.cart-sidebar-item-price-old {
   font-size: 11px;
   color: var(--text-muted);
   text-decoration: line-through;
   display: block
}

.cart-sidebar-item-remove {
   position: absolute;
   top: 12px;
   right: 16px;
   width: 24px;
   height: 24px;
   border-radius: 50%;
   border: none;
   background: transparent;
   color: var(--text-muted);
   font-size: 12px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
   opacity: 0
}

.cart-sidebar-item:hover .cart-sidebar-item-remove {
   opacity: 1
}

.cart-sidebar-item-remove:hover {
   background: rgba(199, 80, 80, 0.1);
   color: var(--error)
}

/* Footer */
.cart-sidebar-footer {
   padding: 20px 24px 24px;
   border-top: 1px solid var(--border-light);
   background: var(--white);
   flex-shrink: 0
}

/* Shipping progress bar */
.cart-sidebar-shipping-bar {
   height: 4px;
   background: var(--border-light);
   border-radius: 4px;
   overflow: hidden;
   margin-bottom: 8px
}

.shipping-bar-fill {
   height: 100%;
   background: linear-gradient(90deg, var(--gold), var(--success));
   border-radius: 4px;
   transition: width .6s cubic-bezier(.4,0,.2,1);
   width: 0
}

.cart-sidebar-shipping-text {
   font-size: 12px;
   color: var(--text-light);
   text-align: center;
   margin-bottom: 16px;
   line-height: 1.5
}

.cart-sidebar-shipping-text strong {
   color: var(--gold);
   font-weight: 600
}

.cart-sidebar-shipping-text .free-ship-icon {
   color: var(--success)
}

/* Totals */
.cart-sidebar-totals {
   margin-bottom: 16px
}

.cart-sidebar-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 6px 0;
   font-size: 13px;
   color: var(--text-light)
}

.cart-sidebar-total-row {
   border-top: 2px solid var(--border);
   padding-top: 12px;
   margin-top: 4px;
   font-size: 16px;
   font-weight: 700;
   color: var(--text)
}

.cart-sidebar-total-row span:last-child {
   color: var(--gold);
   font-size: 18px
}

/* Buttons */
.cart-sidebar-checkout-btn {
   padding: 14px 24px;
   font-size: 14px;
   font-weight: 600;
   letter-spacing: .3px;
   border-radius: var(--radius);
   transition: all .3s ease;
   text-transform: none
}

.cart-sidebar-checkout-btn:hover {
   transform: translateY(-1px);
   box-shadow: 0 6px 20px rgba(200, 169, 110, 0.35)
}

.cart-sidebar-viewcart-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
   margin-top: 10px;
   padding: 10px;
   font-size: 13px;
   font-weight: 500;
   color: var(--text-light);
   text-align: center;
   border: 1px solid var(--border-light);
   border-radius: var(--radius);
   transition: var(--transition)
}

.cart-sidebar-viewcart-btn:hover {
   color: var(--gold);
   border-color: var(--gold)
}

/* Body scroll lock */
body.cart-sidebar-open {
   overflow: hidden
}

/* Responsive */
@media (max-width: 480px) {
   .cart-sidebar {
      width: 100vw;
      max-width: 100vw
   }

   .cart-sidebar-item {
      padding: 14px 16px
   }

   .cart-sidebar-footer {
      padding: 16px
   }

   .cart-sidebar-item-img {
      width: 65px;
      height: 75px
   }
}