/* ============================================================
   Khidmat Shoes — Design System & Styles
   ============================================================ */

/* ── CSS Variables ── */
:root {
   --primary: #0A2213;
   --primary-light: #164024;
   --accent: #FF6A00;
   --accent-dark: #E65100;
   --light-bg: #FAFAFA;
   --white: #ffffff;
   --text: #222222;
   --text-color: #222222;
   --text-light: #777777;
   --text-muted: #adb5bd;
   --border: #E5E5E5;
   --success: #2d6a4f;
   --warning: #f4a261;
   --danger: #e63946;
   --info: #457b9d;
   --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
   --shadow-md: 0 4px 15px rgba(0, 0, 0, .08);
   --shadow-lg: 0 8px 30px rgba(0, 0, 0, .05);
   --radius-sm: 0;
   --radius-md: 0;
   --radius-lg: 0;
   --transition: .3s cubic-bezier(.4, 0, .2, 1);
   --font-body: 'Outfit', sans-serif;
   --font-heading: 'Playfair Display', serif;
   --container: 1340px;
   --header-h: 70px;
}

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

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

body {
   font-family: var(--font-body);
   color: var(--text);
   background: var(--light-bg);
   line-height: 1.7;
   font-size: 16px;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale
}

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

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

ul,
ol {
   list-style: none
}

button,
input,
select,
textarea {
   font-family: inherit;
   font-size: inherit;
   border: none;
   outline: none
}

button {
   cursor: pointer
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-heading);
   font-weight: 600;
   line-height: 1.15;
   color: var(--text)
}

h1 {
   font-size: clamp(2rem, 4vw, 3.5rem)
}

h2 {
   font-size: clamp(1.6rem, 3vw, 2.5rem)
}

h3 {
   font-size: clamp(1.3rem, 2.5vw, 1.8rem)
}

h4 {
   font-size: 1.15rem;
   font-family: var(--font-body);
   font-weight: 600
}

p {
   margin-bottom: .8rem
}

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

.grid {
   display: grid;
   gap: 24px
}

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

.grid-3 {
   grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
   grid-template-columns: repeat(4, 1fr)
}

.flex {
   display: flex;
   align-items: center
}

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

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

.text-center {
   text-align: center
}

.section {
   padding: 60px 0
}

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

.section-title h2 {
   margin-bottom: 8px
}

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

/* ── Buttons ── */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 15px 40px;
   border-radius: 0;
   font-weight: 500;
   font-size: .8rem;
   transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
   letter-spacing: 2px;
   border: 1px solid transparent;
   text-transform: uppercase;
   font-family: var(--font-body);
}

.btn:active {
   transform: scale(0.98);
}

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

.btn-primary:hover {
   background: #000;
   border-color: #000;
   transform: translateY(-2px);
}

.btn-accent {
   background: var(--accent);
   color: var(--white);
   border-color: var(--accent);
}

.btn-accent:hover {
   background: var(--accent-dark);
   border-color: var(--accent-dark);
   transform: translateY(-2px);
}

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

.btn-outline:hover {
   background: var(--text);
   color: var(--white);
   transform: translateY(-2px);
}

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

.btn-white:hover {
   background: var(--light-bg);
   transform: translateY(-2px);
}

.btn-sm {
   padding: 10px 22px;
   font-size: .75rem;
   letter-spacing: 1.5px;
}

.btn-lg {
   padding: 18px 50px;
   font-size: .85rem
}

.btn-block {
   width: 100%
}

.btn-icon {
   width: 42px;
   height: 42px;
   padding: 0;
   border-radius: 50%
}

/* ── Alerts ── */
.alert {
   padding: 14px 20px;
   border-radius: var(--radius-sm);
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   font-size: .9rem;
   animation: slideDown .3s ease
}

.alert-success {
   background: #d4edda;
   color: #155724;
   border: 1px solid #c3e6cb
}

.alert-error {
   background: #f8d7da;
   color: #721c24;
   border: 1px solid #f5c6cb
}

.alert-warning {
   background: #fff3cd;
   color: #856404;
   border: 1px solid #ffeeba
}

.alert-info {
   background: #d1ecf1;
   color: #0c5460;
   border: 1px solid #bee5eb
}

.alert-close {
   background: none;
   font-size: 1.2rem;
   cursor: pointer;
   opacity: .6
}

.alert-close:hover {
   opacity: 1
}

/* ── Form Elements ── */
.form-group {
   margin-bottom: 20px
}

.form-group label {
   display: block;
   font-weight: 600;
   margin-bottom: 6px;
   font-size: .88rem;
   color: var(--primary)
}

.form-control {
   width: 100%;
   padding: 12px 16px;
   border: 1.5px solid var(--border);
   border-radius: var(--radius-sm);
   font-size: .95rem;
   background: var(--white);
   transition: border-color var(--transition), box-shadow var(--transition)
}

.form-control:focus {
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(17, 17, 17, .08)
}

textarea.form-control {
   resize: vertical;
   min-height: 100px
}

select.form-control {
   appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 14px center;
   padding-right: 36px
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px
}

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

/* ── Badges ── */
.badge {
   display: inline-block;
   padding: 4px 10px;
   border-radius: 20px;
   font-size: .75rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: .5px
}

.badge-success {
   background: #d4edda;
   color: #155724
}

.badge-warning {
   background: #fff3cd;
   color: #856404
}

.badge-danger {
   background: #f8d7da;
   color: #721c24
}

.badge-info {
   background: #d1ecf1;
   color: #0c5460
}

.badge-primary {
   background: #111;
   color: #fff
}

/* ══════════════════════════════
/* ══════════════════════════════
   HEADER
   ══════════════════════════════ */
/* ==========================================================
   3-TIER HEADER (BIGBOONSTORE REFERENCE)
   ========================================================== */

/* ══════════════════════════════
   BOUTIQUE HEADER SYSTEM
   ══════════════════════════════ */

/* Announcement Bar */
.announcement-bar {
   background: var(--primary);
   color: rgba(255, 255, 255, 0.9);
   font-size: 0.75rem;
   padding: 10px 0;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   font-weight: 400;
   text-align: center;
}

.announcement-content span {
   display: inline-block;
}

