/* ===================================================
   FOUND - Complete Style System
   Birebir foundco.com klonu
   =================================================== */

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

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

:root {
    --black: #000000;
    --white: #FFFFFF;
    --off-white: #F7F7F7;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --dark-bg: #1a1a1a;
    /* Ücretsiz kargo bandı rengi (logo moru tonunda) */
    --announcement-bg: #c0a5cf;

    --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    --header-height: 86px;
    --announcement-height: 32px;
    --account-accent: #e8e0f0;
    --account-accent-hover: #d4c8e4;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul,
ol {
    list-style: none;
}

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

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

/* === Announcement Bar === */
.announcement-bar {
    background: var(--announcement-bg);
    color: var(--white);
    padding: 8px 0;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.announcement-marquee {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    white-space: nowrap;
    padding-left: 100%;
    animation: announcementMarquee 28s linear infinite;
}

.announcement-marquee span {
    display: inline-block;
    padding-right: 48px;
}

.announcement-bar-text {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 20px;
}

@keyframes announcementMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .announcement-bar {
        justify-content: center;
        padding: 8px 20px;
    }

    .announcement-marquee {
        animation: none;
    }

    .announcement-marquee span[aria-hidden="true"] {
        display: none;
    }
}

/* === Header / Navigation === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    height: var(--header-height);
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px 0 30px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    max-width: calc(50% - 100px); /* Logo ile İletişim çakışmasın; ortaya taşmasın */
}

.nav-left ul {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-left a {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black);
    position: relative;
    padding: 12px 0;
    white-space: nowrap;
}

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

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

.nav-left a:hover {
    opacity: 1;
}

/* Logo */
.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    /* Logo menü linkleriyle çakışmasın */
}

.header-logo a {
    pointer-events: auto;
    /* Logo linki hala tıklanabilsin */
}

.site-logo-svg {
    height: 84px;
    width: auto;
    display: block;
    max-height: none;
}

@media (max-width: 768px) {
    .site-logo-svg {
        height: 70px;
        max-width: 190px;
        object-fit: contain;
    }

    .header-logo {
        pointer-events: none;
        z-index: 5;
        max-width: 48%;
        /* Logo mobilde daha büyük; ara + sepet sağda kalacak */
    }

    .header-logo a {
        pointer-events: auto !important;
        display: block;
    }

    .nav-right {
        position: relative;
        z-index: 20;
        min-width: 0;
        flex-shrink: 0;
        justify-content: flex-end;
    }

    .header-icons {
        position: relative;
        z-index: 20;
        display: flex;
        align-items: center;
        /* Arama ve sepet ikonları birbirine biraz daha yakın */
        gap: 6px;
        flex-shrink: 0;
    }

    .header-icons .nav-icon,
    #search-btn {
        position: relative;
        z-index: 21;
        pointer-events: auto;
        min-width: 32px;
        min-height: 32px;
        padding: 6px 0;
        flex-shrink: 0;
    }

    .header-icons #search-btn {
        margin-right: 0;
    }

    .header-icons .cart-icon-wrapper {
        margin-left: 0;
    }

    .nav-right {
        margin-left: auto;
        padding-left: 4px;
        padding-right: 4px;
    }

    .header-inner {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Right nav */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    padding-right: 8px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    font-size: 11px;
    gap: 5px;
}

.lang-switcher a {
    color: var(--gray-400);
}

.lang-switcher a.active {
    color: var(--black);
    font-weight: 600;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    justify-content: flex-end;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-icon-wrapper button,
.cart-icon-wrapper .nav-icon {
    position: relative;
}

/* Sayı rozeti sepet ikonunun üstünde dursun (ayrık görünmesin) */
.cart-icon-badge-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.country-selector {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.country-selector svg {
    width: 10px;
    height: 10px;
}

.nav-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    padding: 8px;
    box-sizing: content-box;
}

.header-icons .nav-icon {
    padding: 8px 10px;
}

.header-icons a.nav-icon {
    text-decoration: none;
}

.header-account-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--black);
    padding: 6px 14px 6px 6px;
    border-radius: 999px;
    background: var(--gray-100);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.header-account-link:hover {
    background: var(--account-accent);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.header-account-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--account-accent);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    border: none;
}

.header-account-link:hover .header-account-avatar {
    background: var(--account-accent-hover);
}

