/*
Theme Name: Aljawharah
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: Ultra-premium luxury furniture theme inspired by Saudi heritage. Built for WooCommerce.
Version: 1.0
License: GPL v2 or later
Text Domain: aljawharah
*/

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --ivory: #f5f0eb;
    --sand: #e8ddd0;
    --travertine: #d4c9b8;
    --walnut: #3d2b1f;
    --brass: #c9a87c;
    --brass-light: #e0cdb0;
    --black: #1a1a1a;
    --black-soft: #2a2a2a;
    --white: #ffffff;
    --gold-glow: rgba(201, 168, 124, 0.15);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-deep: 0 40px 80px rgba(0, 0, 0, 0.12);
    --radius: 4px;
    --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
body {
    font-family: var(--font-sans);
    background: var(--ivory);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--ivory);
}
::-webkit-scrollbar-thumb {
    background: var(--brass);
    border-radius: 10px;
}

/* ── Preloader ── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#preloader .loader {
    width: 48px;
    height: 48px;
    border: 2px solid var(--travertine);
    border-top-color: var(--brass);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(245, 240, 235, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.nav-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
    transition: color 0.4s ease;
}
.navbar.scrolled .nav-logo {
    color: var(--walnut);
}
.nav-logo span {
    color: var(--brass);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brass);
    transition: width 0.4s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.navbar.scrolled .nav-links a {
    color: rgba(26, 26, 26, 0.7);
}
.navbar.scrolled .nav-links a:hover {
    color: var(--walnut);
}
.nav-links a:hover {
    color: var(--white);
}
.nav-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: color 0.3s ease;
}
.navbar.scrolled .nav-icons a {
    color: rgba(26, 26, 26, 0.6);
}
.nav-icons a:hover {
    color: var(--brass);
}
.nav-currency {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.navbar.scrolled .nav-currency {
    color: rgba(26, 26, 26, 0.5);
    border-color: rgba(26, 26, 26, 0.12);
}
.nav-currency:hover {
    border-color: var(--brass);
    color: var(--brass);
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    transform-origin: center;
}
.navbar.scrolled .nav-hamburger span {
    background: var(--black);
}
.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
    .navbar {
        padding: 16px 40px;
    }
    .navbar.scrolled {
        padding: 12px 40px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--ivory);
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        gap: 28px;
        transition: right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        color: var(--black) !important;
        font-size: 18px;
        letter-spacing: 2px;
    }
    .nav-links a::after {
        background: var(--brass);
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-currency {
        display: none;
    }
}
@media (max-width: 768px) {
    .navbar {
        padding: 14px 24px;
    }
    .navbar.scrolled {
        padding: 10px 24px;
    }
    .nav-logo {
        font-size: 22px;
        letter-spacing: 2px;
    }
    .nav-icons a {
        font-size: 16px;
    }
    .nav-icons {
        gap: 16px;
    }
}

/* ── Hero ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--walnut);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(61, 43, 31, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%),
        url('https://images.unsplash.com/photo-1618220179428-22790b461013?w=1600&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.12);
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 50%, rgba(61, 43, 31, 0.2) 0%, rgba(0, 0, 0, 0.5) 80%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brass-light);
    border: 1px solid rgba(201, 168, 124, 0.3);
    padding: 6px 24px;
    border-radius: 30px;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.04);
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}
.hero h1 .accent {
    color: var(--brass-light);
    font-style: italic;
}
.hero-sub {
    font-size: clamp(16px, 1.4vw, 22px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    background: var(--brass);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--walnut);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}
.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.btn-primary span {
    position: relative;
    z-index: 1;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
}
.btn-secondary:hover {
    border-color: var(--brass);
    color: var(--brass);
    background: rgba(201, 168, 124, 0.06);
}
.hero-arabic {
    position: absolute;
    bottom: 40px;
    right: 60px;
    font-family: var(--font-serif);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    font-weight: 300;
    z-index: 2;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}
@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}
@media (max-width: 768px) {
    .hero-arabic {
        display: none;
    }
    .hero-scroll {
        bottom: 20px;
    }
    .hero-scroll .line {
        height: 24px;
    }
    .btn-primary {
        padding: 14px 32px;
        font-size: 12px;
    }
    .btn-secondary {
        padding: 14px 28px;
        font-size: 12px;
    }
    .hero-badge {
        font-size: 10px;
        padding: 4px 16px;
        margin-bottom: 20px;
    }
}

/* ── Section Shared ── */
.section {
    padding: 100px 0;
}
.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.6);
    max-width: 540px;
    line-height: 1.8;
}
.section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}
.section-header .section-desc {
    flex: 1;
    min-width: 240px;
}
.section-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--walnut);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.section-link:hover {
    color: var(--brass);
}
.section-link i {
    transition: transform 0.3s ease;
}
.section-link:hover i {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
    }
}