/* Boutique Header */
.header-boutique {
   background: var(--white);
   padding: 22px 0;
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 1050;
   transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header-boutique.scrolled {
   box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
   padding: 16px 0;
}

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

/* Left Nav */
.header-nav-left ul,
.header-nav-right ul {
   display: flex;
   align-items: center;
   gap: 28px;
   list-style: none;
}

.header-nav-left li,
.header-nav-right li {
   position: relative;
}

.header-nav-left a,
.header-nav-right a {
   font-family: var(--font-body);
   font-size: 0.8rem;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   color: var(--text);
   position: relative;
   padding: 8px 0;
   transition: color 0.3s ease;
}

.header-nav-left a::after,
.header-nav-right a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 1px;
   background: var(--text);
   transition: width 0.3s ease;
}

.header-nav-left a:hover::after,
.header-nav-right a:hover::after {
   width: 100%;
}

.header-nav-left a:hover,
.header-nav-right a:hover {
   color: var(--text);
}

/* Center Logo (Boutique) */
.logo-boutique {
   font-family: var(--font-heading);
   font-size: 2.4rem;
   font-weight: 600;
   color: var(--text);
   text-decoration: none;
   letter-spacing: 1px;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   white-space: nowrap;
}

.logo-reg {
   font-size: 0.3em;
   vertical-align: super;
   font-family: var(--font-body);
   color: var(--text-light);
}

/* Right Group */
.header-right-group {
   display: flex;
   align-items: center;
   gap: 28px;
}

/* Icon Utilities */
.header-icons {
   display: flex;
   align-items: center;
   gap: 20px;
}

.header-icon {
   color: var(--text);
   font-size: 1.1rem;
   transition: opacity 0.3s ease;
   position: relative;
}

.header-icon:hover {
   opacity: 0.5;
}

.cart-icon-boutique {
   position: relative;
}

.cart-badge {
   position: absolute;
   top: -6px;
   right: -8px;
   background: var(--text);
   color: var(--white);
   font-size: 0.6rem;
   width: 16px;
   height: 16px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
}

/* Mega Menu (Boutique) */
.mega-menu {
   position: absolute;
   top: 100%;
   left: -30px;
   width: 500px;
   background: var(--white);
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
   padding: 35px 40px;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 30px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   pointer-events: none;
   border-top: 2px solid var(--text);
   z-index: 1100;
}

.header-nav-left li:hover .mega-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
   pointer-events: all;
}

.mega-menu h4 {
   font-family: var(--font-body);
   font-size: .7rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--text-light);
   margin-bottom: 18px;
   padding-bottom: 10px;
   border-bottom: 1px solid var(--border);
}

.mega-menu a {
   display: block;
   padding: 7px 0;
   font-size: .85rem;
   color: var(--text);
   text-transform: none;
   letter-spacing: 0;
   transition: all var(--transition);
}

.mega-menu a::after {
   display: none;
}

.mega-menu a:hover {
   color: var(--text-light);
   padding-left: 8px;
}

/* Search Overlay */
.search-overlay {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(255, 255, 255, 0.98);
   z-index: 2000;
   display: none;
   align-items: flex-start;
   justify-content: center;
   padding-top: 150px;
}

.search-overlay.active {
   display: flex;
}

.search-overlay-inner {
   width: 100%;
   max-width: 700px;
   position: relative;
}

.search-overlay-inner form {
   display: flex;
   border-bottom: 2px solid var(--text);
}

.search-overlay-inner input {
   width: 100%;
   padding: 20px 0;
   font-size: 1.4rem;
   font-family: var(--font-body);
   background: transparent;
   border: none;
   outline: none;
   letter-spacing: 0.5px;
}

.search-overlay-inner button {
   background: none;
   font-size: 1.3rem;
   color: var(--text);
   padding: 0 10px;
   cursor: pointer;
}

.search-close {
   position: absolute;
   top: -80px;
   right: 0;
   background: none;
   border: none;
   font-size: 1.5rem;
   cursor: pointer;
   color: var(--text);
}

/* Search Dropdown (reused) */
.search-results-dropdown {
   position: absolute;
   top: calc(100% + 4px);
   left: 0;
   right: 0;
   background: var(--white);
   box-shadow: var(--shadow-lg);
   max-height: 400px;
   overflow-y: auto;
   z-index: 1000;
   display: none;
   border: 1px solid var(--border);
}

.search-results-dropdown.active {
   display: block;
}

.search-item {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px 16px;
   transition: background var(--transition);
   border-bottom: 1px solid var(--light-bg);
}

.search-item:last-child {
   border-bottom: none;
}

.search-item:hover {
   background: var(--light-bg);
}

.search-item img {
   width: 50px;
   height: 50px;
   object-fit: cover;
}

.search-item-info h4 {
   font-size: .9rem;
   font-weight: 500;
   margin-bottom: 2px;
   color: var(--text);
   font-family: var(--font-body);
}

.search-item-info span {
   font-size: .85rem;
   color: var(--text-light);
   font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
   display: none;
   flex-direction: column;
   gap: 5px;
   background: none;
   padding: 6px;
   cursor: pointer;
   border: none;
}

.menu-toggle span {
   width: 22px;
   height: 1.5px;
   background: var(--text);
   transition: all var(--transition);
}

/* ══════════════════════════════
   HERO SLIDER
   ══════════════════════════════ */
.hero {
   position: relative;
   overflow: hidden;
   background: var(--primary)
}

.hero-slides {
   display: flex;
   transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.hero-slide {
   min-width: 100%;
   position: relative;
   padding: 80px 0;
   min-height: 500px;
   display: flex;
   align-items: center
}

.hero-slide::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 100%);
   z-index: 1
}

.hero-slide .hero-bg {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover
}

.hero-content {
   position: relative;
   z-index: 2;
   color: var(--white);
   max-width: 550px
}

.hero-content .subtitle {
   font-size: .9rem;
   text-transform: uppercase;
   letter-spacing: 3px;
   color: var(--accent);
   margin-bottom: 12px;
   font-weight: 600
}

.hero-content h1 {
   font-size: clamp(2rem, 5vw, 3.5rem);
   margin-bottom: 16px;
   line-height: 1.1;
   color: var(--white)
}

.hero-content p {
   font-size: 1.05rem;
   opacity: .85;
   margin-bottom: 28px;
   max-width: 420px
}

.hero-content .btn {
   margin-right: 12px
}