.header-account-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    align-items: flex-start;
}

.header-account-copy strong {
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gray-500);
}

.header-account-copy small {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.mobile-account-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--account-accent);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    border: none;
}

.nav-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* === Mega Menu === */
.mega-menu-overlay {
    position: fixed;
    top: calc(var(--announcement-height) + var(--header-height));
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 999;
    overflow: hidden;
    transition: height 0.3s ease;
    border-bottom: 1px solid var(--gray-200);
}

/* === Mobile Menu Overlay & Drawer === */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
    padding: 100px 22px 28px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 10px;
}

.mobile-nav-list a {
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black);
}

.mobile-menu-search {
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 16px 0 0;
    margin-top: 14px;
    border-top: 1px solid var(--gray-200);
}
.mobile-menu-search-input {
    flex: 1;
    min-width: 0;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid var(--gray-300);
    padding: 0 12px;
    font-size: 11px;
    font-family: inherit;
    outline: none;
    border-radius: 4px;
    vertical-align: middle;
}
.mobile-menu-search-input::placeholder {
    color: var(--gray-400);
}
.mobile-menu-search-btn {
    height: 40px;
    box-sizing: border-box;
    padding: 0 14px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    border-radius: 4px;
    flex-shrink: 0;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}

.mobile-lang {
    display: flex;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.mobile-lang a.active {
    font-weight: 600;
}

.mobile-login {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--gray-100);
    transition: background 0.2s ease;
}

.mobile-login:active {
    background: var(--account-accent);
}

.mobile-login img {
    width: 18px;
    height: 18px;
    opacity: 0.85;
}

.mobile-menu-footer .mobile-account-avatar {
    width: 32px;
    height: 32px;
    font-size: 10px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
    position: relative;
    width: 20px;
    /* Sola almak için margin veya absolute gerekebilir (Media Queries kısmında çözüldü) */
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* === Mega Menu === */
.mega-menu-overlay {
    position: fixed;
    top: calc(var(--announcement-height) + var(--header-height));
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 999;
    overflow: hidden;
    transition: height 0.3s ease;
    border-bottom: 1px solid var(--gray-200);
}

.mega-menu-overlay.active {
    height: auto;
    min-height: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mega-menu-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 30px;
    display: flex;
    gap: 60px;
}

.mega-menu-column {
    min-width: 160px;
}

.mega-menu-column h4 {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--black);
}

.mega-menu-column ul li {
    margin-bottom: 10px;
}

.mega-menu-column ul li a {
    font-size: 12px;
    color: var(--gray-600);
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.mega-menu-column ul li a:hover {
    color: var(--black);
    opacity: 1;
}

.mega-menu-column ul li.has-children {
    position: relative;
}

.mega-menu-column ul li.has-children > a {
    display: block;
}

.mega-menu-column ul ul.mega-sub {
    list-style: none;
    margin: 6px 0 0 0;
    padding-left: 12px;
    border-left: 1px solid var(--gray-300);
}

.mega-menu-column ul ul.mega-sub li {
    margin-bottom: 6px;
}

.mega-menu-column ul ul.mega-sub li a {
    font-size: 11px;
    color: var(--gray-500);
}

.mega-menu-featured {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.mega-menu-card {
    width: 200px;
    text-align: center;
}

.mega-menu-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 12px;
}

.mega-menu-card .card-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mega-menu-card .card-link {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* === Hero Slider === */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none;
    color: inherit;
}

.hero-slide-link:has(.hero-slide.active) {
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

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

.hero-slide img,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: var(--white);
    pointer-events: auto;
}

.hero-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid var(--white);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.hero-btn:hover {
    background: var(--white);
    color: var(--black);
    opacity: 1;
}

.hero-btn-box-only {
    min-width: 180px;
    min-height: 42px;
}

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

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

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Slider arrow down */
.slider-arrow-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: -18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-arrow-down svg {
    width: 14px;
    height: 14px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2;
}

/* === Category Tabs Section === */
.category-tabs-section {
    padding: 60px 30px 20px;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.category-tab {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--gray-400);
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.category-tab.active {
    color: var(--black);
}

.category-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
}

.category-tab:hover {
    color: var(--black);
}

.homepage-category-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-bottom: 28px;
}

