/* =============================================
   LUXE JEWELS - Premium Jewelry Store
   style.css - Root Variables & Luxury Aesthetics
   ============================================= */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Jost:wght@300;400;500;600&family=Tenor+Sans&display=swap');

/* ---------- CSS Root Variables ---------- */
:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-off-white: #FAFAF8;
    --color-light-gray: #F5F5F3;
    --color-medium-gray: #E8E6E3;
    --color-charcoal: #222222;
    --color-dark-gray: #555555;
    --color-text-muted: #888888;
    --color-gold: #C5A059;
    --color-gold-hover: #D4AF37;
    --color-gold-light: rgba(197, 160, 89, 0.12);
    --color-black: #000000;
    --color-overlay: rgba(0, 0, 0, 0.45);
    --color-overlay-light: rgba(0, 0, 0, 0.03);

    /* Fonts */
    --font-heading: 'Marcellus', serif;
    --font-body: 'Jost', sans-serif;
    --font-accent: 'Tenor Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-sm: 60px 0;

    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

::selection {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* ---------- Utility Classes ---------- */
.section-padding {
    padding: var(--section-padding);
}

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

.section-title .subtitle {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--color-charcoal);
    margin-bottom: 16px;
    position: relative;
}

.section-title p {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.section-title .title-divider {
    width: 50px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 20px auto;
    position: relative;
}

.section-title .title-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: var(--color-gold);
    background: var(--color-white);
    padding: 0 10px;
}

.btn-gold {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: var(--color-gold);
    border: 2px solid var(--color-gold);
    transition: var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: auto;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(197, 160, 89, 0.35);
    width: auto;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold-outline {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    background-color: transparent;
    border: 2px solid var(--color-gold);
    transition: var(--transition-medium);
    cursor: pointer;
}

.btn-gold-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(197, 160, 89, 0.35);
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-inner .diamond {
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    transform: rotate(45deg);
    animation: diamondPulse 1.2s ease-in-out infinite;
    margin: 0 auto 20px;
}

.preloader-inner span {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-charcoal);
}

@keyframes diamondPulse {

    0%,
    100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }

    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.5;
    }
}

/* ---------- Navigation ---------- */
.navbar-luxe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: var(--transition-medium);
    background: transparent;
}

.navbar-luxe.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

.navbar-luxe .navbar-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.navbar-luxe.scrolled .navbar-brand {
    color: var(--color-charcoal);
}

.navbar-luxe .nav-link {
    font-family: var(--font-accent);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-luxe.scrolled .nav-link {
    color: var(--color-dark-gray);
}

.navbar-luxe .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 1.5px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
    transform-origin: center;
}

.navbar-luxe .nav-link:hover::after,
.navbar-luxe .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-luxe .nav-link:hover {
    color: var(--color-gold) !important;
}

.navbar-luxe .nav-link.active {
    color: var(--color-white) !important;
    font-weight: 500;
}

.navbar-luxe.scrolled .nav-link.active {
    color: var(--color-charcoal) !important;
}

.nav-icons a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-left: 22px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-luxe.scrolled .nav-icons a {
    color: var(--color-charcoal);
}

.nav-icons a:hover {
    color: var(--color-gold) !important;
}

.nav-icons .cart-count,
.nav-icons .wishlist-count {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 500;
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    position: relative;
    display: block;
    transition: var(--transition-fast);
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 7s ease;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    padding: 0 60px;
}

.hero-content .hero-subtitle {
    font-family: var(--font-accent);
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.hero-content p {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
}

.hero-content .btn-gold {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.9s;
}

.swiper-slide-active .hero-subtitle,
.swiper-slide-active h1,
.swiper-slide-active p,
.swiper-slide-active .btn-gold {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Pagination */
.hero-swiper .swiper-pagination {
    bottom: 40px !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: var(--transition-medium);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--color-gold);
    width: 50px;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.hero-scroll-indicator:hover {
    transform: translateY(-5px);
}

.hero-scroll-indicator span {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    writing-mode: vertical-rl;
}

.hero-scroll-indicator .scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.hero-scroll-indicator .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    animation: scrollDown 2s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-line::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

/* ---------- Category Icon Strip ---------- */
.category-strip {
    padding: 50px 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gold);
}

.category-strip-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-charcoal);
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.category-icon-item:hover {
    color: var(--color-gold);
    transform: translateY(-4px);
}