.hero-dots {
   position: absolute;
   bottom: 24px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 3;
   display: flex;
   gap: 10px
}

.hero-dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: rgba(255, 255, 255, .4);
   cursor: pointer;
   transition: all var(--transition)
}

.hero-dot.active {
   background: var(--accent);
   width: 30px;
   border-radius: 6px
}

.hero-arrows {
   position: absolute;
   top: 50%;
   z-index: 3;
   width: 100%;
   display: flex;
   justify-content: space-between;
   padding: 0 20px;
   transform: translateY(-50%);
   pointer-events: none
}

.hero-arrow {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: rgba(255, 255, 255, .15);
   backdrop-filter: blur(4px);
   color: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   pointer-events: all;
   transition: all var(--transition);
   border: none
}

.hero-arrow:hover {
   background: var(--accent)
}

/* ══════════════════════════════
   V2 EDITORIAL HOMEPAGE SYSTEM
   ══════════════════════════════ */

/* Section Defaults */
.section-luxury {
   padding: 120px 0;
}

.section-heading-luxury {
   text-align: center;
   margin-bottom: 70px;
}

.section-heading-luxury h2 {
   font-family: var(--font-heading);
   font-size: 2.8rem;
   font-weight: 500;
   color: var(--text);
   margin-bottom: 12px;
   letter-spacing: -0.5px;
}

.section-heading-luxury p {
   font-family: var(--font-body);
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--text-light);
}

/* ── Editorial Hero ── */
.hero-editorial {
   position: relative;
   min-height: 90vh;
   background-color: var(--primary);
   overflow: hidden;
}

.hero-slides {
   display: flex;
   height: 100%;
   width: 100%;
   transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
   min-width: 100%;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.hero-dots {
   position: absolute;
   bottom: 40px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 10;
   display: flex;
   gap: 12px;
}

.hero-dot {
   width: 40px;
   height: 2px;
   background: rgba(255, 255, 255, 0.3);
   cursor: pointer;
   transition: all 0.4s ease;
}

.hero-dot.active {
   background: var(--white);
}

.hero-arrows {
   position: absolute;
   top: 50%;
   z-index: 10;
   width: 100%;
   display: flex;
   justify-content: space-between;
   padding: 0 40px;
   transform: translateY(-50%);
   pointer-events: none;
}

.hero-arrow {
   width: 50px;
   height: 50px;
   background: var(--white);
   color: var(--text);
   border: none;
   border-radius: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   pointer-events: all;
   transition: all 0.4s ease;
   font-size: 1.2rem;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-arrow:hover {
   background: var(--accent);
   color: var(--white);
   transform: scale(1.05);
}

.hero-overlay-editorial {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 100%);
   z-index: 1;
}

.hero-editorial-inner {
   position: relative;
   z-index: 2;
   text-align: left;
   padding: 60px 20px;
}

.hero-editorial-content {
   max-width: 650px;
}

.hero-editorial-badge {
   display: inline-block;
   font-family: var(--font-body);
   font-size: 0.7rem;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 4px;
   color: rgba(255, 255, 255, 0.85);
   margin-bottom: 30px;
   position: relative;
   padding-bottom: 20px;
}

.hero-editorial-badge::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 40px;
   height: 1px;
   background: rgba(255, 255, 255, 0.5);
}

.hero-editorial-title {
   font-family: var(--font-heading);
   color: #fff;
   margin-bottom: 50px;
   line-height: 1.05;
}

.hero-editorial-title em {
   font-style: italic;
   font-weight: 400;
   font-size: clamp(2.5rem, 5vw, 4.5rem);
   display: block;
   margin-bottom: 5px;
}

.hero-editorial-title span {
   font-family: var(--font-body);
   font-weight: 700;
   font-size: clamp(2rem, 5vw, 4rem);
   text-transform: uppercase;
   letter-spacing: 12px;
   display: block;
}

.hero-editorial-ctas {
   display: flex;
   gap: 16px;
   justify-content: flex-start;
}

.hero-editorial-ctas .btn {
   min-width: 180px;
}

.hero-editorial-ctas .btn-primary {
   background: var(--white);
   color: var(--text);
   border-color: var(--white);
   font-weight: 700;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-editorial-ctas .btn-primary:hover {
   background: var(--accent);
   color: var(--white);
   border-color: var(--accent);
   transform: translateY(-2px);
}

/* ── Trust Bar ── */
.trust-bar {
   background: var(--white);
   border-bottom: 1px solid var(--border);
   padding: 30px 0;
}

.trust-bar-inner {
   display: flex;
   justify-content: center;
   gap: 60px;
}

.trust-bar-item {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   color: var(--text-light);
   font-weight: 500;
}

.trust-bar-item i {
   font-size: 1rem;
   color: var(--text);
}

/* ── Lifestyle Category Cards ── */
.category-lifestyle-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
}

.category-lifestyle-grid .category-lifestyle-card:nth-child(4),
.category-lifestyle-grid .category-lifestyle-card:nth-child(5) {
   grid-column: span 1;
}

/* If only 5 items, first 3 top, bottom row: 2 items spanning more */
.category-lifestyle-grid:has(> :nth-child(5)) .category-lifestyle-card:nth-child(4) {
   grid-column: 1 / 2;
}

.category-lifestyle-grid:has(> :nth-child(5)) .category-lifestyle-card:nth-child(5) {
   grid-column: 2 / 4;
}

.category-lifestyle-card {
   position: relative;
   overflow: hidden;
   aspect-ratio: 4/3;
   display: block;
}

.category-lifestyle-img {
   width: 100%;
   height: 100%;
}

.category-lifestyle-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-lifestyle-card:hover .category-lifestyle-img img {
   transform: scale(1.05);
}

.category-lifestyle-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 30px;
   transition: background 0.3s ease;
}

.category-lifestyle-overlay h3 {
   font-family: var(--font-heading);
   color: #fff;
   font-size: 1.5rem;
   font-weight: 500;
   margin-bottom: 8px;
}

.category-lifestyle-cta {
   font-family: var(--font-body);
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: rgba(255, 255, 255, 0.8);
   transition: color 0.3s ease;
}

.category-lifestyle-card:hover .category-lifestyle-cta {
   color: #fff;
}

/* ── Editorial Product Card ── */
.product-grid-editorial {
   gap: 20px;
}

.product-card-editorial {
   background: transparent;
}