.homepage-category-link {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    transition: color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.homepage-category-link:hover {
    color: var(--black);
    opacity: 1;
}

@media (max-width: 768px) {
    .homepage-category-links {
        gap: 10px 16px;
        margin-bottom: 20px;
    }
    .homepage-category-link {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

/* Product Carousel */
.product-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
}

.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 10px 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

.product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 240px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card.sold-out .product-card-image img {
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 8px;
    background: var(--black);
    color: var(--white);
    white-space: nowrap;
}

.product-badge.sold-out-badge {
    background: var(--gray-500);
    left: auto;
    right: 12px;
}

.product-badge-stack {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.product-badge-stack .product-badge.sold-out-badge {
    position: static;
    left: auto;
    right: auto;
}

.choose-options-btn {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 4px;
}

.choose-options-btn:hover {
    opacity: 0.7;
}

.product-card.coming-soon .product-card-image,
.product-card.coming-soon .choose-options-btn {
    cursor: default;
    pointer-events: none;
}

.product-card-image {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
    background: #f5f5f5;
    text-decoration: none;
}

.product-card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    vertical-align: middle;
}

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

.hover-hearts-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.hover-heart {
    position: absolute;
    color: #d3143c;
    line-height: 1;
    opacity: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transform: translate3d(0, 0, 0) scale(0.9);
    animation-name: productHoverHeartFloat;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
}

.hover-heart.hover-heart-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-shadow: none;
}

@keyframes productHoverHeartFloat {
    0% {
        opacity: 0;
        transform: translate3d(0, 10px, 0) scale(0.7);
    }
    15% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--heart-drift-x, 0px), -82px, 0) scale(1.08);
    }
}

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

.product-card-name {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--black);
    margin-bottom: 6px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.3;
}

.product-card-price {
    font-size: 12px;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-btn.is-adding,
.add-to-cart-btn.is-added,
.add-to-cart-btn:disabled {
    cursor: default;
    opacity: 1;
}

.add-to-cart-btn.is-adding {
    background: #333;
}

.add-to-cart-btn.is-added {
    background: #166534;
}

.add-to-cart-btn:hover {
    background: #333;
}

.add-to-cart-btn.is-adding:hover {
    background: #333;
}

.add-to-cart-btn.is-added:hover {
    background: #166534;
}

/* View All button */
.view-all-section {
    text-align: center;
    padding: 30px 0 60px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1.5px solid var(--black);
    color: var(--black);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-all-btn:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

/* === Curated Collections === */
.curated-section {
    padding: 60px 30px;
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid var(--gray-200);
}

.section-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 40px;
}

/* About / Hikaye page */
.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.returns-paragraph {
    font-size: 14px;
    line-height: 1.8;
    color: #525252;
    margin-top: 16px;
}

@media (max-width: 480px) {
    .returns-paragraph {
        font-size: 13px;
        line-height: 1.7;
    }
}
.about-origin-header {
    text-align: center;
    margin-bottom: 60px;
}
.about-origin-header .section-title {
    margin-bottom: 0;
}
.about-origin-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.about-origin-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.about-origin-heading {
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 24px;
}
.about-origin-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #525252;
    margin-bottom: 20px;
}

/* Contact / Policy pages */
.contact-section {
    margin-bottom: 40px;
}

.contact-heading {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-strong {
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-body {
    font-size: 14px;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 8px;
}

.contact-body-spaced {
    margin-top: 16px;
}

.contact-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 24px;
}

.contact-footer-note {
    font-size: 13px;
    letter-spacing: 1px;
    color: #525252;
}

.policy-body {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.policy-heading {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 24px 0 12px;
}

.policy-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 12px;
}

.policy-footer {
    margin-top: 24px;
}

.faq-intro {
    font-size: 14px;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 24px 0;
}

.faq-q {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
    font-weight: 600;
}

.faq-a {
    font-size: 14px;
    line-height: 1.7;
    color: #525252;
    margin: 0;
}

.faq-a a {
    color: #000;
    text-decoration: underline;
}
.about-origin-text p:last-child {
    margin-bottom: 0;
}
.about-craft {
    border-top: 1px solid #e8e8e8;
    padding-top: 60px;
    margin-bottom: 60px;
}
.about-craft-header {
    text-align: center;
    margin-bottom: 40px;
}
.about-craft-header .section-title {
    margin-bottom: 0;
}
.about-craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.about-craft-item {
    text-align: center;
}
.about-craft-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 16px;
}
.about-craft-item-title {
    font-family: var(--font-serif);
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.about-craft-item-desc {
    font-size: 12px;
    color: #737373;
    line-height: 1.6;
    margin: 0;
}

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

.curated-card {
    text-align: left;
}

.curated-card-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.curated-card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
    background: #f5f5f5;
}

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