.category-icon-svg {
    width: 60px;
    height: 60px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.category-icon-item:hover .category-icon-svg {
    transform: scale(1.1);
}

.category-icon-svg svg {
    width: 100%;
    height: 100%;
}

.category-icon-item h6 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-charcoal);
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.category-icon-item:hover h6 {
    color: var(--color-charcoal);
}

.category-icon-item span {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ---------- Category Tiles ---------- */
.categories-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.category-tile {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-medium-gray);
    text-align: center;
    padding: 50px 30px;
    transition: var(--transition-medium);
    cursor: pointer;
    background: var(--color-white);
}

.category-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold-light);
    opacity: 0;
    transition: var(--transition-medium);
}

.category-tile:hover::before {
    opacity: 1;
}

.category-tile:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.category-tile .category-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--color-medium-gray);
    transition: var(--transition-medium);
}

.category-tile:hover .category-img {
    border-color: var(--color-gold);
}

.category-tile .category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-tile:hover .category-img img {
    transform: scale(1.15);
}

.category-tile h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.category-tile .category-count {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
}

.category-tile .category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.category-tile:hover .category-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Products Grid ---------- */
.products-section {
    padding: var(--section-padding);
    background: var(--color-off-white);
}

.product-filter {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.product-filter button {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: transparent;
    border: none;
    padding: 8px 5px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.product-filter button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.product-filter button:hover,
.product-filter button.active {
    color: var(--color-charcoal);
}

.product-filter button:hover::after,
.product-filter button.active::after {
    transform: scaleX(1);
}

.product-card {
    background: var(--color-white);
    overflow: hidden;
    transition: var(--transition-medium);
    margin-bottom: 30px;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-card);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--color-light-gray);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* Product badges */
.product-card .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    font-family: var(--font-accent);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
}

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

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

/* Product actions on hover */
.product-actions {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.product-actions .action-btn {
    width: 42px;
    height: 42px;
    background: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-charcoal);
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-subtle);
}

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

.product-card:hover .action-btn:nth-child(2) {
    transition-delay: 0.05s;
}

.product-card:hover .action-btn:nth-child(3) {
    transition-delay: 0.1s;
}

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

/* Add to cart button */
.product-card .add-to-cart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(34, 34, 34, 0.92);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transform: translateY(100%);
    transition: var(--transition-medium);
    z-index: 5;
    backdrop-filter: blur(4px);
}

.product-card:hover .add-to-cart {
    transform: translateY(0);
}

.product-card .add-to-cart:hover {
    background: var(--color-gold);
}

/* Product info */
.product-info {
    padding: 20px 5px;
    text-align: center;
}

.product-info .product-category {
    font-family: var(--font-accent);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 6px;
}

.product-info h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.product-card:hover .product-info h5 {
    color: var(--color-gold);
}

.product-info .product-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gold);
}

.product-info .product-price .old-price {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 14px;
    margin-right: 8px;
}

/* Product rating stars */
.product-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}

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

/* ---------- Featured Banner ---------- */
.featured-banner {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.featured-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    margin-top: -10%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    will-change: transform;
}

.featured-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 100%);
}

.featured-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.featured-banner .banner-subtitle {
    font-family: var(--font-accent);
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 20px;
}

.featured-banner h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* ---------- Features Editorial Section ---------- */
.features-editorial {
    background: var(--color-charcoal);
    overflow: hidden;
}

.editorial-text-block {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.editorial-badge {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    width: fit-content;
}

.editorial-text-block h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 18px;
}