.product-card-media {
   position: relative;
   background: #F5F5F5;
   aspect-ratio: 3/4;
   overflow: hidden;
}

.product-card-media img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   mix-blend-mode: multiply;
   transition: transform 0.5s ease;
   padding: 20px;
}

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

.product-badge-editorial {
   position: absolute;
   top: 12px;
   left: 12px;
   background: var(--text);
   color: var(--white);
   font-size: 0.65rem;
   font-weight: 600;
   padding: 4px 10px;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.product-card-info {
   padding: 16px 0 0 0;
}

.product-card-cat {
   font-size: 0.65rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--text-light);
   margin-bottom: 6px;
   font-family: var(--font-body);
}

.product-card-name {
   font-family: var(--font-heading);
   font-size: 1rem;
   font-weight: 500;
   color: var(--text);
   margin-bottom: 8px;
   line-height: 1.3;
}

.product-card-name a {
   color: inherit;
   text-decoration: none;
}

.product-card-name a:hover {
   opacity: 0.7;
}

.product-card-pricing {
   display: flex;
   align-items: baseline;
   gap: 10px;
}

.product-card-pricing .price-current {
   font-family: var(--font-body);
   font-size: 1rem;
   font-weight: 600;
   color: var(--text);
}

.product-card-pricing .price-was {
   font-size: 0.85rem;
   color: var(--text-light);
   text-decoration: line-through;
}

/* ── Editorial Banner ── */
.editorial-banner {
   position: relative;
   min-height: 500px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   overflow: hidden;
}

.editorial-banner-bg {
   position: absolute;
   inset: 0;
}

.editorial-banner-bg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(0.4);
}

.editorial-banner-content {
   position: relative;
   z-index: 2;
   padding: 80px 20px;
}

.editorial-banner-label {
   display: inline-block;
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 4px;
   color: rgba(255, 255, 255, 0.7);
   margin-bottom: 25px;
}

.editorial-banner-content h2 {
   font-family: var(--font-heading);
   font-size: 3rem;
   color: #fff;
   font-weight: 500;
   margin-bottom: 20px;
   letter-spacing: 2px;
}

.editorial-banner-content p {
   font-size: 1rem;
   color: rgba(255, 255, 255, 0.8);
   max-width: 500px;
   margin: 0 auto 40px;
   line-height: 1.7;
}

/* ── Editorial Testimonials ── */
.testimonial-grid-editorial {
   gap: 30px;
}

.testimonial-editorial {
   background: var(--white);
   padding: 50px 40px;
   border: 1px solid var(--border);
}

.testimonial-editorial-stars {
   color: var(--text);
   font-size: 0.7rem;
   margin-bottom: 25px;
   letter-spacing: 3px;
}

.testimonial-editorial-text {
   font-family: var(--font-heading);
   font-size: 1.2rem;
   line-height: 1.7;
   color: var(--text);
   font-weight: 400;
   font-style: italic;
   margin-bottom: 30px;
}

.testimonial-editorial-author {
   display: flex;
   flex-direction: column;
   gap: 4px;
}

.testimonial-editorial-name {
   font-family: var(--font-body);
   font-size: 0.75rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--text);
}

.testimonial-editorial-role {
   font-size: 0.7rem;
   color: var(--text-light);
   text-transform: uppercase;
   letter-spacing: 1.5px;
}

/* ══════════════════════════════
   PRODUCT CARD
   ══════════════════════════════ */
.product-card {
   background: var(--white);
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   transition: all var(--transition);
   position: relative
}

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

.product-card-img {
   position: relative;
   overflow: hidden;
   aspect-ratio: 1/1;
   background: var(--light-bg)
}

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

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

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

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

.product-card-actions button,
.product-card-actions a {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: var(--white);
   color: var(--primary);
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: var(--shadow-sm);
   transition: all var(--transition);
   border: none;
   cursor: pointer
}

.product-card-actions button:hover,
.product-card-actions a:hover {
   background: var(--accent);
   color: var(--white)
}

.product-badge {
   position: absolute;
   top: 12px;
   left: 12px;
   z-index: 2
}

.product-badge span {
   display: inline-block;
   padding: 4px 10px;
   border-radius: 4px;
   font-size: .72rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .5px
}

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

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

.product-card-body {
   padding: 16px
}

.product-card-category {
   font-size: .78rem;
   color: var(--text-light);
   text-transform: uppercase;
   letter-spacing: .5px;
   margin-bottom: 4px
}

.product-card-title {
   font-size: .95rem;
   font-weight: 600;
   margin-bottom: 8px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden
}

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

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

.price-current {
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--primary)
}

.price-original {
   font-size: .88rem;
   color: var(--text-muted);
   text-decoration: line-through
}

.price-discount {
   font-size: .78rem;
   color: var(--accent);
   font-weight: 600
}

/* ══════════════════════════════
   CATEGORY STRIP
   ══════════════════════════════ */
.category-strip {
   padding: 50px 0
}

.category-card {
   text-align: center;
   padding: 24px 16px;
   border-radius: var(--radius-md);
   background: var(--light-bg);
   transition: all var(--transition)
}

.category-card:hover {
   background: var(--primary);
   color: var(--white);
   transform: translateY(-4px)
}

.category-card:hover h4 {
   color: var(--white)
}

.category-icon {
   width: 60px;
   height: 60px;
   margin: 0 auto 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem
}

.category-card h4 {
   font-size: .9rem;
   transition: color var(--transition)
}

/* ══════════════════════════════
   SALE COUNTDOWN
   ══════════════════════════════ */
.sale-banner {
   background: linear-gradient(135deg, var(--primary) 0%, #1a1a2e 100%);
   color: var(--white);
   padding: 50px 0;
   text-align: center
}

.sale-banner h2 {
   font-size: clamp(1.5rem, 3vw, 2.5rem);
   color: var(--white);
   margin-bottom: 8px
}

.countdown {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin: 24px 0
}

.countdown-item {
   background: rgba(255, 255, 255, .1);
   backdrop-filter: blur(10px);
   padding: 16px 20px;
   border-radius: var(--radius-sm);
   min-width: 80px
}

.countdown-item .number {
   font-size: 2rem;
   font-weight: 800;
   display: block;
   color: var(--accent)
}

.countdown-item .label {
   font-size: .75rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   opacity: .7
}

/* ══════════════════════════════
   TESTIMONIALS
   ══════════════════════════════ */
.testimonials {
   background: var(--light-bg)
}

.testimonial-card {
   background: var(--white);
   padding: 30px;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm)
}

