/* 
  LUXURY LIGHTING - MODERN MINIMALIST THEME 

*/

:root {
    /* --- REFINED LUXURY COLOR PALETTE --- */
    --color-primary: #0a0a0a;
    /* Off-Black, softer than #000 */
    --color-secondary: #1a1a1a;
    --color-accent: #C5A059;
    /* Muted Brass Gold, more premium */
    --color-text: #444444;
    /* Softer dark gray for reading */
    --color-text-light: #777777;
    --color-text-dark: #111111;
    --color-background: #ffffff;
    --color-surface: #f8f8f8;
    --color-border: #e5e5e5;
    --color-white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
    --container-width: 1400px;

    /* Transitions */
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.3s ease-out;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.2;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

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

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation (Arhaus Style) */
.nav-container {
    position: sticky;
    /* Make it stick */
    top: 0;
    width: 100%;
    z-index: 1100;
    /* Increased to sit ABOVE mobile menu (1000) */
    background-color: var(--color-white);
    color: var(--color-text-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    /* Subtle shadow */
}

/* Top Row: Logo & Icons */
.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 10px 40px;
    position: relative;
}

/* Logo Fix */
.nav-center.logo-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    /* Critical Fix */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--color-black);
    text-align: center;
    white-space: nowrap;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--color-text-light);
    margin-top: 5px;
    text-transform: uppercase;
    text-align: center;
}

/* Utilities */
.nav-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    gap: var(--spacing-sm);
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.nav-icon-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-icon-link:hover {
    color: var(--color-primary);
}

/* Bottom Row (Links) */
.nav-bottom {
    display: flex;
    justify-content: center;
    padding: 12px 0 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    width: 100%;
}

.nav-center.desktop-only {
    display: flex;
    gap: 25px;
    /* Consistent spacing */
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.7rem;
    /* Reduced for fit */
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu (Button Style) */
.hamburger-btn {
    display: none;
    /* Mobile only */
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    /* touch target */
}

.hamburger-btn .bar {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
}

/* Icons (Boxicons) */
.nav-icon-link i,
.drawer-util-item i {
    font-size: 1.25rem;
    line-height: 1;
    vertical-align: middle;
}

.nav-icon-link i,
.drawer-util-item i {
    margin-right: 6px;
}

/* Visibility Utilities */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav-container {
        height: 60px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-top {
        padding: 0.5rem var(--spacing-sm);
    }
}

/* --- MOBILE NAVIGATION FULL WIDTH --- */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0;
        /* Full Width, no side gaps */
        height: 70px;
        background: #ffffff;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        /* Ensure strictly left aligned */
        right: 0;
        z-index: 9999;
    }

    /* Inner grid needs padding so content doesn't touch screen edges */
    .nav-top {
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        width: 100%;
        height: 100%;
        align-items: center;
        padding: 0 20px;
        /* Safe space for icons */
    }

    /* 1. Left (Hamburger) */
    .nav-left {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .hamburger-btn {
        width: 24px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .bar {
        width: 100%;
        height: 2px;
        /* Thicker for visibility */
        background-color: #000;
        /* Pure black */
        display: block;
        /* Ensure block */
    }

    /* 2. Center (Logo) */
    .nav-center {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* Stacked */
    }

    .logo {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        color: #000;
        /* Pure Black */
        text-decoration: none;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 0px;
    }

    .logo-sub {
        display: block;
        /* Show subtext */
        font-size: 0.5rem;
        letter-spacing: 0.2em;
        margin-top: 2px;
        color: #555;
    }

    /* 3. Right (Cart + Fav) */
    .nav-right {
        flex: 0 0 80px;
        /* Wider to fit 2 icons */
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
        /* Space between Heart and Bag */
    }

    .nav-icon-link {
        color: #000;
        font-size: 1.4rem;
        /* Slightly adjusted for pair balance */
        display: block;
        text-decoration: none;
    }

    /* Forcefully hide ANY text or count near cart icon on mobile */
    .cart-count,
    .cart-text,
    .nav-icon-link span,
    .cart-count.mobile-only {
        display: none !important;
    }

    /* Hide desktop specific items forcefully */
    .desktop-only,
    .desktop-utils {
        display: none !important;
    }
}

/* --- MOBILE DRAWER (FULL SCREEN SOLID) --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Changed from 100vw to prevent horizontal scrollbar overflow */
    height: 100%;
    /* Changed from 100vh for iOS safari address bar safety usage usually, but 100vh or 100% fixed is ok. 100% of viewport-filling body is safer */
    background-color: #ffffff !important;
    /* FORCE SOLID WHITE */
    z-index: 2000;
    /* Must be higher than nav header */
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 80px 20px 40px 20px;
    /* Top padding clears the header */
    box-sizing: border-box;
    /* Include padding in width/height */
    overflow-y: auto;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    /* Align close button to right */
    align-items: center;
    padding-bottom: 20px;
    width: 100%;
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    padding: 10px;
    /* Hit area */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.drawer-close:hover {
    transform: rotate(90deg);
}

/* Since the global header is visible (transparent/white), we need to ensure
   the drawer COVERS everything including the header OR sits below it.
   Best UX: Drawer covers EVERYTHING. */

@media (max-width: 1024px) {

    /* Increase drawer z-index to cover the sticky nav */
    .mobile-drawer {
        z-index: 10001;
        /* Higher than nav-container (9999) */
        top: 0;
        padding-top: 20px;
        /* Reset padding if we cover header */
    }

    /* We need a close button inside the drawer now since it covers the header */
    .drawer-header {
        display: flex;
        justify-content: flex-end;
        padding-bottom: 20px;
    }
}

.drawer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Main Mobile Links */
.drawer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    /* Big Typography */
    text-decoration: none;
    color: #000;
    display: block;
    font-weight: 500;
    line-height: 1.1;
}

.drawer-divider {
    height: 1px;
    background-color: #eee;
    margin: 30px 0;
}

/* Mobile Utils Grid */
.drawer-utils {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.drawer-util-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
}

.drawer-util-item i {
    font-size: 1.4rem;
    color: var(--color-primary);
}