/* ── Featured Collections ── */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: var(--white);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:hover {
    transform: translateY(-6px);
}
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:hover img {
    transform: scale(1.04);
}
.collection-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: var(--white);
}
.collection-card .overlay h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.collection-card .overlay p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}
.collection-card .overlay .line {
    width: 40px;
    height: 1px;
    background: var(--brass);
    margin-bottom: 12px;
}
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .collections-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .collection-card .overlay {
        padding: 20px;
    }
    .collection-card .overlay h3 {
        font-size: 18px;
    }
    .collection-card .overlay p {
        font-size: 10px;
    }
}

/* ── Signature Collection ── */
.signature {
    background: var(--white);
    padding: 100px 0;
}
.signature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.signature-image {
    position: relative;
    overflow: hidden;
    background: var(--sand);
}
.signature-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.signature-image:hover img {
    transform: scale(1.02);
}
.signature-image .badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--brass);
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
}
.signature-info {
    padding: 20px 0;
}
.signature-info .label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 8px;
}
.signature-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 12px;
}
.signature-info .price {
    font-size: 22px;
    font-weight: 300;
    color: var(--walnut);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.signature-info .price span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(26, 26, 26, 0.4);
    margin-left: 6px;
}
.signature-info p {
    font-size: 15px;
    color: rgba(26, 26, 26, 0.6);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 32px;
}
.signature-info .btn-primary {
    background: var(--walnut);
}
.signature-info .btn-primary::before {
    background: var(--brass);
}
@media (max-width: 1024px) {
    .signature-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .signature-image img {
        aspect-ratio: 3/2;
    }
    .signature-info {
        padding: 0;
    }
}

/* ── Modern Majlis ── */
.majlis {
    background: var(--ivory);
}
.majlis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.majlis-image {
    position: relative;
    overflow: hidden;
    background: var(--travertine);
}
.majlis-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.majlis-image:hover img {
    transform: scale(1.02);
}
.majlis-image .deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(201, 168, 124, 0.15);
    border-radius: 50%;
    pointer-events: none;
}
.majlis-image .deco::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: rgba(201, 168, 124, 0.08);
}
.majlis-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 12px;
}
.majlis-info .sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--brass);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.majlis-info p {
    font-size: 15px;
    color: rgba(26, 26, 26, 0.6);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 28px;
}
.majlis-info .features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    margin-bottom: 32px;
}
.majlis-info .features li {
    list-style: none;
    font-size: 13px;
    font-weight: 400;
    color: var(--walnut);
    display: flex;
    align-items: center;
    gap: 10px;
}
.majlis-info .features li i {
    color: var(--brass);
    font-size: 14px;
}
@media (max-width: 1024px) {
    .majlis-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .majlis-image img {
        aspect-ratio: 3/2;
    }
}

/* ── Bestsellers ── */
.bestsellers {
    background: var(--white);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.product-card {
    background: var(--white);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    group: true;
}
.product-card:hover {
    transform: translateY(-8px);
}
.product-card .image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--ivory);
    aspect-ratio: 3/4;
}
.product-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .image-wrap img {
    transform: scale(1.04);
}
.product-card .image-wrap .actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(12px);
    transition: all 0.4s ease;
}
.product-card:hover .image-wrap .actions {
    opacity: 1;
    transform: translateX(0);
}
.product-card .image-wrap .actions button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: var(--black);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card .image-wrap .actions button:hover {
    background: var(--brass);
    color: var(--white);
}
.product-card .image-wrap .quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--walnut);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    cursor: pointer;
}
.product-card:hover .image-wrap .quick-add {
    transform: translateY(0);
}
.product-card .info {
    padding: 16px 0 8px;
}
.product-card .info .name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.product-card .info .price {
    font-size: 16px;
    font-weight: 400;
    color: var(--walnut);
    letter-spacing: 0.5px;
}
.product-card .info .price .old {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.3);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 300;
}
.product-card .info .rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--brass);
}
.product-card .info .rating span {
    color: rgba(26, 26, 26, 0.3);
    font-size: 12px;
}
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 500px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .product-card .info .name {
        font-size: 13px;
    }
    .product-card .info .price {
        font-size: 14px;
    }
    .product-card .image-wrap .actions {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    .product-card .image-wrap .actions button {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .product-card .image-wrap .quick-add {
        font-size: 10px;
        padding: 10px;
    }
}

/* ── Brand Story ── */
.brand-story {
    background: var(--ivory);
    padding: 100px 0;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 520px;
}
.story-text {
    padding: 60px 60px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.story-text .label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 12px;
}
.story-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.4vw, 46px);
    font-weight: 400;
    line-height: 1.12;
    margin-bottom: 16px;
}
.story-text p {
    font-size: 15px;
    color: rgba(26, 26, 26, 0.6);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 24px;
}
.story-text .btn-primary {
    background: var(--walnut);
    align-self: flex-start;
}
.story-text .btn-primary::before {
    background: var(--brass);
}
.story-image {
    overflow: hidden;
    background: var(--sand);
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.story-image:hover img {
    transform: scale(1.02);
}
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .story-text {
        padding: 0;
    }
    .story-image {
        min-height: 300px;
    }
}