.editorial-text-block p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.editorial-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 35px;
}

.editorial-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.editorial-feature i {
    font-size: 18px;
    color: var(--color-gold);
}

.editorial-feature span {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}



.editorial-portrait-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

/* Decorative card frame (offset behind the image) */
.portrait-card-frame {
    position: absolute;
    top: 24px;
    right: -18px;
    width: 75%;
    height: 82%;
    border: 1px solid rgba(197, 160, 89, 0.35);
    background: rgba(197, 160, 89, 0.04);
    border-radius: 2px;
    z-index: 0;
}

/* Arch-clipped portrait */
.portrait-arch {
    position: relative;
    z-index: 1;
    width: 80%;
    overflow: hidden;
    clip-path: path('M 0 200 L 0 340 Q 0 380 40 380 L 200 380 Q 240 380 240 340 L 240 200 Q 240 0 120 0 Q 0 0 0 200 Z');
    border-radius: 120px 120px 6px 6px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.portrait-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.8s ease;
}

.editorial-col-portrait:hover .portrait-arch img {
    transform: scale(1.04);
}

/* Star / asterisk decorative accents */
.portrait-star {
    position: absolute;
    color: var(--color-charcoal);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-style: normal;
    animation: starPulse 3s ease-in-out infinite;
}

.portrait-star--lg {
    font-size: 28px;
    top: 30%;
    left: -10px;
    animation-delay: 0s;
    color: rgba(255, 255, 255, 0.9);
}

.portrait-star--sm {
    font-size: 16px;
    bottom: 20%;
    right: 0;
    animation-delay: 1.2s;
    color: rgba(197, 160, 89, 0.9);
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2) rotate(15deg);
        opacity: 1;
    }
}

/* Floating product card */
.portrait-product-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    padding: 10px 16px 10px 10px;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: floatCard 4s ease-in-out infinite;
}

.portrait-product-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.portrait-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.portrait-product-label {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.portrait-product-price {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ---------- Modern Marquee ---------- */
.marquee-section {
    padding: 35px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-medium-gray);
    border-bottom: 1px solid var(--color-medium-gray);
    overflow: hidden;
}

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

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

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-charcoal);
    padding: 0 30px;
    white-space: nowrap;
}

.marquee-star {
    font-size: 14px;
    color: var(--color-gold);
    padding: 0 10px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- Unified Modal System ---------- */
.luxe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxe-modal.active {
    opacity: 1;
    visibility: visible;
}

.luxe-modal-inner {
    text-align: center;
    width: 95%;
    max-width: 550px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
    padding: 60px 40px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.luxe-modal.active .luxe-modal-inner {
    transform: translateY(0);
}

.luxe-modal-wide {
    max-width: 500px;
}

.luxe-modal-inner h4 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--color-charcoal);
}

.luxe-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--color-light-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-charcoal);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.luxe-modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.modal-icon-header {
    margin-bottom: 25px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.modal-icon-header i {
    font-size: 32px;
    color: var(--color-gold);
}

.modal-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    font-weight: 300;
}

/* Search form inside modal */
.search-form {
    display: flex;
    border-bottom: 2px solid var(--color-charcoal);
}

.search-form input {
    flex: 1;
    padding: 15px 0;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-charcoal);
    outline: none;
}

.search-form input::placeholder {
    color: var(--color-text-muted);
}

.search-form button {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--color-charcoal);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-form button:hover {
    color: var(--color-gold);
}

/* Wishlist & Cart items */
.wishlist-items,
.cart-items {
    text-align: left;
    max-height: 320px;
    overflow-y: auto;
}

.wishlist-item,
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-medium-gray);
}

.wishlist-item:last-child,
.cart-item:last-child {
    border-bottom: none;
}

.wishlist-item-img,
.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-light-gray);
}

.wishlist-item-img img,
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-info,
.cart-item-info {
    flex: 1;
}

.wishlist-item-info h6,
.cart-item-info h6 {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--color-charcoal);
    margin-bottom: 3px;
}