/* Responsive Media Queries */

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .nav-top {
        height: 60px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        height: 60px;
        overflow: hidden;
    }

    /* Lock height */

    .logo {
        font-size: 1.25rem;
    }

    .nav-right .nav-icon-link {
        font-size: 0;
        /* Hide text */
    }

    .nav-right .nav-icon-link span {
        font-size: 1.4rem !important;
        /* Keep icons visible */
    }

    .hero {
        height: calc(100vh - 60px);
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn-arhaus {
        padding: 0.8rem 2rem;
    }

    /* Close icon animation state */
    body.menu-open .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    body.menu-open .hamburger span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section (Cinematic Redesign) */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    margin-top: -60px;
    /* Pull behind transparent header if we wanted, but here it compensates for potential spacing or sits below nav */
}

/* Compensate for the sticky header if we want full immersion, 
   but since header is white/sticky, let's just make hero full height below it or subtract header height. 
   Let's stick to full 100vh for impact. */
.hero-section {
    height: calc(100vh - 70px);
}

@media (max-width: 1024px) {
    .hero-section {
        height: calc(100vh - 60px);
    }
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomDrift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

@keyframes zoomDrift {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-md);
}

.hero-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtext {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

/* Hero Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--color-white);
}

.btn-hero-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    transition: opacity 0.3s ease;
}

.btn-hero-secondary i {
    font-size: 1.25rem;
}

.btn-hero-secondary:hover {
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Minimal Hero Adjustments */
.hero-section.minimal .hero-overlay.minimal-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 100%);
}

.hero-content.minimal-content {
    text-align: center;
}

.hero-headline {
    font-size: 5rem;
    /* Adjustable for long words */
    line-height: 0.9;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.5rem;
    letter-spacing: 0.8em;
    /* Super wide tracking for 'AVİZE' */
    text-transform: uppercase;
    font-weight: 400;
    margin-left: 0.4em;
    /* Optical centering compensation */
    color: rgba(255, 255, 255, 0.9);
}

/* --- COMPACT MINIMAL HERO --- */
.hero-section.compact {
    padding: 120px 0 60px 0;
    /* Top padding for nav */
    background-color: var(--color-white);
}

/* --- HERO SECTION: CINEMATIC MASTER SLIDER --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full Viewport */
    background-color: #000;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slide */
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s;
    z-index: 1;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background Layer with Ken Burns Effect */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 6s ease-out;
    /* Smooth zoom reset */
}

.slide-item.active .slide-bg img {
    transform: scale(1.1);
    /* Slow zoom in */
    transition: transform 10s ease-out;
}

/* Dark Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    /* Explicitly White */
    padding-top: 60px;
    /* Navbar offset */
}

/* Typography */
.slide-subtitle {
    display: block;
    font-family: var(--font-body);
    /* Clean Sans-Serif */
    font-size: 0.75rem;
    font-weight: 700;
    /* Bold for structure */
    letter-spacing: 0.3em;
    /* Luxurious spacing */
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    display: inline-block;
}

.slide-item.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    /* Larger, more impactful */
    line-height: 1;
    font-weight: 700;
    /* Bold Serifs */
    letter-spacing: -0.02em;
    /* Tighter for editorial look */
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.slide-item.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title .italic {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    /* Light & Elegant contrast */
    color: #ffffff;
    padding-left: 0.1em;
}

.slide-desc {
    font-family: var(--font-body);
    font-weight: 300;
    /* Light */
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.slide-item.active .slide-desc {
    opacity: 0.9;
    transform: translateY(0);
}

/* Button */
.slide-btn-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.8s;
}

.slide-item.active .slide-btn-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.btn-hero-slider {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    /* Glass */
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-hero-slider:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* --- Controls --- */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    pointer-events: none;
    /* Let clicks pass through except on btns */
}

/* Arrows */
.slider-prev,
.slider-next {
    pointer-events: auto;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Dots */
.slider-dots {
    pointer-events: auto;
    display: flex;
    gap: 15px;
}

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

.dot.active {
    background-color: #fff;
}

/* Bottom Scroll Indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 20px;
}

.scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #fff, transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .slide-title {
        font-size: 3rem;
    }

    .slider-controls {
        padding: 0 20px;
        bottom: 30px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
}



.hero-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Text | Image */
    gap: var(--spacing-xl);
    align-items: center;
}

/* Text Side */
.hero-text-side {
    padding-right: var(--spacing-md);
}

.hero-label-small {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.hero-title-compact {
    font-family: var(--font-heading);
    font-size: 4rem;
    /* Big but not huge */
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hero-subtitle-compact {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.6em;
    /* The wide tracking look */
    color: var(--color-text-dark);
    font-weight: 400;
    margin-bottom: 2.5rem;
    margin-left: 4px;
    /* Optical alignment */
}

/* Actions */
.hero-compact-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-compact-primary {
    padding: 1rem 3rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 1px solid var(--color-primary);
}

.btn-compact-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-compact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.btn-compact-link:hover {
    gap: 10px;
}

/* Image Side */
.hero-img-side {
    position: relative;
}

.img-frame {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    /* Soft edges approach */
    /* border-radius: 4px; optional */
}

.hero-compact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.img-frame:hover .hero-compact-img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-compact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text-side {
        text-align: center;
        padding-right: 0;
        order: 2;
        /* Image top? or Text top? Let's keep Text top for brand impact */
        order: 1;
    }

    .hero-compact-actions {
        justify-content: center;
    }

    .hero-title-compact {
        font-size: 3rem;
    }

    .hero-subtitle-compact {
        font-size: 1.2rem;
        letter-spacing: 0.4em;
    }

    .img-frame {
        height: 350px;
    }
}

/* Stories Section (Instagram Style) */
.stories-section {
    background-color: var(--color-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.stories-wrapper {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0 var(--spacing-md);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
    justify-content: center;
    /* Center if few items, scroll if many */
}

.stories-wrapper::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome */
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    scroll-snap-align: center;
    cursor: pointer;
    min-width: 80px;
}

/* The 'Ring' Container */
.story-ring {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    padding: 3px;
    /* Space between border and image */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* IG Gradient */
    background: linear-gradient(45deg, #D4AF37, #F2E8C9, #D4AF37);
    /* Luxury Gold Gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.story-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-white);
    /* White gap */
    background-color: var(--color-white);
}

.story-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
}

.story-item:hover .story-ring {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .stories-wrapper {
        justify-content: flex-start;
        /* Enable scrolling on smaller screens */
    }

    .hero-headline {
        font-size: 4rem;
        /* Smaller on mobile */
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.75rem;
    }

    .hero-subtext {
        font-size: 1rem;
        max-width: 90%;
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
    }
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.section-desc {
    color: var(--color-text);
    font-size: 1rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- INTERACTIVE ACCORDION COLLECTION --- */
.collection-accordion {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
    overflow: hidden;
}

.accordion-header {
    margin-bottom: 60px;
}

.accord-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.accord-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
}

.accordion-wrapper {
    display: flex;
    width: 100%;
    height: 600px;
    /* Tall panel area */
    gap: 0;
    /* Seamless look */
}

.accord-panel {
    position: relative;
    flex: 1;
    /* All equal normally */
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.accord-panel:last-child {
    border-right: none;
}

/* Hover / Active Interaction */
.accord-panel:hover,
.accord-panel.active {
    flex: 4;
    /* Expand significantly */
}

/* Background Image */
.accord-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 0.5s ease;
    filter: grayscale(100%) brightness(0.6);
    /* Default dark/grey */
}

.accord-panel:hover .accord-img,
.accord-panel.active .accord-img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.9);
    /* Live color on active */
}

.accord-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

/* Content Positioning */
.accord-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: var(--color-white);
    opacity: 0;
    /* Hidden by default */
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    width: max-content;
}