.testimonial-stars {
   color: var(--warning);
   margin-bottom: 12px;
   font-size: 1rem
}

.testimonial-text {
   font-style: italic;
   color: var(--text);
   margin-bottom: 16px;
   line-height: 1.7
}

.testimonial-author {
   display: flex;
   align-items: center;
   gap: 12px
}

.testimonial-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--accent);
   color: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 1.1rem
}

.testimonial-name {
   font-weight: 600;
   font-size: .9rem
}

.testimonial-role {
   font-size: .8rem;
   color: var(--text-light)
}

/* ══════════════════════════════
   BRAND STRIP
   ══════════════════════════════ */
.brands {
   padding: 40px 0;
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border)
}

.brands-track {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 50px;
   flex-wrap: wrap;
   opacity: .4
}

.brands-track span {
   font-size: 1.4rem;
   font-weight: 800;
   letter-spacing: 2px;
   text-transform: uppercase
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
   background: var(--primary);
   color: var(--white);
   padding: 60px 0 0
}

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

.footer-brand .logo {
   font-size: 1.6rem;
   margin-bottom: 12px;
   display: inline-block
}

.footer-brand p {
   color: rgba(255, 255, 255, .6);
   font-size: .9rem;
   max-width: 280px
}

.footer h4 {
   font-size: .85rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   margin-bottom: 16px;
   color: var(--white)
}

.footer-links a {
   display: block;
   padding: 5px 0;
   color: rgba(255, 255, 255, .6);
   font-size: .9rem;
   transition: all var(--transition)
}

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

.footer-social {
   display: flex;
   gap: 10px;
   margin-top: 16px
}

.footer-social a {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, .2);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   transition: all var(--transition);
   font-size: .9rem
}

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

.footer-bottom {
   padding: 20px 0;
   text-align: center;
   color: rgba(255, 255, 255, .4);
   font-size: .82rem
}

/* ══════════════════════════════
   SHOP / LISTING PAGE
   ══════════════════════════════ */
.page-header {
   background: var(--primary);
   color: var(--white);
   padding: 40px 0;
   text-align: center
}

.page-header h1 {
   color: var(--white);
   margin-bottom: 6px
}

.page-header .breadcrumb {
   font-size: .85rem;
   color: rgba(255, 255, 255, .6)
}

.page-header .breadcrumb a {
   color: rgba(255, 255, 255, .8)
}

.page-header .breadcrumb a:hover {
   color: var(--accent)
}

.shop-layout {
   display: grid;
   grid-template-columns: 250px 1fr;
   gap: 30px;
   padding: 40px 0
}

.shop-sidebar {
   position: sticky;
   top: calc(var(--header-h) + 20px);
   align-self: start
}

/* ══════════════════════════════
   SHOP ACCORDION FILTERS
   ══════════════════════════════ */
.shop-accordion {
   border-bottom: 1px solid var(--border);
   padding: 15px 0;
}

.shop-accordion summary {
   font-size: 0.95rem;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 1px;
   cursor: pointer;
   list-style: none;
   /* Hide default arrow */
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.shop-accordion summary::-webkit-details-marker {
   display: none;
}

.shop-accordion summary::after {
   content: '+';
   font-size: 1.2rem;
   font-weight: 300;
   transition: transform 0.3s;
}

.shop-accordion[open] summary::after {
   content: '−';
}

.shop-accordion .accordion-content {
   padding-top: 15px;
   animation: fadeIn 0.3s ease;
}

.filter-option {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 6px 0;
   cursor: pointer;
   font-size: .9rem
}

.filter-option input {
   accent-color: var(--accent)
}

.shop-toolbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 24px;
   padding-bottom: 16px;
   border-bottom: 1px solid var(--border)
}

.shop-toolbar .results-count {
   font-size: .9rem;
   color: var(--text-light)
}

.sort-select {
   padding: 8px 14px;
   border: 1.5px solid var(--border);
   border-radius: var(--radius-sm);
   font-size: .88rem;
   background: var(--white)
}

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

/* ══════════════════════════════
   PRODUCT DETAIL
   ══════════════════════════════ */
.product-detail {
   padding: 40px 0
}

.product-detail-layout {
   display: grid;
   grid-template-columns: 1.2fr 0.8fr;
   gap: 60px;
   align-items: start
}