.curated-card:hover .curated-card-image video {
    transform: scale(1.05);
}

.curated-card-title {
    font-family: var(--font-serif);
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 14px;
}

.curated-card-desc {
    font-size: 11px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 14px;
    max-width: 380px;
}

.curated-card-link {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* === Winning Styles (Dark Section) === */
.winning-section {
    background: var(--dark-bg);
    padding: 100px 30px;
    text-align: center;
    color: var(--white);
}

.winning-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--gray-400);
}

.winning-title {
    font-family: var(--font-serif);
    font-size: 32px;
    letter-spacing: 10px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 30px;
}

.winning-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1.5px solid var(--white);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 500;
}

.winning-btn:hover {
    background: var(--white);
    color: var(--black);
    opacity: 1;
}

/* === Explore By Category === */
.explore-section {
    padding: 60px 30px 20px;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.explore-section .section-label {
    text-align: center;
    display: block;
    margin-bottom: 16px;
}

.explore-section .explore-tabs {
    justify-content: center;
    flex-wrap: wrap;
}

.explore-header {
    text-align: center;
    margin-bottom: 40px;
}

.explore-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.explore-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2;
}

.explore-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.explore-tabs {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.explore-tab {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--gray-400);
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.explore-tab.active {
    color: var(--black);
}

.explore-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
}

.explore-tab:hover {
    color: var(--black);
}

.explore-grid-wrapper {
    margin-top: 24px;
    min-width: 0;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
    gap: 24px;
    min-width: 0;
}

.explore-grid .product-card {
    margin-bottom: 0;
}

.explore-grid-wrapper .view-all-section {
    margin-top: 24px;
    text-align: center;
}

/* === Newsletter Section (Homepage foundco style) === */
.homepage-newsletter.newsletter-section {
    padding: 80px 30px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.newsletter-section-title {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
}

.newsletter-section-desc {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.newsletter-section-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
    justify-content: center;
}

.newsletter-section-form input {
    flex: 1 1 200px;
    min-width: 0;
    padding: 14px 18px;
    border: 1px solid var(--gray-300);
    font-size: 12px;
    box-sizing: border-box;
}

.newsletter-join-btn {
    padding: 14px 28px;
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
}

.newsletter-join-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* === Newsletter Section (Footer) === */
.newsletter-section {
    padding: 80px 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
}

.newsletter-desc {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    font-size: 12px;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    outline: none;
    transition: border-color 0.3s ease;
}

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

.newsletter-form button {
    padding: 12px 24px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* === Footer === */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 50px 24px 30px;
    overflow-x: hidden;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 48px 40px;
}

.footer-newsletter {
    grid-column: 1;
}

.footer-newsletter .footer-title {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 16px;
}

.footer-newsletter .footer-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0 0 16px;
    max-width: 280px;
}

.footer-newsletter .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-newsletter .newsletter-form input {
    flex: 1;
    min-width: 180px;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    font-size: 13px;
}

.footer-newsletter .newsletter-form button {
    padding: 12px 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-newsletter .newsletter-form button:hover {
    opacity: 0.9;
}

.footer-links {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 40px;
    min-width: 0;
}

.footer-column h4 {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--black);
}

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

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

.footer-column ul li a {
    font-size: 12px;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
    word-break: break-word;
}

.footer-column ul li a:hover {
    color: var(--black);
}

.footer-column.about-col p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
    max-width: 320px;
    min-width: 0;
    overflow-wrap: break-word;
}

.footer-text-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--black);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-text-btn:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

.footer-about-text {
    font-size: 12px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 400px;
}

.footer-bottom {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer .social-icons {
    display: flex;
    gap: 20px;
}

.site-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    color: var(--gray-600);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer .social-icons a:hover {
    color: var(--black);
    border-color: var(--gray-400);
    transform: translateY(-1px);
}

.site-footer .social-icons svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.site-footer .copyright {
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 1px;
}

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

.footer-payments-strip {
    max-width: 260px;
    width: 100%;
    height: auto;
}

.footer-copyright {
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 1px;
}

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

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

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--gray-600);
    transition: fill 0.2s ease;
}