/* Show content ONLY when expanded */
.accord-panel:hover .accord-content,
.accord-panel.active .accord-content {
    opacity: 1;
    transform: translateY(0);
}

/* Vertical Text for collapsed state (Optional advanced trick, or just keep it minimal) */
/* We will keep it minimal: collapsed panels are just mysterious slices */

.accord-num {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.5;
}

.accord-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    /* Keep on one line */
}

.accord-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 400px;
    line-height: 1.6;
    display: none;
    /* Hide desc on mobile or small expands initially */
}

.accord-panel:hover .accord-desc,
.accord-panel.active .accord-desc {
    display: block;
    animation: fadeInUp 0.5s forwards;
}

.accord-link {
    display: inline-block;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 5px;
    transition: color 0.3s;
}

.accord-link:hover {
    color: var(--color-accent);
}

/* Responsive Accordion */
@media (max-width: 768px) {
    .accordion-wrapper {
        flex-direction: column;
        height: auto;
    }

    .accord-panel {
        height: 100px;
        /* Collapsed height */
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .accord-panel:hover,
    .accord-panel.active {
        flex: auto;
        height: 400px;
        /* Expanded height */
    }

    .hero-headline {
        font-size: 3.5rem;
        /* Mobile fix for long name */
    }

    .hero-subtext {
        font-size: 1rem;
        letter-spacing: 0.4em;
    }
}

/* --- CATEGORIES SECTION (INSTAGRAM STORIES STYLE) --- */
.categories-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    /* Center on desktop */
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    /* Enable scroll on small screens */
    white-space: nowrap;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.categories-section::-webkit-scrollbar {
    display: none;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    width: 90px;
    flex-shrink: 0;
    cursor: pointer;
}

.cat-img-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    /* Space for border */
    background: transparent;
    border: 2px solid var(--color-border);
    /* Default border */
    position: relative;
    transition: all 0.3s ease;
}

/* Active/Hover State: Insta Story Gradient Ring */
.cat-item:hover .cat-img-box {
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    /* Inner white border */
}

.cat-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

@media (max-width: 768px) {
    .categories-section {
        justify-content: flex-start;
        /* Left align for scroll */
        padding: 40px 20px;
        gap: 25px;
    }
}

/* --- FEATURED PRODUCTS SECTION --- */
.featured-products {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--color-border);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    /* Vertical Portrait for luxury */
    background-color: #f7f7f7;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.product-card:hover .product-img {
    transform: scale(1.08);
    /* Slow zoom */
}

/* Action Buttons (Hidden by default, slide up on hover) */
.product-actions {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.action-btn {
    width: 45px;
    height: 45px;
    background-color: var(--color-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1.2rem;
}

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

.badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.65rem;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Product Info */
.product-info {
    text-align: center;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.product-cat {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-price {
    font-weight: 600;
    color: var(--color-text-dark);
}

.btn-text-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s;
}

.btn-text-dark:hover {
    gap: 15px;
    border-color: var(--color-primary);
}

/* --- SEO CONTENT SECTION (LUXURY TEXT) --- */
.seo-section {
    padding: 100px 0;
    background-color: var(--color-primary);
    /* Dark Background */
    color: rgba(255, 255, 255, 0.8);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.seo-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.seo-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 40px;
}

.seo-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

.seo-content strong,
.seo-content em {
    color: var(--color-white);
    font-weight: 500;
    font-style: normal;
}

.seo-img-holder {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.seo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    /* Slight fade for integration */
}

/* Button Outline Light */
.btn-outline-light {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Maintain 2 cols on mobile for e-comm density, or 1 for size */
        gap: 15px;
        /* Tighter gap on mobile */
    }

    .seo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-img-holder {
        height: 300px;
        order: -1;
        /* Image first on mobile? or Text first. Text first for SEO. */
    }

    .seo-title {
        font-size: 2rem;
    }
}

/* --- SECOND PRODUCT SECTION: HORIZONTAL SCROLL --- */
.product-slider-section {
    padding: 80px 0;
    overflow: hidden;
}

.product-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5%;
    /* Side padding for peek effect */
    scroll-snap-type: x mandatory;
    margin-top: 40px;
    /* Hide Scroll bars */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-card {
    min-width: 280px;
    scroll-snap-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle border */
}

.scroll-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square for variety */
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.scroll-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.scroll-info {
    padding: 15px;
    text-align: center;
}

.scroll-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.scroll-info .price {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.badge-hot {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4757;
    color: white;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 2px;
}

/* --- MEGA FOOTER --- */
.site-footer {
    background-color: var(--color-primary);
    /* Dark luxury */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--color-accent);
    /* Gold visual break */
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Col */
.footer-logo {
    display: inline-block;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-decoration: none;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--color-accent);
    margin-top: 5px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--color-white);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Links Col */
.footer-heading {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, padding-left 0.3s;
}

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

/* Newsletter Col */
.newsletter-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-white);
    padding: 10px 0;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--color-accent);
    font-size: 1.2rem;
    cursor: pointer;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-policies {
    display: flex;
    gap: 20px;
}