/* ── Quality ── */
.quality {
    background: var(--white);
    padding: 80px 0;
}
.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.quality-item {
    padding: 20px;
    transition: transform 0.4s ease;
}
.quality-item:hover {
    transform: translateY(-4px);
}
.quality-item .icon {
    font-size: 32px;
    color: var(--brass);
    margin-bottom: 16px;
    display: inline-block;
}
.quality-item h4 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--walnut);
}
.quality-item p {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.5);
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 500px) {
    .quality-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .quality-item {
        padding: 12px;
    }
    .quality-item .icon {
        font-size: 24px;
    }
    .quality-item h4 {
        font-size: 13px;
    }
    .quality-item p {
        font-size: 12px;
    }
}

/* ── Final CTA ── */
.cta-final {
    background: var(--black-soft);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(201, 168, 124, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(201, 168, 124, 0.03) 0%, transparent 50%);
}
.cta-final .container {
    position: relative;
    z-index: 1;
}
.cta-final .deco-line {
    width: 60px;
    height: 1px;
    background: var(--brass);
    margin: 0 auto 20px;
}
.cta-final h2 {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.cta-final p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 460px;
    margin: 0 auto 36px;
    line-height: 1.8;
    font-weight: 300;
}
.cta-final .btn-primary {
    background: var(--brass);
    font-size: 14px;
    padding: 18px 56px;
}
.cta-final .btn-primary::before {
    background: var(--white);
}
.cta-final .btn-primary:hover {
    color: var(--walnut);
}
@media (max-width: 768px) {
    .cta-final {
        padding: 80px 0;
    }
    .cta-final .btn-primary {
        padding: 14px 40px;
        font-size: 12px;
    }
}

/* ── Footer ── */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand .logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand .logo span {
    color: var(--brass);
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    max-width: 300px;
    font-weight: 300;
}
.footer-col h5 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul a {
    font-size: 13px;
    font-weight: 300;
    transition: color 0.3s ease;
}
.footer-col ul a:hover {
    color: var(--brass);
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}
.footer-bottom .lang-currency {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-bottom .lang-currency span {
    cursor: pointer;
    transition: color 0.3s ease;
}
.footer-bottom .lang-currency span:hover {
    color: var(--brass);
}
.footer-bottom .lang-currency .divider {
    color: rgba(255, 255, 255, 0.1);
}
.footer-social {
    display: flex;
    gap: 20px;
}
.footer-social a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: var(--brass);
}
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .footer-bottom .lang-currency {
        flex-wrap: wrap;
    }
}

/* ── Animations (scroll reveal) ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}

/* ── Responsive tweaks ── */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .signature {
        padding: 60px 0;
    }
    .brand-story {
        padding: 60px 0;
    }
}