.footer-social a:hover svg {
    fill: var(--black);
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 14px;
    backdrop-filter: blur(6px);
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 11px;
    line-height: 1.45;
    margin: 0;
    flex: 1 1 240px;
}

.cookie-link {
    color: #fff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.cookie-btn {
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.cookie-btn-primary {
    background: #fff;
    color: #000;
}

.cookie-btn-primary:hover {
    background: #f3f3f3;
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-preferences-modal {
    position: fixed;
    inset: 0;
    z-index: 9100;
}

.cookie-preferences-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.cookie-preferences-card {
    position: relative;
    max-width: 520px;
    margin: 10vh auto 0;
    background: #fff;
    color: #111;
    padding: 20px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.cookie-preferences-title {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: 0.8px;
}

.cookie-preferences-text {
    margin: 0 0 14px;
    font-size: 13px;
    color: #444;
    line-height: 1.55;
}

.cookie-preferences-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #e9e9e9;
    padding: 12px;
    margin-bottom: 14px;
}

.cookie-preferences-option strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.cookie-preferences-option p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    width: 46px;
    height: 26px;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-switch-slider {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: #d9d9d9;
    transition: background .2s ease;
    position: relative;
}

.cookie-switch-slider::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .24);
    transition: transform .2s ease;
}

.cookie-switch input:checked + .cookie-switch-slider {
    background: #111;
}

.cookie-switch input:checked + .cookie-switch-slider::after {
    transform: translateX(20px);
}

.cookie-preferences-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #111;
    color: #fff;
}

.cookie-preferences-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 8px 12px;
    }
    .cookie-banner-inner {
        align-items: flex-start;
        gap: 8px;
    }
    .cookie-text {
        font-size: 10px;
        line-height: 1.4;
    }
    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 6px;
    }
    .cookie-btn {
        padding: 6px 12px;
        font-size: 9px;
    }
    .cookie-preferences-card {
        margin: 12vh 12px 0;
        padding: 16px;
    }
    .cookie-preferences-title {
        font-size: 16px;
    }
    .cookie-preferences-text {
        font-size: 12px;
    }
}

/* === Newsletter Popup === */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    background: var(--white);
    display: flex;
    max-width: 700px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.popup-image {
    width: 50%;
    min-height: 400px;
}

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

.popup-content {
    width: 50%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 20px;
    cursor: pointer;
    color: var(--gray-500);
    background: none;
    border: none;
    z-index: 10;
    line-height: 1;
}

.popup-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.popup-desc {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.popup-form {
    width: 100%;
}

.popup-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    margin-bottom: 12px;
    font-size: 12px;
    font-family: var(--font-sans);
    outline: none;
}

.popup-form input:focus {
    border-color: var(--black);
}

.popup-form .popup-submit {
    width: 100%;
    padding: 14px;
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease;
}

.popup-form .popup-submit:hover {
    opacity: 0.85;
}

.popup-no-thanks {
    margin-top: 14px;
    font-size: 12px;
    color: var(--gray-500);
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* === Mobile Menu (zarif, kompakt) === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    overflow-y: auto;
    transition: left 0.4s ease;
    padding: 100px 22px 28px;
}

.mobile-menu.active {
    left: 0;
}

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

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

.mobile-menu-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}