.product-gallery-luxury {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.product-gallery-luxury img {
   width: 100%;
   height: auto;
   background: var(--light-bg);
   object-fit: contain;
   /* Ensure full shoe is visible */
}

.product-info-luxury {
   position: sticky;
   top: calc(var(--header-h) + 40px);
   padding-bottom: 40px;
}

.btn-luxury-cta {
   background-color: var(--primary);
   color: var(--white);
   border: none;
   border-radius: 0;
   padding: 18px 30px;
   font-size: 1.1rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   cursor: pointer;
   width: 100%;
   transition: background-color 0.3s, transform 0.3s;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-luxury-cta:hover {
   background-color: var(--accent);
   transform: translateY(-2px);
}

.gallery-main {
   position: relative;
   border-radius: var(--radius-md);
   overflow: hidden;
   background: var(--light-bg);
   aspect-ratio: 1/1;
   cursor: crosshair
}

.gallery-main img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .3s
}

.gallery-thumbs {
   display: flex;
   gap: 10px;
   margin-top: 12px
}

.gallery-thumb {
   width: 70px;
   height: 70px;
   border-radius: var(--radius-sm);
   overflow: hidden;
   border: 2px solid transparent;
   cursor: pointer;
   transition: border-color var(--transition)
}

.gallery-thumb.active,
.gallery-thumb:hover {
   border-color: var(--accent)
}

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

.product-info h1 {
   font-size: clamp(1.4rem, 3vw, 2rem);
   margin-bottom: 8px
}

.product-info .product-sku {
   font-size: .82rem;
   color: var(--text-light);
   margin-bottom: 16px
}

.product-price-block {
   display: flex;
   align-items: baseline;
   gap: 12px;
   margin-bottom: 20px
}

.product-price-block .price-current {
   font-size: 1.8rem;
   font-weight: 800
}

.product-price-block .price-original {
   font-size: 1.1rem
}

.product-description {
   color: var(--text);
   line-height: 1.8;
   margin-bottom: 24px;
   font-size: .95rem
}

.size-selector {
   margin-bottom: 24px
}

.size-options {
   display: flex;
   gap: 8px;
   flex-wrap: wrap
}

.size-btn {
   width: 48px;
   height: 48px;
   border-radius: var(--radius-sm);
   border: 1.5px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
   font-size: .9rem;
   cursor: pointer;
   transition: all var(--transition);
   background: var(--white)
}

.size-btn:hover,
.size-btn.active {
   border-color: var(--primary);
   background: var(--primary);
   color: var(--white)
}

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

.quantity-control {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 24px
}

.qty-btn {
   width: 40px;
   height: 40px;
   border-radius: var(--radius-sm);
   border: 1.5px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   cursor: pointer;
   background: var(--white);
   transition: all var(--transition)
}

.qty-btn:hover {
   border-color: var(--primary)
}

.qty-input {
   width: 60px;
   text-align: center;
   padding: 8px;
   border: 1.5px solid var(--border);
   border-radius: var(--radius-sm);
   font-weight: 600
}

.product-actions {
   display: flex;
   gap: 12px;
   margin-bottom: 30px
}

.product-meta {
   border-top: 1px solid var(--border);
   padding-top: 20px
}

.product-meta p {
   font-size: .88rem;
   color: var(--text-light);
   margin-bottom: 6px
}

.product-meta strong {
   color: var(--primary)
}

/* ══════════════════════════════
   CART PAGE
   ══════════════════════════════ */
.cart-layout {
   display: grid;
   grid-template-columns: 1.5fr 1fr;
   gap: 60px;
   padding: 60px 0
}

.cart-summary {
   position: sticky;
   top: calc(var(--header-h) + 40px)
}

.cart-summary h3 {
   margin-bottom: 20px;
   padding-bottom: 12px;
   border-bottom: 2px solid var(--border)
}

.summary-row {
   display: flex;
   justify-content: space-between;
   margin-bottom: 12px;
   font-size: .92rem
}

.summary-total {
   display: flex;
   justify-content: space-between;
   padding-top: 16px;
   border-top: 2px solid var(--primary);
   font-size: 1.2rem;
   font-weight: 700;
   margin-top: 8px
}

/* ══════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════ */
.checkout-layout {
   display: grid;
   grid-template-columns: 1fr 400px;
   gap: 30px;
   padding: 40px 0
}

.checkout-section {
   margin-bottom: 30px
}

.checkout-section h3 {
   margin-bottom: 16px;
   padding-bottom: 8px;
   border-bottom: 2px solid var(--border)
}

.payment-options {
   display: grid;
   gap: 12px
}

.payment-option {
   display: flex;
   align-items: center;
   gap: 15px;
   padding: 18px 20px;
   border: 1px solid var(--border);
   border-radius: 0;
   cursor: pointer;
   transition: all 0.3s ease;
   background: transparent;
}

.payment-option strong {
   font-size: 0.95rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.payment-option:hover,
.payment-option.active {
   border-color: var(--primary);
   background: var(--light-bg)
}

.payment-option input[type=radio] {
   accent-color: var(--accent)
}

/* ══════════════════════════════
   ORDER SUCCESS
   ══════════════════════════════ */
.order-success {
   text-align: center;
   padding: 80px 0
}

.success-icon {
   width: 80px;
   height: 80px;
   margin: 0 auto 24px;
   background: var(--success);
   color: var(--white);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem
}

.order-success h1 {
   margin-bottom: 12px
}

.order-success .order-number {
   font-size: 1.2rem;
   color: var(--accent);
   font-weight: 700;
   margin-bottom: 20px
}

/* ══════════════════════════════
   AUTH PAGES
   ══════════════════════════════ */
.auth-page {
   min-height: 70vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 40px 20px
}

.auth-card {
   width: 100%;
   max-width: 440px;
   background: var(--white);
   padding: 40px;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg)
}

.auth-card .logo {
   text-align: center;
   margin-bottom: 8px
}

.auth-card h2 {
   text-align: center;
   margin-bottom: 6px
}

.auth-card .auth-subtitle {
   text-align: center;
   color: var(--text-light);
   margin-bottom: 28px;
   font-size: .9rem
}

.auth-divider {
   text-align: center;
   margin: 20px 0;
   color: var(--text-muted);
   font-size: .85rem
}

.auth-footer {
   text-align: center;
   margin-top: 20px;
   font-size: .9rem;
   color: var(--text-light)
}

.auth-footer a {
   color: var(--accent);
   font-weight: 600
}

/* ══════════════════════════════
   ACCOUNT / DASHBOARD
   ══════════════════════════════ */
.account-layout {
   display: grid;
   grid-template-columns: 240px 1fr;
   gap: 30px;
   padding: 40px 0
}

.account-sidebar {
   background: var(--white);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
   overflow: hidden
}

.account-user {
   padding: 24px;
   text-align: center;
   background: var(--primary);
   color: var(--white)
}

.account-avatar {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: var(--accent);
   color: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.4rem;
   font-weight: 700;
   margin: 0 auto 10px
}

.account-nav a {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 14px 20px;
   font-size: .9rem;
   border-bottom: 1px solid var(--border);
   transition: all var(--transition)
}

.account-nav a:hover,
.account-nav a.active {
   background: var(--light-bg);
   color: var(--accent)
}

.account-content {
   background: var(--white);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
   padding: 30px
}

.orders-table {
   width: 100%;
   border-collapse: collapse;
   font-size: .9rem
}

.orders-table th {
   text-align: left;
   padding: 12px;
   background: var(--light-bg);
   font-size: .82rem;
   text-transform: uppercase;
   letter-spacing: .5px
}

.orders-table td {
   padding: 12px;
   border-bottom: 1px solid var(--border)
}

/* ══════════════════════════════
   CONTACT & STATIC
   ══════════════════════════════ */
.contact-layout {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
   padding: 40px 0
}

.contact-info-card {
   background: var(--light-bg);
   padding: 24px;
   border-radius: var(--radius-md);
   margin-bottom: 16px
}

.contact-info-card h4 {
   margin-bottom: 8px
}

.static-page {
   max-width: 800px;
   margin: 0 auto;
   padding: 40px 20px
}

.static-page h1 {
   margin-bottom: 24px
}

.static-page h2 {
   margin-top: 30px;
   margin-bottom: 12px;
   font-size: 1.3rem
}

.static-page p,
.static-page li {
   margin-bottom: 10px;
   line-height: 1.8;
   color: var(--text)
}

.static-page ul {
   padding-left: 20px;
   list-style: disc
}

/* ── Pagination ── */
.pagination {
   display: flex;
   justify-content: center;
   gap: 6px;
   margin-top: 40px
}

.page-btn {
   padding: 10px 16px;
   border-radius: var(--radius-sm);
   font-size: .88rem;
   font-weight: 600;
   border: 1.5px solid var(--border);
   transition: all var(--transition);
   color: var(--text)
}

.page-btn:hover,
.page-btn.active {
   background: var(--primary);
   color: var(--white);
   border-color: var(--primary)
}

.page-dots {
   padding: 10px 4px;
   color: var(--text-muted)
}

/* ── Image Zoom ── */
.zoom-overlay {
   display: none;
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, .9);
   z-index: 9999;
   align-items: center;
   justify-content: center;
   cursor: zoom-out
}