.footer-policies a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .product-slider-section {
        padding: 40px 0;
    }

    .scroll-card {
        min-width: 220px;
        /* Smaller cards mobile */
    }
}

.expertise-section {
    padding: var(--spacing-xl) 0;
    background-color: #fcfcfc;
    /* Ultra light grey for depth */
    overflow: hidden;
    /* For the big numbers */
}

.editorial-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    isolation: isolate;
    /* Creates a new stacking context */
}

/* Alternating Layout */
.editorial-item.reverse {
    flex-direction: row-reverse;
}

/* Visual Area (The Image) */
.ed-visual {
    flex: 0 0 65%;
    /* Takes 65% of width */
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.ed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.editorial-item:hover .ed-img {
    transform: scale(1.05);
    /* Slow elegant zoom */
}

/* Content Area (The Floating Card) */
.ed-content-wrapper {
    flex: 1;
    z-index: 2;
    margin-left: -10%;
    /* The Overlap Magic */
    position: relative;
}

.editorial-item.reverse .ed-content-wrapper {
    margin-left: 0;
    margin-right: -10%;
}

.ed-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.editorial-item:hover .ed-card {
    transform: translateY(-5px);
}

/* Decorative Gold Line */
.ed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-accent);
}

.editorial-item.reverse .ed-card::before {
    left: auto;
    right: 0;
}

/* Massive Background Number */
.ed-number {
    position: absolute;
    top: -60px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 15rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 0;
}

.editorial-item.reverse .ed-number {
    right: auto;
    left: 20px;
}

/* Typography */
.ed-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 50px;
}

.ed-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--color-accent);
}

.ed-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    /* Bigger title */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.ed-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    /* Darker for better read */
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* TRUST Features Strip */
.ed-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.spec-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    font-weight: 500;
}

/* Button Refinement */
.btn-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid var(--color-primary);
}

.btn-editorial:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {

    .editorial-item,
    .editorial-item.reverse {
        flex-direction: column;
        margin-bottom: 80px;
    }

    .ed-visual {
        flex: auto;
        width: 100%;
        height: 400px;
    }

    .ed-content-wrapper {
        width: 90%;
        margin: -50px auto 0;
        /* Neg margin to overlap upwards */
        margin-left: auto;
        margin-right: auto;
    }

    .ed-card {
        padding: 2rem;
    }

    .ed-title {
        font-size: 2rem;
    }
}

.collection-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
    /* group hover fix */
}

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: var(--color-white);
    transform: translateY(0);
    transition: transform var(--transition-slow);
}

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

.collection-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-xs);
}

.collection-link {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.collection-card:hover .collection-link {
    border-bottom-color: var(--color-white);
}

/* Featured Products */
.featured {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-card {
    text-align: left;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    background-color: #F3F4F6;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    /* Assuming product shots are clean */
    padding: 0 !important;
    transition: transform var(--transition-slow);
}

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

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
}

.product-spec {
    font-size: 0.875rem;
    color: var(--color-text);
}

/* Brand Values */
.brand-values {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent);
}

.value-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 300px;
    margin: 0 auto;
}