.mobile-menu-item>a,
.mobile-menu-item>button {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.mobile-menu-item>button svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.mobile-menu-item>button.open svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.open {
    max-height: 500px;
}

.mobile-submenu a {
    display: block;
    padding: 10px 0 10px 16px;
    font-size: 12px;
    color: var(--gray-600);
    letter-spacing: 0.5px;
}

.mobile-submenu a:hover {
    color: var(--black);
}

/* === Cart Drawer (base – detailed rules in “CART DRAWER” section below) === */
.cart-drawer-title {
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cart-drawer-close {
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-500);
}

.cart-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* === Responsive === */
@media (max-width: 1200px) {
    .product-card {
        flex: 0 0 calc(33.33% - 14px);
    }
}

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hamburger {
        display: flex !important;
        position: absolute;
        left: 15px;
        top: 50%;
        /* Biraz daha aşağı: logo ve ikonlarla hizalı dursun */
        transform: translateY(calc(-50% + 2px));
        z-index: 999999 !important;
        pointer-events: auto !important;
        width: 44px;
        height: 44px;
        padding: 10px;
        justify-content: center;
        align-items: center;
        background: transparent;
        border: none;
        outline: none;
    }
    .hamburger span {
        width: 12px;
        height: 1px;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
    }

    .nav-left {
        position: static;
        flex: 1;
        min-width: 0;
        /* Soldaki alanı doldurup ara+sepeti sağa itiyor (logo absolute, akışta yer kaplamıyor) */
        pointer-events: none;
    }

    .header-logo {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
        margin: 0;
        z-index: 10;
        pointer-events: none !important;
        max-width: 48%;
        /* Mobilde logo büyük; ara + sepet sağda */
    }

    .header-logo a {
        pointer-events: auto !important;
        display: block;
    }

    .nav-right {
        margin-left: auto;
        flex: 0 0 auto;
        justify-content: flex-end;
        min-width: 0;
        /* Ara + sepet sağa yaslı ve yan yana */
    }

    .header-logo a {
        pointer-events: auto !important;
        /* Logo linki tıklanabilir olsun */
    }

    .country-selector {
        display: none;
    }

    .logo a {
        font-size: 22px;
        letter-spacing: 5px;
    }

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

    .hero-title {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 8px;
    }

    .hero-btn {
        padding: 9px 20px;
        font-size: 8px;
        letter-spacing: 2px;
    }

    .category-tabs {
        gap: 25px;
    }

    .category-tab,
    .explore-tab {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .product-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 160px;
    }

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

    .curated-card-image {
        height: 350px;
    }

    .section-title {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .curated-card-title {
        font-size: 14px;
    }

    .curated-card-desc {
        font-size: 10px;
    }

    .winning-title {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .explore-tabs {
        gap: 25px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-links {
        grid-column: 1;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .popup-image {
        display: none;
    }

    .popup-content {
        width: 100%;
    }

    .popup-modal {
        max-width: 380px;
    }

    .mega-menu-overlay {
        display: none;
    }

    /* About / Hikaye – mobil: yazılar ve boşluklar küçültüldü */
    .about-page {
        padding: 40px 20px;
    }
    .about-origin-header {
        margin-bottom: 36px;
    }
    .about-page .section-label {
        font-size: 9px;
        letter-spacing: 2px;
    }
    .about-page .section-title {
        font-size: 18px;
        letter-spacing: 4px;
    }
    .about-origin-block {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
    }
    .about-origin-image img {
        height: 320px;
    }
    .about-origin-heading {
        font-size: 18px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }
    .about-origin-text p {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 14px;
    }
    .about-craft {
        padding-top: 40px;
        margin-bottom: 40px;
    }
    .about-craft-header {
        margin-bottom: 28px;
    }
    .about-craft-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-craft-item img {
        height: 240px;
    }
    .about-craft-item-title {
        font-size: 13px;
        letter-spacing: 2px;
    }
    .about-craft-item-desc {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 20px 0 16px;
    }

    .hero-slider {
        height: 82vh;
        min-height: 420px;
    }

    .category-tabs-section,
    .explore-section {
        padding: 16px 16px 0;
    }

    .category-tabs-section .view-all-section {
        padding-top: 10px;
    }

    .curated-section {
        padding: 40px 16px;
    }

    .category-tabs,
    .explore-tabs {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 10px;
    }

    .category-tab,
    .explore-tab {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .product-card {
        flex: 0 0 calc(50% - 8px);
        min-width: 140px;
    }

    .contact-heading {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .contact-strong,
    .contact-body {
        font-size: 12px;
    }

    .contact-footer-note {
        font-size: 11px;
        letter-spacing: 0.7px;
    }

    .policy-body,
    .policy-text {
        font-size: 12px;
        line-height: 1.7;
    }

    .policy-heading {
        font-size: 12px;
        letter-spacing: 1.4px;
        margin: 18px 0 9px;
    }

    .faq-intro {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .faq-q {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .faq-a {
        font-size: 12px;
        line-height: 1.7;
    }

    .product-card-name {
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .product-card-price {
        font-size: 11px;
    }

    .view-all-btn {
        font-size: 9px;
        letter-spacing: 2px;
        padding: 10px 26px;
    }

    .curated-card-image {
        height: 280px;
    }

    .section-title {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .winning-section {
        padding: 60px 16px;
    }

    .winning-title {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .newsletter-section {
        padding: 50px 16px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .footer-column.about-col p {
        max-width: none;
    }

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

    /* About – çok küçük ekranlar */
    .about-page {
        padding: 28px 16px;
    }
    .about-page .section-title {
        font-size: 16px;
        letter-spacing: 3px;
    }
    .about-origin-heading {
        font-size: 16px;
        letter-spacing: 2px;
    }
    .about-origin-text p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* ========== CART DRAWER ========== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.cart-drawer-overlay.active {
    display: block;
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    visibility: visible;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* ========== SEARCH OVERLAY (compact popover) ========== */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18vh;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
}

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

.search-overlay-inner {
    width: 100%;
    max-width: 420px;
    padding: 0 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.search-overlay-inner .search-overlay-close {
    top: 10px;
    right: 10px;
}

.search-overlay-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--gray-500);
    padding: 0;
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
}

.search-overlay-close:hover {
    color: var(--black);
    background: var(--gray-200);
}

.search-overlay-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 20px 44px 20px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: #fff;
}

.search-overlay-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: inherit;
    padding: 10px 12px;
    outline: none;
}

.search-overlay-input::placeholder {
    color: var(--gray-400);
}

.search-overlay-submit {
    padding: 10px 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.search-overlay-submit:hover {
    opacity: 0.85;
}

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 2px;
}

.cart-drawer-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cart-drawer-body {
    flex: 1 1 auto;
    min-height: 120px;
    overflow-y: auto;
    padding: 20px;
}

.cart-drawer-body .empty-cart {
    padding: 24px 0;
    margin: 0;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cart-item img {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

.cart-item-info h4 {
    margin: 0 0 5px;
    font-size: 14px;
}

.cart-item-info p {
    margin: 0 0 10px;
    font-size: 13px;
    color: #666;
}

.cart-item-info button {
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
    font-size: 12px;
    cursor: pointer;
    color: #999;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-clear-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    text-align: center;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cart-clear-btn:hover {
    color: #000;
    border-color: #000;
}

.cart-discount-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: #166534;
}
.cart-discount-value {
    font-weight: 600;
}
.cart-promo-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.cart-promo-input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    font-size: 13px;
}
.cart-promo-btn {
    padding: 10px 14px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}
.cart-promo-btn:hover {
    opacity: 0.9;
}
.cart-promo-message {
    font-size: 12px;
    margin: 0 0 12px;
    min-height: 18px;
}
.cart-promo-message.success { color: #166534; }
.cart-promo-message.error { color: #991b1b; }

.cart-total-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 600;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    border: none;
    transition: opacity 0.3s;
}

.checkout-btn:hover {
    opacity: 0.8;
}
.cart-drawer-footer .cart-page-link {
    display: block;
    text-align: center;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #666;
    text-decoration: underline;
}
.cart-drawer-footer .cart-page-link:hover {
    color: #000;
}

.cart-word {
    margin-left: 4px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cart-count {
    position: absolute;
    top: -6px;      /* ikonun sağ üst köşesine gelsin */
    right: -6px;
    background: #000;
    color: #fff;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-sizing: border-box;
}

.cart-count.is-updated {
    animation: cartCountPulse 0.45s ease;
}

.cart-feedback-host {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 10002;
    pointer-events: none;
}

.cart-feedback-toast {
    min-width: 260px;
    max-width: min(360px, calc(100vw - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: auto;
}

.cart-feedback-toast.active {
    opacity: 1;
    transform: translateY(0);
}

.cart-feedback-copy {
    min-width: 0;
}

.cart-feedback-copy strong {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-feedback-copy p {
    margin: 0;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.4;
}

.cart-feedback-link {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: underline;
}

@keyframes cartCountPulse {
    0% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.24);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .cart-feedback-host {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .cart-feedback-toast {
        min-width: 0;
        width: 100%;
        gap: 12px;
        padding: 14px 16px;
    }

    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }
    .cart-drawer.active {
        transform: translateX(0);
    }
}