.zoom-overlay.active {
   display: flex
}

.zoom-overlay img {
   max-width: 90%;
   max-height: 90%;
   object-fit: contain
}

/* ── Animations ── */
@keyframes slideDown {
   from {
      opacity: 0;
      transform: translateY(-10px)
   }

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

@keyframes fadeIn {
   from {
      opacity: 0
   }

   to {
      opacity: 1
   }
}

@keyframes pulse {

   0%,
   100% {
      transform: scale(1)
   }

   50% {
      transform: scale(1.05)
   }
}

.fade-in {
   animation: fadeIn .5s ease
}

/* ── Lazy Load ── */
img[data-src] {
   opacity: 0;
   transition: opacity .4s ease
}

img[data-src].loaded {
   opacity: 1
}

/* ══════════════════════════════
   ULTIMATE LUXURY HERO SECTION
   ══════════════════════════════ */
.hero-luxury {
   position: relative;
   overflow: hidden;
   min-height: 80vh;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   display: flex;
   align-items: center;
   justify-content: center;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
   z-index: 1;
}

.hero-inner-luxury {
   position: relative;
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   max-width: 800px;
}

.luxury-badge-premium {
   font-family: var(--font-body);
   text-transform: uppercase;
   letter-spacing: 4px;
   font-weight: 500;
   color: #fff;
   margin-bottom: 25px;
   display: inline-block;
   font-size: 0.95rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.5);
   padding-bottom: 5px;
}

.hero-title-premium {
   font-size: clamp(3.5rem, 8vw, 6.5rem);
   line-height: 1.05;
   margin-bottom: 40px;
   color: #fff;
   letter-spacing: -2px;
   text-transform: uppercase;
}

.hero-title-premium span {
   font-family: var(--font-body);
   font-weight: 300;
   font-size: clamp(2.5rem, 5vw, 4rem);
   font-style: italic;
   opacity: 0.9;
   display: block;
   margin-bottom: 5px;
   letter-spacing: 0;
   text-transform: none;
}

.hero-btn-wrap-premium {
   display: flex;
   gap: 20px;
}

.hero-btn-wrap-premium .btn-outline.btn-white {
   background: transparent;
   border: 1px solid #fff;
   color: #fff;
}

.hero-btn-wrap-premium .btn-outline.btn-white:hover {
   background: #fff;
   color: var(--primary);
}


/* Search Strip under Hero */
.search-strip {
   padding: 30px 0 10px;
   background: var(--white);
}

/* ══════════════════════════════
   PREMIUM CIRCULAR CATEGORIES
   ══════════════════════════════ */
.circular-cat-grid {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 40px;
}

.circular-cat-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   text-decoration: none;
   width: 150px;
}

.circular-cat-img-wrap {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   overflow: hidden;
   margin-bottom: 20px;
   border: 2px solid transparent;
   transition: all 0.4s ease;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   background: #f4f4f4;
   /* Placeholder background */
}

.circular-cat-item:hover .circular-cat-img-wrap {
   transform: translateY(-5px);
   border-color: var(--primary);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.circular-cat-item:hover .circular-cat-img-wrap img {
   transform: scale(1.08);
}

.circular-cat-title {
   font-family: var(--font-body);
   font-size: 0.95rem;
   font-weight: 500;
   color: var(--primary);
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: color 0.3s;
}

.circular-cat-item:hover .circular-cat-title {
   color: var(--accent);
}

/* ══════════════════════════════
   PREMIUM PRODUCT GRID
   ══════════════════════════════ */
.premium-product-grid {
   gap: 40px 30px;
}

/* Ensure individual product cards in the premium layout have ample whitespace */
.premium-product-grid .product-card {
   border: none;
   box-shadow: none;
   background: transparent;
   padding-bottom: 20px;
}

.premium-product-grid .product-card:hover {
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
   /* Very subtle hover shadow */
   transform: translateY(-5px);
}

.premium-product-grid .product-img-wrap {
   background: #f4f4f4;
   /* Minimalist grey background for cut-out products */
   padding: 20px;
   border-radius: 0;
   /* Sharp corners for luxury feel */
}

.premium-product-grid .product-title {
   font-size: 1.1rem;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-top: 15px;
}

.premium-product-grid .product-price {
   font-size: 1.15rem;
   color: var(--text-light);
   /* Softer price color */
}

/* ══════════════════════════════
   PROMO BANNER LUXURY
   ══════════════════════════════ */
.promo-banner-luxury h3 {
   font-weight: 400;
}

/* ══════════════════════════════
   WHY CHOOSE LUXURY
   ══════════════════════════════ */
.why-luxury-item {
   padding: 40px;
   border: 1px solid var(--border);
   background: var(--white);
   transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-luxury-item:hover {
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
   /* Very subtle hover shadow */
   border-color: transparent;
}


/* ══════════════════════════════
   VIDEOS & BLOGS
   ══════════════════════════════ */
.video-card .video-thumb {
   position: relative;
   border-radius: var(--radius-md);
   overflow: hidden;
   margin-bottom: 15px;
   aspect-ratio: 16/9;
   background: #000;
}

.video-card .video-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   opacity: 0.7;
   transition: opacity 0.3s;
}

.video-card:hover .video-thumb img {
   opacity: 0.9;
}

.play-btn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 60px;
   height: 60px;
   background: rgba(255, 255, 255, 0.9);
   color: var(--primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   cursor: pointer;
   transition: transform 0.3s;
   box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
}

.video-card:hover .play-btn {
   transform: translate(-50%, -50%) scale(1.1);
   color: var(--accent);
}

.video-card h4 {
   font-size: 1.1rem;
}

.blog-card {
   background: var(--white);
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   transition: transform 0.3s;
}

.blog-card:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow-md);
}