/* Contact CTA */
.contact-cta {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background-color: var(--color-bg);
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-text {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    transition: background-color var(--transition-fast);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Initial Animation States */
.hero-label,
.hero-headline,
.hero-subtext,
.hero-cta,
.scroll-indicator {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --- ADVANCED CATEGORY HEADER --- */
.category-header-advanced {
    padding: 140px 0 80px 0;
    background-color: #fcfcfc;
    border-bottom: 1px solid var(--color-border);
}

.cat-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cat-title-large {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.9;
    color: var(--color-primary);
    margin: 20px 0 30px 0;
}

.cat-title-large .serif-italic {
    font-size: 5.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-dark);
}

.cat-desc-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 50px;
    max-width: 500px;
}

/* Collection Specs */
.cat-specs {
    display: flex;
    gap: 50px;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}

.cat-specs .spec {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* --- PRODUCT PAGE: EDITORIAL LUXURY (REVISED) --- */
.product-page-wrapper {
    padding-top: 40px;
    padding-bottom: 100px;
    background-color: var(--color-white);
}

.product-editorial-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Image dominant layout */
    gap: 80px;
    align-items: start;
    position: relative;
}

/* LEFT: SCROLLING GALLERY */
.product-gallery-scroll {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Space between huge images */
}

.scroll-item {
    width: 100%;
    background-color: #f7f7f7;
    /* Subtle backdrop */
    position: relative;
    overflow: hidden;
}

.scroll-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.scroll-item:hover img {
    transform: scale(1.03);
    /* Cinematic slow zoom */
}

/* RIGHT: STICKY INFO PANEL */
.product-info-sticky {
    position: sticky;
    top: 120px;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

/* Typography Hierarchy */
.p-header {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

.p-collection-tag {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--color-text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.p-title-luxury {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--color-primary);
    margin: 0 0 15px 0;
}

.p-price-luxury {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    display: block;
}

.p-desc-luxury {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 40px;
    max-width: 90%;
}

/* Minimal specs */
.p-specs-clean {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.spec-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-row .lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.spec-row .val {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
}

/* Options: Text Only Mode */
.p-options-luxury {
    margin-bottom: 50px;
}

.opt-line {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.opt-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.opt-text-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.opt-txt-btn {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--color-text-light);
    cursor: pointer;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.opt-txt-btn:hover,
.opt-txt-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Actions: High Fashion */
.p-actions-luxury {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.btn-cart-luxury {
    flex: 1;
    background-color: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
    padding: 20px 0;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-cart-luxury:hover {
    background-color: white;
    color: var(--color-primary);
}

.btn-wish-luxury {
    width: 60px;
    border: 1px solid var(--color-border);
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-wish-luxury:hover {
    border-color: #ff4757;
    color: #ff4757;
}

.p-footer-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: auto;
}

.p-footer-note a {
    color: var(--color-text);
    text-decoration: underline;
}

/* Responsive Editorial */
@media (max-width: 1024px) {
    .product-editorial-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .product-gallery-scroll {
        order: 1;
        /* Images TOP */
    }

    .product-info-sticky {
        order: 2;
        /* Info BOTTOM */
        position: static;
        padding-top: 0;
    }





    .p-title-luxury {
        font-size: 2.5rem;
    }
}

/* Related Products */
.related-products {
    padding-bottom: 100px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
}

.cat-specs .lbl {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.cat-specs .val {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

/* Visual Side */
.cat-header-img {
    height: 500px;
    overflow: hidden;
    /* Optional: shape mask */
    border-radius: 4px;
}

.header-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .cat-title-large {
        font-size: 4rem;
    }

    .cat-title-large .serif-italic {
        font-size: 4.5rem;
    }

    .cat-header-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .category-header-advanced {
        padding: 100px 0 40px 0;
    }

    .cat-header-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cat-header-text {
        order: 2;
        /* Text below image on mobile usually looks cleaner, or above. Let's keep above for title impact. */
        order: 1;
    }

    .cat-header-img {
        order: 2;
        height: 300px;
    }

    .cat-title-large {
        font-size: 3rem;
    }

    .cat-title-large .serif-italic {
        font-size: 3.5rem;
    }

    .cat-specs {
        gap: 30px;
        flex-wrap: wrap;
    }
}

/* Main Layout */
.category-main {
    padding: 60px 20px;
}

.cat-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Toolbar */
.cat-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.product-count {
    margin-right: auto;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-label {
    font-size: 0.9rem;
    color: var(--color-text);
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

/* Sidebar Filters */
.cat-sidebar {
    position: sticky;
    top: 100px;
    /* Below header */
}

.filter-group {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.2s;
}

.checkbox-item:hover {
    color: var(--color-primary);
}

.checkbox-item input {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
}

/* Color Dots */
.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-block;
}

.color-dot.gold {
    background: #cca43b;
}

.color-dot.chrome {
    background: #e0e0e0;
}

.color-dot.black {
    background: #000;
}

.color-dot.copper {
    background: #b87333;
}

/* Grid Variant */
.product-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s;
}

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

/* Responsive Category */
@media (max-width: 1024px) {
    .cat-layout {
        grid-template-columns: 1fr;
        /* No sidebar */
    }

    .cat-sidebar.desktop-only {
        display: none;
    }

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

    .btn-filter-toggle.mobile-only {
        display: flex;
        align-items: center;
        gap: 8px;
        background: none;
        border: 1px solid var(--color-primary);
        padding: 10px 20px;
        font-family: var(--font-body);
        font-size: 0.9rem;
        cursor: pointer;
    }

    .cat-toolbar {
        justify-content: space-between;
    }

    .cat-page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .product-grid.three-col {
        grid-template-columns: 1fr;
    }

    .cat-toolbar {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .btn-filter-toggle.mobile-only,
    .sort-select {
        width: 100%;
        justify-content: center;
    }

    .sort-wrapper {
        width: 100%;
        justify-content: space-between;
    }
}

/* --- FAQ SECTION (LUXURY ACCORDION) --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.faq-desc {
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-weight: 300;
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-header {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--color-primary);
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-dark);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--color-text-light);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    /* Turn (+) to (x) */
    color: var(--color-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-body {
    padding-bottom: 30px;
    color: var(--color-text);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.9;
}

/* --- LUXURY WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse-luxury 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse-luxury {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-header {
        position: static;
        margin-bottom: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Hide tooltip on mobile */
    }
}

/* --- Product Gallery Grid Refinement --- */
.gallery-item-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    /* Hafif yumuşak köşe */
}

/* Yan yana duran küçük resimler için oran (4:5 dikey dikdörtgen - ideal portre oranı) */
.col-6 .gallery-item-wrapper {
    aspect-ratio: 4 / 5;
}

/* En üstteki büyük resim için oran (Daha geniş veya serbest olabilir ama hizalı durması için kareye yakın) */
.col-12 .gallery-item-wrapper {
    aspect-ratio: 1 / 1;
    /* veya 4/3 */
}

@media (min-width: 992px) {
    .col-12 .gallery-item-wrapper {
        aspect-ratio: 4 / 3;
        /* Masaüstünde biraz daha yatay */
    }
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi kutuya sığdır, taşanı kes (Bozulmayı önler) */
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item-wrapper:hover .gallery-img {
    transform: scale(1.03);
    /* Hafif zoom efekti */
}

/* --- Product Card Fixes --- */
.product-card {
    height: 100%;
    /* Kartların hepsi eşit boyda olsun */
    display: flex;
    flex-direction: column;
}

.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f8f9fa;
    margin-bottom: 15px;
    padding: 0 !important;
}

.product-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi sündürmeden kutuya sığdır */
    transition: transform 0.6s ease;
    display: block;
}

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

.product-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.4;

    /* Uzun başlıkları kes */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Max 2 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- CATEGORY & FILTER SYSTEM (PREMIUM) --- */

/* Layout */
.cat-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding-bottom: 80px;
}

@media (max-width: 991px) {
    .cat-layout {
        grid-template-columns: 1fr;
        /* Mobilde tek kolon */
    }
}

/* Sidebar (Masaüstü) */
.cat-sidebar {
    position: sticky;
    top: 100px;
    /* Header yüksekliğine göre ayarla */
    height: fit-content;
    padding-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

/* Filter Groups */
.filter-group {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.filter-title:hover {
    color: #666;
}

.filter-title i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.filter-group.active .filter-title i {
    transform: rotate(180deg);
}

.filter-content {
    display: block;
    /* JS ile toggle yapılacak */
    padding-top: 10px;
}

/* Custom List Styles */
.cat-sidebar ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.cat-sidebar ul li a:hover,
.cat-sidebar ul li a.active {
    color: #000;
    padding-left: 5px;
    /* Hafif sağa kayma */
    font-weight: 500;
}

.cat-sidebar ul li a.active::before {
    content: '•';
    margin-right: 8px;
    color: #000;
}

/* Toolbar & Sort */
.cat-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.product-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #777;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 0.9rem;
    color: #555;
}

.sort-select {
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    outline: none;
    text-align: right;
}

/* Mobile Filter Drawer (Gizli) */
.mobile-filter-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    padding: 20px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-filter-drawer.active {
    left: 0;
}

.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* --- SEO & E-E-A-T CONTENT STYLING (LUXURY) --- */

.seo-content-section {
    background-color: #f9f9f9;
    /* Çok hafif gri elit zemin */
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.font-playfair {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    color: #000;
}

/* Uzman Görüşü Kutusu */
.expert-sign {
    border-top: 1px solid #ddd;
    display: inline-block;
    padding-top: 15px;
    width: 100%;
    max-width: 200px;
}

/* Teknik Liste */
.list-unstyled li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
}

.list-unstyled li i {
    font-size: 1.2rem;
    color: #000;
    /* İkonlar siyah */
    margin-right: 10px;
    flex-shrink: 0;
}

/* Minimalist Accordion (FAQ) */
.faq-section-seo .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e5e5 !important;
}

.faq-section-seo .accordion-button {
    background: transparent !important;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 20px 0;
    box-shadow: none !important;
    /* Mavi glow'u kaldır */
}

.faq-section-seo .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-section-seo .accordion-button:not(.collapsed) {
    color: #000;
    /* Başlık aktifken siyah */
}

.faq-section-seo .accordion-body {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-content-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* --- MINIMAL PRODUCT CARD (COMPACT) --- */
.minimal-card .product-img-wrap {
    aspect-ratio: 4 / 5;
    /* Daha kısa, kompakt oran */
    margin-bottom: 10px;
    background: #f4f4f4;
}

.minimal-card .product-info {
    text-align: center;
    /* Minimal olması için ortaladık */
}

.minimal-card .product-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 2px;
    display: block;
}

.minimal-card .product-title {
    font-size: 0.9rem;
    /* Yazıyı küçülttük */
    font-weight: 500;
    margin-bottom: 4px;
    height: auto;
    /* Yüksekliği serbest bırak */
    -webkit-line-clamp: 1;
    /* Tek satıra indir */
}

.minimal-card .product-price {
    font-size: 0.95rem;
    color: #000;
}

/* Aksiyon butonlarını sadece hover'da göster (Yer kaplamasın) */
.minimal-card .product-actions {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

/* Mobilde boşlukları daha da kıs */
@media (max-width: 768px) {
    .minimal-card .product-title {
        font-size: 0.8rem;
    }

    .section-header {
        margin-bottom: 2rem !important;
        /* Başlık ile ürünler arasını kıs */
    }
}

/* --- MEGA LUXURY FOOTER (DARK GRANDEUR) --- */
.luxury-footer {
    background-color: #050505;
    /* Derin siyah */
    color: #e0e0e0;
    padding-top: 100px;
    padding-bottom: 40px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Çok hafif sınır */
}

.f-logo {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    text-decoration: none;
}

.f-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 300px;
}

.f-title {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.f-links li {
    margin-bottom: 15px;
}

.f-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.f-links a:hover {
    color: #fff;
    transform: translateX(5px);
    /* Hover'da sağa kayma */
}

/* Newsletter Input */
.f-form .input-group {
    border-bottom: 1px solid #444;
}

.f-form .form-control {
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
    padding-left: 0;
}

.f-form .form-control::placeholder {
    color: #555;
    font-size: 0.9rem;
}

.f-form .form-control:focus {
    box-shadow: none;
    border-color: #fff;
}

.f-form .btn {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding-right: 0;
}

.f-form .btn:hover {
    color: #ccc;
}

/* Social & Contact */
.f-socials {
    display: flex;
    gap: 20px;
}

.f-socials a {
    color: #fff;
    font-size: 1.4rem;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.f-socials a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.f-contact-info {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

.f-contact-info i {
    margin-right: 8px;
    color: #fff;
}

/* Bottom Bar */
.f-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
}

.payment-icons i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.3;
    margin-left: 10px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .luxury-footer {
        padding-top: 60px;
    }

    .f-bottom .text-md-end {
        text-align: center !important;
        margin-top: 15px;
    }
}

/* --- FOOTER FIXES (ACİL DÜZELTME) --- */

/* 1. Hizalama Sorununu Çöz */
.luxury-footer {
    text-align: left !important;
    /* Ortalamayı zorla iptal et */
}

.luxury-footer .container {
    max-width: 1400px;
    /* Daha geniş, ferah */
}

/* Sütunları netleştir */
.luxury-footer .row {
    display: flex;
    flex-wrap: wrap;
}

.luxury-footer .col-lg-4,
.luxury-footer .col-lg-2 {
    padding-right: 30px;
}

/* 2. Yazıları Okunabilir Yap */
.f-desc {
    font-size: 0.95rem;
    /* Biraz büyüt */
    color: #bbb;
    /* Daha parlak gri */
    max-width: 90%;
    margin-top: 15px;
}

.f-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Altına çizgi çek ki başlık belli olsun */
    padding-bottom: 10px;
    display: inline-block;
}

/* 3. Linkleri Düzenle */
.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    font-size: 1rem;
    color: #aaa;
}

.f-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* 4. Newsletter Düzeltmesi */
.f-form .input-group {
    display: flex;
    align-items: center;
    border: 1px solid #555;
    /* Daha belirgin çerçeve */
    padding: 5px 10px;
    border-radius: 4px;
}

.f-form .form-control {
    color: #fff !important;
}

.f-form .btn {
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 2px;
}

.f-form .btn:hover {
    background: #ccc;
    color: #000;
}

/* 5. Alt Kısım */
.f-bottom {
    margin-top: 60px;
    text-align: center;
    /* Alt kısım ortalı olabilir veya sola yaslı */
}

@media (min-width: 992px) {
    .f-bottom .text-md-start {
        text-align: left !important;
    }

    .f-bottom .text-md-end {
        text-align: right !important;
    }
}

/* 6. Mobil İyileştirme */
@media (max-width: 768px) {
    .luxury-footer {
        /* text-align: center !important; REMOVED FOR BETTER LAYOUT */
    }

    .f-title {
        border-bottom: none;
        display: block;
    }

    .f-socials {
        justify-content: center;
    }

    .f-desc {
        margin: 0 auto 30px auto;
    }
}


/* --- MOBILE GRID IMPROVEMENTS --- */
@media (max-width: 768px) {
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 10px !important;
    }

    .product-card {
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    .product-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .product-img-wrap {
        aspect-ratio: 1/1 !important;
        margin-bottom: 10px !important;
    }

    .product-title {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 5px !important;
        height: 38px !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2;
        -webkit-box-orient: vertical !important;
    }

    .product-price {
        font-size: 0.9rem !important;
    }

    .new-price {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
    }
}

/* --- NEW BLOG REDESIGN --- */
.blog-header {
    padding: 120px 0 80px;
    text-align: center;
    background-color: #fff;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.blog-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* Featured Post */
.featured-post {
    margin-bottom: 80px;
}

.featured-img-container {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-post:hover .featured-img {
    transform: scale(1.05);
}

.featured-content {
    padding: 40px 0;
    text-align: center;
}

/* Post Grid */
.post-card {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-img-link {
    display: block;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 4/5;
    /* Portrait aspect ratio for elegance */
    position: relative;
}

.post-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.post-card:hover .post-thumb {
    transform: scale(1.1);
}

.post-meta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 15px;
    display: block;
}

.post-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 400;
}

.post-excerpt {
    font-family: var(--font-body);
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--color-text-light);
    border-color: transparent;
}

/* Article Detail */
.article-header {
    text-align: center;
    padding: 80px 0 60px;
    max-width: 900px;
    margin: 0 auto;
}

.article-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 30px;
}

.article-meta-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
}

.article-meta-row span:not(:last-child)::after {
    content: '';
    /* Separator */
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 25px;
}

.article-hero-img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    margin-bottom: 60px;
}

.article-body-container {
    max-width: 740px;
    /* Optimal reading width */
    margin: 0 auto 100px;
    font-family: 'Inter', sans-serif;
    /* Clean sans-serif for body */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-body-container p {
    margin-bottom: 2rem;
}

.article-body-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-body-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body-container ul,
.article-body-container ol {
    margin-bottom: 2rem;
    padding-left: 20px;
}

.article-body-container li {
    margin-bottom: 0.5rem;
}

.dropcap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.85;
    margin-right: 15px;
    margin-top: 5px;
    color: #000;
}

.share-section {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- CUSTOM BREADCRUMB --- */
.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #ccc;
    font-weight: 300;
}

/* Ensure list styling is reset */
.breadcrumb-item {
    display: inline-flex;
    /* Fix for numeral listing issue if browser defaults interfere */
}

/* Hide duplicate numerals if ol default styling is leaking */
.breadcrumb {
    list-style: none !important;
}

/* --- MOBILE BREADCRUMB FIX --- */
@media (max-width: 768px) {
    .product-page-wrapper {
        padding-top: 10px;
        /* Even smaller padding on mobile */
    }

    .breadcrumb {
        font-size: 0.65rem !important;
        margin-bottom: 20px !important;
        /* Ensure it wraps or scrolls if needed, but wrap is safer */
        flex-wrap: wrap;
        line-height: 1.5;
        padding-left: 15px;
        /* Add some safe area */
        padding-right: 15px;
    }

    .breadcrumb-item {
        margin-right: 5px;
    }
}

/* --- MOBILE BREADCRUMB SCROLL FIX --- */
@media (max-width: 768px) {
    .mobile-breadcrumb-scroll {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
        /* Scrollbar space */
        margin-bottom: 15px !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }

    .mobile-breadcrumb-scroll .breadcrumb {
        display: flex;
        flex-wrap: nowrap !important;
        /* Force single line */
        padding: 0;
    }

    .mobile-breadcrumb-scroll .breadcrumb-item {
        flex: 0 0 auto;
        /* Don't shrink */
        font-size: 0.65rem !important;
        margin-right: 5px;
    }

    /* Hide scrollbar but keep functionality */
    .mobile-breadcrumb-scroll::-webkit-scrollbar {
        display: none;
    }
}

/* --- FOOTER MOBILE FIX (SIDE-BY-SIDE + LEFT ALIGN) --- */
@media (max-width: 768px) {

    /* 1. Zorunlu Sola Hizalama (Daha temiz liste görünümü için) */
    .luxury-footer {
        text-align: left !important;
        padding-top: 40px !important;
    }

    /* 2. Linkleri Yan Yana Zorla (2 Kolon) */
    .luxury-footer .col-6 {
        width: 50% !important;
        float: left !important;
        /* Flex fail durumunda garanti olsun */
        padding-right: 10px !important;
        margin-bottom: 30px !important;
    }

    /* Brand ve Newsletter tam genişlik */
    .luxury-footer .col-lg-4 {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        /* Logo ve ikonlar ortalı kalsın */
    }

    /* Link listesi sıkılaştırma */
    .f-links li {
        margin-bottom: 8px !important;
    }

    .f-links a {
        font-size: 0.85rem !important;
        color: #ccc !important;
    }

    .f-title {
        font-size: 0.9rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-bottom: 5px !important;
        margin-bottom: 15px !important;
        display: inline-block !important;
    }

    /* Sosyal İkonlar (Brand altı) */
    .f-socials {
        justify-content: center !important;
        margin-top: 15px !important;
        margin-bottom: 20px !important;
    }

    /* Newsletter hizalaması */
    .f-form .input-group {
        justify-content: center !important;
    }
}
/* --- MOBILE BLOG TYPOGRAPHY IMPROVEMENTS --- */
@media (max-width: 768px) {
    /* Blog Title - Daha büyük ve okunaklı */
    .blog-title, 
    .blog-title a,
    .post-title,
    .post-title a {
        font-size: 1.4rem !important; /* Eskiden h5 (1.25rem) idi */
        line-height: 1.4 !important;
        font-weight: 500 !important;
    }

    /* Excerpt - Okunabilir metin boyutu */
    .blog-excerpt,
    .post-excerpt {
        font-size: 1.05rem !important; /* Eskiden small veya 0.9rem idi */
        line-height: 1.6 !important;
        color: #444 !important; /* Biraz daha koyu gri */
    }

    /* Read More Link - Daha belirgin */
    .read-more-link,
    .read-more {
        font-size: 0.9rem !important;
        padding-bottom: 3px !important;
        border-bottom-width: 2px !important; /* Alt çizgi kalınlaşsın */
    }

    /* Tarih Bilgisi */
    .blog-date,
    .post-meta {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }
}

/* --- MOBILE HEADER & STRUCTURE SIZING UP --- */
@media (max-width: 768px) {
    /* 1. Header Yüksekliğini Artır */
    .nav-container {
        padding: 20px 0 !important;
    }
    
    .logo {
        font-size: 1.6rem !important; /* Logoyu büyüt */
    }
    
    .logo-sub {
        font-size: 0.7rem !important; /* Alt başlığı da */
    }

    /* 2. İkonları ve Menü Butonunu Büyüt */
    .hamburger-btn {
        width: 35px !important;
        height: 25px !important;
    }
    .hamburger-btn .bar {
        height: 3px !important;
        margin-bottom: 5px !important;
    }

    .nav-icon-link i {
        font-size: 1.8rem !important; /* Sepet/Kalp ikonlarını büyüt */
    }
    
    .cart-count {
        font-size: 0.85rem !important;
        width: 20px !important; 
        height: 20px !important;
    }

    /* 3. Genel İçerik Boşluklarını Artır */
    .container {
        padding-left: 25px !important;  /* Kenar boşluklarını ferahlat */
        padding-right: 25px !important;
    }

    body {
        font-size: 18px !important; /* Genel yazı boyutunu artır */
    }

    p {
        font-size: 1.1rem !important; /* Paragrafları okunaklı yap */
        line-height: 1.6 !important;
    }

    h1, .h1 { font-size: 2.8rem !important; }
    h2, .h2 { font-size: 2.2rem !important; }
    h3, .h3 { font-size: 1.8rem !important; }

    /* Hero Padding */
    .hero-fullscreen {
        height: 85vh !important; /* Mobilde tam ekran hissi korunarak biraz kısaltılabilir veya aynı kalabilir */
    }
}

/* --- GLOBAL RESPONSIVE CONSISTENCY FIX --- */
/* Ensure Blog and Homepage match structurally on mobile */

@media (max-width: 768px) {
    /* 1. Container Standardization */
    .container, 
    .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
        /* Forced consistency */
    }

    /* 2. Header (Navbar) Consistency */
    /* Ensure no weird padding overrides from other classes */
    .nav-container .nav-top {
        padding: 15px 20px !important; 
        height: auto !important;
        min-height: 70px;
    }

    /* 3. Blog Header Alignment */
    .blog-header {
        padding: 80px 0 40px !important; /* Standart boşluk */
    }

    .blog-title {
        font-size: 2.2rem !important; /* Anasayfa Hero başlıklarıyla yarışsın */
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .blog-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 0.2em !important;
    }

    /* 4. Article Readability (Blog Detail) */
    .article-header {
        padding: 40px 0 !important;
    }
    
    .article-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .article-body-container p {
        font-size: 1.05rem !important; /* Homepage p ile aynı */
        line-height: 1.7 !important;
        margin-bottom: 20px !important;
    }
}