/* ── WooCommerce Customization ── */
.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.woocommerce .product {
    background: var(--white);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.woocommerce .product:hover {
    transform: translateY(-8px);
}
.woocommerce .product img {
    aspect-ratio: 3/4;
    object-fit: cover;
}
.woocommerce .product .button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--brass);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}
.woocommerce .product .button:hover {
    background: var(--walnut);
}
.woocommerce .price {
    color: var(--walnut);
    font-weight: 400;
}
.woocommerce .star-rating {
    color: var(--brass);
}
@media (max-width: 1200px) {
    .woocommerce .products {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .woocommerce .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 500px) {
    .woocommerce .products {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}











/* ── Single Product Layout ── */
.single-product-wrapper {
    padding: 120px 0 60px;
}
.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.product-gallery .main-image {
    position: relative;
    overflow: hidden;
    background: var(--ivory);
    aspect-ratio: 4/5;
}
.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.gallery-thumbs .thumb {
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    opacity: 0.6;
}
.gallery-thumbs .thumb:hover {
    border-color: var(--brass);
    opacity: 1;
}
.product-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}
.product-price {
    font-size: 28px;
    font-weight: 400;
    color: var(--walnut);
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.product-rating .count {
    color: rgba(26, 26, 26, 0.4);
}
.product-short-description {
    font-size: 15px;
    color: rgba(26, 26, 26, 0.6);
    line-height: 1.8;
}
.product-meta {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.4);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.product-meta span {
    display: block;
}
.product-add-to-cart .cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.product-add-to-cart .quantity {
    margin-right: 0;
}
.product-add-to-cart .quantity input {
    width: 60px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 16px;
    text-align: center;
}
.product-add-to-cart .single_add_to_cart_button {
    background: var(--brass);
    color: var(--white);
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.product-add-to-cart .single_add_to_cart_button:hover {
    background: var(--walnut);
}
.product-tabs-wrapper {
    margin-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 24px;
}
.product-tabs-wrapper .woocommerce-tabs {
    display: flex;
    flex-direction: column;
}
.product-tabs-wrapper .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.product-tabs-wrapper .woocommerce-tabs ul.tabs li {
    margin: 0;
}
.product-tabs-wrapper .woocommerce-tabs ul.tabs li a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.4);
    padding: 8px 0;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.product-tabs-wrapper .woocommerce-tabs ul.tabs li.active a {
    color: var(--black);
    border-bottom-color: var(--brass);
}
.product-tabs-wrapper .woocommerce-tabs .panel {
    padding: 16px 0;
}

/* ── Sticky Purchase Bar ── */
.sticky-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.sticky-add-to-cart.visible {
    transform: translateY(0);
}
.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.sticky-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--ivory);
}
.sticky-title {
    font-size: 14px;
    font-weight: 400;
}
.sticky-price {
    font-size: 16px;
    font-weight: 400;
    color: var(--brass);
}
.sticky-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sticky-wishlist {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.sticky-wishlist:hover {
    border-color: var(--brass);
    color: var(--brass);
}
.sticky-add-btn {
    padding: 10px 32px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--brass);
    color: var(--obsidian);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.sticky-add-btn:hover {
    background: var(--ivory);
}
@media (max-width: 768px) {
    .single-product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-title {
        font-size: 28px;
    }
    .sticky-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .sticky-info {
        justify-content: space-between;
    }
    .sticky-actions {
        justify-content: stretch;
    }
    .sticky-add-btn {
        flex: 1;
        text-align: center;
    }
}












/* ── Archive / Shop Page ── */
.woocommerce-products-header {
    margin-bottom: 40px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Product card already defined in style.css, but ensure it inherits */
.product-card {
    background: var(--white);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
}
.product-card .image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--ivory);
    aspect-ratio: 3/4;
}
.product-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .image-wrap img {
    transform: scale(1.04);
}
.product-card .image-wrap .actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(12px);
    transition: all 0.4s ease;
}
.product-card:hover .image-wrap .actions {
    opacity: 1;
    transform: translateX(0);
}
.product-card .image-wrap .actions button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: var(--black);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card .image-wrap .actions button:hover {
    background: var(--brass);
    color: var(--white);
}
.product-card .image-wrap .quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--walnut);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    cursor: pointer;
}
.product-card:hover .image-wrap .quick-add {
    transform: translateY(0);
}
.product-card .info {
    padding: 16px 0 8px;
}
.product-card .info .name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.product-card .info .name a {
    color: inherit;
    text-decoration: none;
}
.product-card .info .price {
    font-size: 16px;
    font-weight: 400;
    color: var(--walnut);
    letter-spacing: 0.5px;
}
.product-card .info .rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--brass);
}
.product-card .info .rating span {
    color: rgba(26, 26, 26, 0.3);
    font-size: 12px;
}
/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 500px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .product-card .info .name {
        font-size: 13px;
    }
    .product-card .info .price {
        font-size: 14px;
    }
    .product-card .image-wrap .actions {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    .product-card .image-wrap .actions button {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .product-card .image-wrap .quick-add {
        font-size: 10px;
        padding: 10px;
    }
}

/* ── Pagination ── */
.woocommerce-pagination {
    margin-top: 40px;
    text-align: center;
}
.woocommerce-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 13px;
    color: var(--walnut);
    transition: all 0.3s ease;
}
.woocommerce-pagination .page-numbers.current {
    background: var(--brass);
    color: var(--white);
    border-color: var(--brass);
}
.woocommerce-pagination .page-numbers:hover:not(.current) {
    border-color: var(--brass);
    color: var(--brass);
}