.blog-card img {
   width: 100%;
   height: 200px;
   object-fit: cover;
}

.blog-body {
   padding: 25px;
}

.blog-body h4 {
   font-size: 1.2rem;
   margin-bottom: 12px;
}

.blog-body p {
   color: var(--text-light);
   font-size: 0.95rem;
   margin-bottom: 20px;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.read-more {
   font-weight: 600;
   color: var(--primary);
   text-transform: uppercase;
   font-size: 0.85rem;
   letter-spacing: 1px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
}

.read-more:hover {
   color: var(--accent);
}

/* ══════════════════════════════
   TESTIMONIALS (REDESIGN)
   ══════════════════════════════ */
.testimonial-card-flex {
   display: flex;
   background: var(--white);
   padding: 30px;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
   gap: 20px;
   border: 1px solid var(--border);
}

.testimonial-avatar-large {
   width: 70px;
   height: 70px;
   flex-shrink: 0;
   background: var(--light-bg);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--primary);
   border: 2px solid var(--border);
}

.testimonial-content .testimonial-text {
   font-size: 1.05rem;
   font-style: italic;
   color: var(--text);
   margin-bottom: 15px;
   line-height: 1.6;
}

.testimonial-author {
   margin-bottom: 10px;
}

.testimonial-author .testimonial-name {
   font-weight: 700;
   font-size: 1.1rem;
   color: var(--primary);
   margin-right: 10px;
}

.testimonial-author .testimonial-role {
   font-size: 0.85rem;
   color: var(--success);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */

@media(max-width:1024px) {
   .grid-4 {
      grid-template-columns: repeat(3, 1fr)
   }

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

   .shop-layout {
      grid-template-columns: 200px 1fr
   }

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

   .product-detail-layout {
      grid-template-columns: 1fr 1fr;
      gap: 30px
   }

   .hero-inner {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .hero-left-bg {
      width: 100%;
      transform: none;
      border: none;
   }

   .hero-btn-wrap {
      justify-content: center;
   }

   .hero-image-wrapper {
      padding: 0;
      margin-top: 40px;
   }

   .split-layout,
   .split-layout.reverse {
      grid-template-columns: 1fr;
   }

   .split-banner-left,
   .split-banner-right {
      border-radius: var(--radius-md);
   }

   .why-row,
   .why-row.reverse {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 30px;
   }

   .why-row.reverse .why-img,
   .why-text {
      order: unset;
      padding: 0;
   }

   .cat-grid-wrapper {
      grid-template-columns: 1fr;
      height: auto;
   }

   .cat-card-large {
      height: 400px;
   }

   .cat-grid-small {
      height: 500px;
   }
}

@media(max-width:768px) {
   .top-bar-contact {
      display: none;
   }

   .top-bar .container {
      justify-content: center;
   }

   .header-middle-inner {
      flex-wrap: wrap;
      gap: 15px;
      padding: 15px 0;
   }

   .search-box-central {
      order: 3;
      width: 100%;
      max-width: 100%;
   }

   .header-actions {
      gap: 15px;
   }

   .cart-label {
      display: none;
   }

   .menu-toggle {
      display: flex;
   }

   .header-bottom {
      border: none;
      height: 0;
   }

   .header-bottom .container {
      height: 0;
   }

   .nav-contact-badge {
      display: none;
   }

   .nav {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: 280px;
      background: var(--white);
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 60px 20px 20px;
      transform: translateX(-100%);
      transition: transform var(--transition);
      z-index: 1050;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      overflow-y: auto;
   }

   .nav.active {
      transform: translateX(0);
   }

   .nav>li {
      width: 100%;
   }

   .nav>li>a {
      padding: 15px 0;
      font-size: 1rem;
      border-bottom: 1px solid var(--border);
      display: block;
      width: 100%;
   }

   .nav>li>a::after {
      display: none;
   }

   .mega-menu {
      position: static;
      transform: none;
      box-shadow: none;
      border-top: none;
      width: 100%;
      padding: 10px 0 10px 15px;
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      grid-template-columns: 1fr;
   }

   .grid-2,
   .grid-3,
   .grid-4 {
      grid-template-columns: 1fr 1fr
   }

   .shop-layout {
      grid-template-columns: 1fr
   }

   .shop-sidebar {
      position: static
   }

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

   .product-detail-layout {
      grid-template-columns: 1fr
   }

   .product-gallery {
      position: static
   }

   .cart-layout,
   .checkout-layout {
      grid-template-columns: 1fr
   }

   .cart-summary {
      position: static
   }

   .account-layout {
      grid-template-columns: 1fr
   }

   .contact-layout {
      grid-template-columns: 1fr
   }

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

   .hero-slide {
      min-height: 400px;
      padding: 60px 0
   }

   .hero-content h1 {
      font-size: 1.8rem
   }

   .countdown {
      gap: 10px
   }

   .countdown-item {
      padding: 10px 14px;
      min-width: 60px
   }

   .countdown-item .number {
      font-size: 1.4rem
   }

   .testimonial-card-flex {
      flex-direction: column;
      text-align: center;
      align-items: center;
   }

   .top-bar-contact {
      display: none;
   }
}

@media(max-width:480px) {

   .grid-2,
   .grid-3,
   .grid-4 {
      grid-template-columns: 1fr
   }

   .products-grid {
      grid-template-columns: 1fr 1fr;
      gap: 10px
   }

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

   .product-card-title {
      font-size: .85rem
   }

   .price-current {
      font-size: .95rem
   }

   .hero-slide {
      min-height: 350px
   }

   .container {
      padding: 0 14px
   }

   .section {
      padding: 40px 0
   }

   .form-row {
      grid-template-columns: 1fr
   }

   .product-actions {
      flex-direction: column
   }

   .product-actions .btn {
      width: 100%
   }
}