/* --- MOBILE DROPCAP & SPACING REFINEMENT --- */
@media (max-width: 768px) {
    /* Baş harfi biraz küçült (Aşırı büyük durmasın) */
    .dropcap::first-letter {
        font-size: 3.5rem !important;
        margin-right: 10px !important;
        margin-top: 2px !important;
        line-height: 0.9 !important;
    }

    /* Başlık ve üst kısım boşluklarını dengele */
    .article-header {
        padding-top: 30px !important; /* Üst boşluğu biraz al */
        padding-bottom: 20px !important;
    }

    .article-title {
        font-size: 1.6rem !important; /* Bir tık küçült (Ekrana sığsın) */
    }

    .article-meta-row {
        gap: 15px !important; /* Meta bilgisini sıkılaştır */
        font-size: 0.7rem !important;
    }

    .article-hero-img {
        margin-bottom: 30px !important; /* Görsel altı boşluğu azalt */
        height: 40vh !important; /* Mobilde görseli kareye yakın yap (Çok uzun olmasın) */
    }
}

/* --- FORCE HEADER ICONS VISIBILITY --- */
/* Fix for Blog Page missing icons discrepancy */
@media (max-width: 768px) {
    .nav-right {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: auto !important;
        min-width: 60px; /* Ensure space is reserved */
    }

    /* Ensure icons inside are visible */
    .nav-right .nav-icon-link {
        display: flex !important;
        opacity: 1 !important;
    }
}

/* --- BLOG & HOMEPAGE ALIGNMENT (FINAL) --- */

/* 1. Global Container Fix for Blog */
.blog-header .container,
.article-header .container,
.article-body-container {
    max-width: var(--container-width) !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
}

/* 2. Typography Unification (Force Playfair) */
.blog-title,
.article-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 500 !important;
    color: #000 !important;
    letter-spacing: -0.02em !important; /* Tight tracking like Hero */
}

/* Desktop Sizing */
@media (min-width: 992px) {
    .blog-title { font-size: 3.5rem !important; }
    .article-title { font-size: 3rem !important; }
}

/* Mobile Sizing (Match Hero) */
@media (max-width: 768px) {
    .blog-title { 
        font-size: 2.2rem !important; 
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
    }
    
    .article-title { 
        font-size: 1.8rem !important; 
        line-height: 1.2 !important;
    }

    /* Subtitles / Meta */
    .blog-subtitle,
    .article-meta-row {
        font-family: 'Inter', sans-serif !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.2em !important;
        text-transform: uppercase !important;
        color: #666 !important;
    }
}