.wishlist-item-cat,
.cart-item-cat {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 4px;
}

.wishlist-item-price,
.cart-item-price {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-gold);
}

.wishlist-item-remove,
.cart-item-remove {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 5px;
}

.wishlist-item-remove:hover,
.cart-item-remove:hover {
    color: #B85C5C;
}

/* Cart summary */
.cart-summary {
    margin: 20px 0;
    text-align: left;
    padding-top: 16px;
    border-top: 1px solid var(--color-medium-gray);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-dark-gray);
}

.cart-summary-row.cart-total {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-charcoal);
    border-top: 1px solid var(--color-medium-gray);
    padding-top: 12px;
    margin-top: 6px;
}

.cart-summary .free-shipping {
    color: #2e7d32;
    font-weight: 400;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.testimonial-card {
    text-align: center;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card .quote-icon {
    font-size: 40px;
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: 25px;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.7;
    color: var(--color-charcoal);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-card .client-name {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 5px;
}

.testimonial-card .client-location {
    font-size: 13px;
    color: var(--color-text-muted);
}

.testimonial-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-medium-gray);
    opacity: 1;
    transition: var(--transition-fast);
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* ---------- Instagram Feed (Swiper) ---------- */
.instagram-section {
    padding: 80px 0 0;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--color-gold);
    margin-top: 60px;
}

.insta-swiper {
    width: 100%;
    overflow: hidden;
}

.insta-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.insta-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item .insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 160, 89, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item .insta-overlay i {
    font-size: 24px;
    color: var(--color-white);
}

/* ---------- Newsletter Section ---------- */
.newsletter-section {
    padding: 80px 0;
    background: var(--color-off-white);
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid var(--color-medium-gray);
    border-right: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-charcoal);
    background: var(--color-white);
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--color-gold);
}

.newsletter-form input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-form button {
    padding: 16px 30px;
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
}

.newsletter-form button:hover {
    background: var(--color-gold-hover);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-charcoal);
    padding: 80px 0 0;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-white) !important;
    display: block;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--color-gold);
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 300;
}

.footer-contact i {
    color: var(--color-gold);
    font-size: 16px;
    margin-top: 3px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: var(--transition-medium);
}

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

/* Heritage badge */
.heritage-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.heritage-badge i {
    font-size: 28px;
    color: var(--color-gold);
}

.heritage-badge .heritage-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.heritage-badge .heritage-text strong {
    color: var(--color-gold);
    display: block;
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* Footer bottom */
.footer-bottom {
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-bottom .payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.footer-bottom .payment-methods i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 999;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-gold-hover);
    transform: translateY(-5px);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .featured-banner h2 {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .navbar-luxe .navbar-collapse {
        background: var(--color-white);
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-card);
    }

    .navbar-luxe .nav-link {
        color: var(--color-charcoal) !important;
        padding: 10px 0 !important;
    }

    .navbar-luxe .nav-link.active {
        color: var(--color-gold) !important;
    }

    .nav-icons a {
        color: var(--color-charcoal) !important;
    }

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

    .featured-banner {
        min-height: 450px;
    }

    .featured-banner .banner-bg {
        background-attachment: scroll;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-text-block {
        padding: 50px 30px;
    }

    .editorial-col-portrait {
        padding: 30px 20px 50px;
    }

    .portrait-arch {
        width: 70%;
    }

    .editorial-text-block h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px 0;
    }

    .hero-section {
        min-height: 550px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 30px;
    }

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

    .category-tile {
        padding: 30px 20px;
    }

    .category-tile .category-img {
        width: 150px;
        height: 150px;
    }

    .featured-banner h2 {
        font-size: 32px;
    }

    .featured-banner {
        min-height: 400px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid var(--color-medium-gray);
    }

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

    .hero-scroll-indicator {
        display: none;
    }

    .footer-bottom .payment-methods {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .product-filter {
        gap: 15px;
    }
}