/* =============================================
   BEAFRAG - Dark Luxury Perfume Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Roboto:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0a0a0a;
    --primary-light: #1a1a1a;
    --gold: #c9a96e;
    --gold-light: #d4b97e;
    --gold-dark: #a8884f;
    --bg: #0d0d0d;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-light: #111111;
    --text: #feefba;
    --text-secondary: #c8b88a;
    --text-muted: #666666;
    --border: #2a2a2a;
    --border-light: #222222;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --shadow: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 20px rgba(201,169,110,0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

/* =============================================
   TOPBAR
   ============================================= */
.top-bar {
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}
.top-bar a { color: var(--text-secondary); }
.top-bar a:hover { color: var(--gold); }

/* =============================================
   HEADER - beafrag.com style
   ============================================= */
.site-header {
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.header-main { 
    padding: 18px 0; 
    border-bottom: 1px solid var(--border);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 200px;
}
.header-right { justify-content: flex-end; }
.header-center { flex: 1; text-align: center; }

.site-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
.site-logo img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}
.site-logo:hover { color: var(--gold-light); }

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 6px;
    transition: var(--transition);
    text-decoration: none;
    font-size: 15px;
}
.header-icon-btn:hover { color: var(--gold); }
.header-icon-btn svg { flex-shrink: 0; width: 22px; height: 22px; }

.header-icon-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.cart-icon-wrapper { position: relative; display: inline-flex; }
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--gold);
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Header Dropdown */
.header-dropdown {
    background: var(--bg-elevated) !important;
    border: 1px solid var(--border) !important;
    border-radius: 0 !important;
    min-width: 220px;
    padding: 0 !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.header-dropdown .dropdown-item {
    color: var(--text-secondary);
    font-size: 13px;
    padding: 10px 16px;
}
.header-dropdown .dropdown-item:hover {
    background: rgba(201,169,110,0.08);
    color: var(--gold);
}
.dropdown-header-custom {
    padding: 12px 16px;
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.header-dropdown .dropdown-divider { border-color: var(--border); margin: 0; }

/* =============================================
   NAVIGATION - beafrag.com style
   ============================================= */
.header-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 0;
}
.nav-list-item { position: relative; }
.nav-list-item > a {
    display: block;
    padding: 14px 22px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}
.nav-list-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-list-item > a:hover { color: var(--gold); }
.nav-list-item > a:hover::after { width: 50%; }

/* Submenu */
.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}
.nav-list-item:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-submenu a {
    display: block;
    padding: 9px 22px;
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition);
}
.nav-submenu a:hover {
    background: rgba(201,169,110,0.08);
    color: var(--gold);
    padding-left: 28px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-slider { position: relative; }
.hero-slide {
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 700px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 300;
}
.hero-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    font-weight: 300;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
}
.hero-btn:hover {
    background: var(--gold);
    color: var(--primary);
}

.hero-default {
    height: 85vh;
    min-height: 500px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-default::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.hero-logo-mark {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.6;
}
.hero-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.4);
    width: 30px;
    height: 3px;
    border-radius: 2px;
    opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 50px;
}

/* =============================================
   BRAND STRIP
   ============================================= */
.brand-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.brand-strip-inner {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.brand-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.brand-strip-item svg { color: var(--gold); flex-shrink: 0; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
}
.section-tag::before, .section-tag::after {
    content: '—';
    margin: 0 10px;
    opacity: 0.4;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.section-desc {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}

/* =============================================
   HOMEPAGE - beafrag.com exact layout
   ============================================= */

/* Header spacing - 15px more breathing room */
.header-main { padding: 22px 0; }
.site-header.scrolled .header-main { padding: 14px 0; }

/* Hero Video */
.home-video {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 20px;
}
.home-video video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: cover;
}

/* Slider */
.home-slider { line-height: 0; }
.home-slide-link { display: block; line-height: 0; }
.home-slide-link img { width: 100%; height: auto; display: block; }

/* Section Heading */
.home-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--text);
    text-align: center;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    padding-top: 5px;
}

/* Products Section */
.home-products-section {
    padding: 35px 0 25px;
    background: var(--bg);
}

/* Triple Banners (3 yanyana, boşluksuz) */
.home-triple-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    line-height: 0;
}
.home-triple-banner-item {
    display: block;
    overflow: hidden;
    line-height: 0;
}
.home-triple-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.home-triple-banner-item:hover img { transform: scale(1.03); }

@media (max-width: 767.98px) {
    .home-triple-banners { grid-template-columns: 1fr; }
}

/* Quote Banner */
.home-quote-banner {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.home-quote-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
}
.home-quote-en {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: #feefba;
    line-height: 1.6;
    margin-bottom: 15px;
}
.home-quote-tr {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-style: italic;
    color: #c8b88a;
    line-height: 1.6;
    margin: 0;
}

/* Dual Image Blocks - beafrag.com exact layout */
.home-dual-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg);
}
.home-dual-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.home-dual-block .home-dual-img {
    overflow: hidden;
    height: 350px;
}
.home-dual-block .home-dual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.home-dual-block:hover .home-dual-img img { transform: scale(1.03); }

.home-dual-content {
    padding: 30px 5px;
}
.home-dual-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: #feefba;
    line-height: 1.3;
    margin-bottom: 15px;
}
.home-dual-content p {
    color: #feefba;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.8;
}
.home-dual-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    transition: var(--transition);
}
.home-dual-link:hover { color: #feefba; border-color: #feefba; }

/* Left block (odd): text TOP, image BOTTOM */
.home-dual-block:nth-child(odd) .home-dual-content { order: 1; }
.home-dual-block:nth-child(odd) .home-dual-img { order: 2; }

/* Right block (even): image TOP, text BOTTOM */
.home-dual-block:nth-child(even) .home-dual-img { order: 1; }
.home-dual-block:nth-child(even) .home-dual-content { order: 2; }

@media (max-width: 991.98px) {
    .home-dual-blocks { grid-template-columns: 1fr; padding: 30px 15px; gap: 30px; }
    .home-dual-block .home-dual-img { height: 280px; }
}
@media (max-width: 767.98px) {
    .home-dual-blocks { padding: 20px 12px; gap: 25px; }
    .home-dual-content { padding: 20px 3px; }
    .home-dual-content h3 { font-size: 1.15rem; }
    .home-dual-content p { font-size: 12px; }
    .home-dual-block .home-dual-img { height: 220px; }
}

/* =============================================
   PRODUCT CARDS - beafrag.com exact style
   ============================================= */
.pcard {
    background: var(--bg);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pcard-img {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #0a0a0a;
}
.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease !important;
    transform: none !important;
}
.pcard:hover .pcard-img-hover { opacity: 1; }
.pcard:hover .pcard-img-main { opacity: 0; transition: opacity 0.4s ease; }

.pcard-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    z-index: 2;
}
.pcard-badge.new { background: var(--gold); color: var(--primary); }
.pcard-badge.sale { background: var(--danger); color: #fff; }

.pcard-body {
    padding: 12px 8px 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pcard-brand {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.pcard-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    display: block;
    margin-bottom: 8px;
    line-height: 1.4;
    text-decoration: none;
    flex: 1;
}
.pcard-name:hover { color: var(--gold); }

.pcard-price { margin-bottom: 10px; }
.pcard-price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 13px;
    margin-right: 4px;
}
.pcard-price-now {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}
.pcard-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}
.pcard-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Parallax removed - using home-quote-banner instead */

/* About section removed - using home-dual-blocks instead */

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--primary);
    transform: translateX(3px);
}

/* Social CTA removed */

/* Social Buttons (footer) */
.social-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,169,110,0.3);
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-btn:hover {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

/* =============================================
   SWIPER CUSTOMIZATION
   ============================================= */
.products-swiper {
    padding: 0 0 40px;
}
.products-swiper .swiper-slide { height: auto; }
.swiper-button-prev, .swiper-button-next {
    color: var(--gold) !important;
    background: rgba(0,0,0,0.5);
    width: 40px !important;
    height: 40px !important;
    backdrop-filter: blur(5px);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 14px !important; }
.swiper-button-prev:hover, .swiper-button-next:hover {
    background: var(--gold);
    color: var(--primary) !important;
}
.swiper-pagination-bullet { background: var(--text-muted) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
    padding: 50px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.newsletter-section .form-control {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 0;
    padding: 12px 16px;
}
.newsletter-section .form-control:focus {
    border-color: var(--gold);
    box-shadow: none;
    color: var(--text);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--primary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    color: var(--text-secondary);
    font-size: 15px;
}
.site-footer h5 {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.site-footer a { color: var(--text-secondary); }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 25px;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
}
.footer-bottom-center {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =============================================
   CATEGORY PAGE
   ============================================= */
.category-section { padding: 40px 0; }
.category-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.sort-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 12px;
    font-size: 13px;
}

/* =============================================
   PRODUCT DETAIL - beafrag.com exact layout
   ============================================= */
.product-breadcrumb {
    padding: 12px 0;
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.product-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.product-breadcrumb a:hover { color: var(--gold); }

.product-detail { padding: 0; }

.pd-layout {
    position: relative;
    min-height: 550px;
    overflow: hidden;
}

/* Background image covers EVERYTHING */
.pd-layout-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.pd-layout-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content sits on top */
.pd-layout-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

/* LEFT: Gallery Side - fully transparent */
.pd-gallery-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 40px 100px;
}
.pd-thumbs-vertical {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}
.pd-thumb-v {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}
.pd-thumb-v:hover, .pd-thumb-v.active { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.pd-thumb-v img { width: 100%; height: 100%; object-fit: contain; }

.pd-main-img {
    max-width: 420px;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-main-img img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* RIGHT: Info Side - only content area is black, not full column */
.pd-info-side {
    display: flex;
    align-items: center;
    padding: 40px 20px 40px 0;
}
.pd-info-inner {
    background: rgba(10,10,10,0.92);
    padding: 45px 40px;
    width: 100%;
    max-width: 500px;
}
.pd-brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: #feefba;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.pd-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: #feefba;
    margin: 0 0 20px;
    line-height: 1.4;
}
.pd-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 25px;
}
.pd-price-block { margin-bottom: 25px; }
.pd-price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 16px;
    margin-right: 12px;
}
.pd-price-now {
    font-size: 1.8rem;
    font-weight: 600;
    color: #feefba;
}
.pd-sku-row {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.pd-sku-row span:last-child { color: #feefba; }

.pd-variants-block {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.pd-var-btn {
    padding: 8px 18px;
    border: 1px solid var(--border);
    background: transparent;
    color: #feefba;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}
.pd-var-btn:hover, .pd-var-btn.active {
    border-color: var(--gold);
    color: var(--gold);
}

.pd-action-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 20px;
}
.pd-qty-box {
    display: flex;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.pd-qty-box button {
    width: 44px;
    height: 48px;
    background: transparent;
    border: none;
    color: #feefba;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pd-qty-box button:hover { color: var(--gold); }
.pd-qty-box input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: #feefba;
    font-size: 15px;
    font-weight: 500;
    -moz-appearance: textfield;
}
.pd-qty-box input::-webkit-outer-spin-button,
.pd-qty-box input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pd-cart-btn {
    flex: 1;
    padding: 14px 30px;
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pd-cart-btn:hover { background: var(--gold-light); }

.pd-short-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 15px;
}

/* Product Banner */
.pd-product-banner {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    max-height: 400px;
    margin-top: 30px;
}
.pd-product-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pd-info-section {
    background: var(--bg);
    padding-bottom: 40px;
}

/* Tabs */
.pd-tabs {
    margin-top: 40px;
    border-top: 1px solid var(--border);
}
.pd-tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
}
.pd-tab-btn {
    padding: 16px 30px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pd-tab-btn:hover { color: var(--text); }
.pd-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.pd-tab-content { display: none; padding: 30px 0; }
.pd-tab-content.active { display: block; }

.pd-description { color: var(--text-secondary); line-height: 1.8; font-size: 14px; }
.pd-description p { margin-bottom: 1rem; }
.pd-description strong { color: var(--text); }

.pd-specs-table {
    width: 100%;
    margin-top: 25px;
    border-collapse: collapse;
}
.pd-specs-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-secondary);
    vertical-align: top;
}
.pd-spec-label {
    font-weight: 600;
    color: var(--text);
    width: 220px;
    letter-spacing: 0.03em;
}
.pd-spec-sep { width: 20px; text-align: center; }

/* Reviews */
.pd-review {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.pd-review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 8px; }
.pd-review-header strong { color: var(--text); font-size: 14px; }
.pd-review-stars { color: var(--gold); font-size: 13px; }
.pd-review-date { color: var(--text-muted); font-size: 12px; margin-left: auto; }
.pd-review-text { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin: 0; }
.pd-no-reviews { color: var(--text-muted); font-size: 14px; }

.pd-review-form { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--border); }
.pd-review-form h4 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text); margin-bottom: 20px; }

.pd-star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }
.pd-star-rating input { display: none; }
.pd-star-rating label {
    font-size: 24px;
    color: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.pd-star-rating input:checked ~ label,
.pd-star-rating label:hover,
.pd-star-rating label:hover ~ label { color: var(--gold); }

/* Related */
.pd-related {
    padding: 50px 0;
    background: var(--bg-light);
}
.pd-related-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin-bottom: 30px;
}

/* Mobile */
@media (max-width: 991.98px) {
    .pd-layout-content { grid-template-columns: 1fr; }
    .pd-layout { min-height: auto; }
    .pd-gallery-side {
        padding: 30px 20px 30px 90px;
        min-height: 400px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pd-thumbs-vertical {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    .pd-info-side { padding: 20px 15px; }
    .pd-info-inner { max-width: 100%; padding: 30px 25px; }
    .pd-brand-name { font-size: 1.4rem; }
    .pd-price-now { font-size: 1.5rem; }
}
@media (max-width: 767.98px) {
    .pd-gallery-side { padding: 25px 15px 25px 70px; min-height: 320px; }
    .pd-thumbs-vertical { left: 8px; }
    .pd-thumb-v { width: 55px; height: 55px; }
    .pd-main-img { max-width: 250px; max-height: 300px; }
    .pd-main-img img { max-height: 300px; }
    .pd-info-side { padding: 15px 12px; }
    .pd-info-inner { padding: 25px 18px; }
    .pd-brand-name { font-size: 1.2rem; }
    .pd-title { font-size: 1rem; }
    .pd-price-now { font-size: 1.3rem; }
    .pd-action-row { flex-direction: column; }
    .pd-cart-btn { padding: 14px; }
    .pd-product-banner { max-height: 250px; margin-top: 20px; }
}

/* =============================================
   CART PAGE - Modern Dark Theme
   ============================================= */
.cart-page { padding: 30px 0 60px; }
.cart-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 25px;
}
.cart-count-label { color: var(--text-muted); font-size: 1rem; font-weight: 300; }

.cart-items { display: flex; flex-direction: column; gap: 0; }
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.cart-item-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: #0e0e0e;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    display: block;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 4px;
    line-height: 1.3;
}
.cart-item-name:hover { color: var(--gold); }
.cart-item-variant { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.cart-item-unit-price { font-size: 12px; color: var(--text-muted); }

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.cart-qty-btn {
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.cart-qty-btn:hover { color: var(--gold); background: var(--bg-elevated); }
.cart-qty-val {
    width: 36px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    line-height: 32px;
}

.cart-item-total {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    min-width: 90px;
    text-align: right;
    flex-shrink: 0;
}
.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
    flex-shrink: 0;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}
.cart-continue:hover { color: var(--gold); }

/* Cart Summary */
.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
    position: sticky;
    top: 100px;
}
.cart-summary-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.cart-coupon {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}
.cart-coupon input {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text);
    padding: 10px 14px;
    font-size: 12px;
}
.cart-coupon input::placeholder { color: var(--text-muted); }
.cart-coupon input:focus { border-color: var(--gold); outline: none; }
.cart-coupon button {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.cart-coupon button:hover { border-color: var(--gold); color: var(--gold); }

.cart-summary-rows { margin-bottom: 15px; }
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
}
.cart-shipping-notice {
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.15);
    padding: 12px;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.cart-shipping-bar {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.cart-shipping-progress {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}
.cart-checkout-btn:hover { background: var(--gold-light); color: var(--primary); }

.cart-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-muted);
}

.cart-empty {
    text-align: center;
    padding: 80px 0;
}
.cart-empty svg { color: var(--gold); opacity: 0.4; margin-bottom: 20px; }
.cart-empty h2 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--text); margin-bottom: 8px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 20px; }

/* =============================================
   CART POPUP (Add to Cart Confirmation)
   ============================================= */
.cart-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
    padding: 20px;
}
.cart-popup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    animation: popIn 0.3s ease;
}
@keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.cart-popup-icon { margin-bottom: 16px; }
.cart-popup h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 8px;
}
.cart-popup p { color: var(--text-secondary); font-size: 14px; margin-bottom: 25px; }
.cart-popup p strong { color: var(--gold); }

.cart-popup-btns { display: flex; flex-direction: column; gap: 10px; }
.cart-popup-continue {
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.cart-popup-continue:hover { border-color: var(--text); color: var(--text); }
.cart-popup-goto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--gold);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}
.cart-popup-goto:hover { background: var(--gold-light); color: var(--primary); }

/* =============================================
   AUTH PAGES
   ============================================= */
.auth-section { padding: 60px 0; }
.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
}
.auth-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.auth-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 2rem; }
.auth-link { color: var(--gold); }
.auth-link:hover { color: var(--gold-light); text-decoration: underline; }
.auth-footer { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--text-muted); }

/* =============================================
   ACCOUNT PAGES
   ============================================= */
.account-section { padding: 40px 0; }
.account-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
}
.account-user-info { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.account-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.account-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-secondary);
    font-size: 13px;
    transition: var(--transition);
    border-left: 2px solid transparent;
}
.account-nav a:hover { color: var(--gold); background: rgba(201,169,110,0.05); }
.account-nav a.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,169,110,0.08); }
.account-nav .badge { margin-left: auto; background: var(--gold); color: var(--primary); font-size: 10px; }

.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
}
.account-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

/* =============================================
   FORMS (Dark Theme)
   ============================================= */
.form-control, .form-select {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 0;
    padding: 10px 14px;
    font-size: 13px;
}
.form-control:focus, .form-select:focus {
    background: var(--bg-elevated);
    border-color: var(--gold);
    color: var(--text);
    box-shadow: 0 0 0 2px rgba(201,169,110,0.1);
}
.form-control::placeholder { color: var(--text-muted); }
.form-label { color: var(--text-secondary); font-size: 12px; font-weight: 500; letter-spacing: 0.05em; margin-bottom: 6px; }
.form-check-input { background-color: var(--bg-elevated); border-color: var(--border); }
.form-check-input:checked { background-color: var(--gold); border-color: var(--gold); }
.form-check-label { color: var(--text-secondary); font-size: 13px; }

.btn-primary {
    background: var(--gold);
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 0;
    transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-light); color: var(--primary); }

.btn-outline-dark {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
    border-radius: 0;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* =============================================
   ALERTS & BADGES
   ============================================= */
.alert { border-radius: 0; }
.badge { border-radius: 2px; font-weight: 500; }
.bg-gold { background: var(--gold) !important; color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }

/* =============================================
   TABLE
   ============================================= */
.table { color: var(--text); }
.table th { border-color: var(--border); color: var(--text-secondary); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.table td { border-color: var(--border); }

/* =============================================
   PAGINATION
   ============================================= */
.pagination .page-link {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text);
}
.pagination .page-link:hover { background: var(--bg-elevated); color: var(--gold); border-color: var(--gold); }
.pagination .page-item.active .page-link { background: var(--gold); border-color: var(--gold); color: var(--primary); }

/* =============================================
   STATIC PAGE
   ============================================= */
.static-page .page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text);
}
.static-page .page-content { color: var(--text-secondary); line-height: 1.8; }

/* =============================================
   TOAST
   ============================================= */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--text);
    padding: 15px 25px;
    z-index: 9999;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-gold);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--primary);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    font-size: 18px;
    transition: var(--transition);
}
.scroll-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 1101;
    transition: var(--transition);
    overflow-y: auto;
    padding: 20px;
}
.mobile-menu.active { left: 0; }
.mobile-menu .close-btn {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    float: right;
}
.mobile-menu .mobile-nav { padding-top: 30px; }
.mobile-menu .mobile-nav a {
    display: block;
    padding: 14px 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-nav a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE - beafrag.com mobile layout
   ============================================= */

/* === TABLET (max 991px) === */
@media (max-width: 991.98px) {
    /* Header: hide desktop nav */
    .header-nav { display: none !important; }
    
    /* Header compact */
    .header-main { padding: 12px 0; }
    .site-logo { font-size: 1.6rem; }
    .site-logo img { max-height: 28px !important; }
    
    /* Homepage */
    .home-products-section { padding: 25px 0 15px; }
    .home-section-heading { font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 0.08em; }
    
    /* Dual blocks - handled in own responsive */
    
    /* Category banner stack */
    .category-banner-inner { grid-template-columns: 1fr !important; min-height: auto !important; }
    .category-banner-image { height: 280px; order: 1; }
    .category-banner-text { order: 2; padding: 30px 25px; text-align: center; }
}

/* === MOBILE (max 767px) === */
@media (max-width: 767.98px) {
    /* Header mobile - bigger icons */
    .header-main { padding: 14px 0; }
    .header-row { position: relative; min-height: 42px; display: flex; align-items: center; }
    .header-left { min-width: auto; position: absolute; left: 0; z-index: 2; }
    .header-center { flex: 1; text-align: center; }
    .header-right { min-width: auto; gap: 1px; position: absolute; right: 0; z-index: 2; }
    .site-logo { font-size: 1.7rem; letter-spacing: 0.12em; }
    .header-icon-label { display: none !important; }
    .header-icon-btn svg { width: 24px; height: 24px; }
    #mobileMenuBtn svg { width: 28px; height: 28px; }
    .cart-badge { width: 18px; height: 18px; font-size: 10px; top: -5px; right: -7px; }
    
    /* Category banner mobile */
    .category-banner-inner {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }
    .category-banner-image {
        height: 250px;
        order: 1;
    }
    .category-banner-text {
        order: 2;
        padding: 25px 20px;
        text-align: center;
    }
    .category-banner-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    .category-banner-desc {
        font-size: 13px;
        max-width: 100%;
    }
    
    /* Video responsive */
    .home-video video { max-height: 60vh; }
    
    /* Slider images full width */
    .home-slider img { width: 100%; height: auto; }
    
    /* Products: 2 per row in swiper */
    .home-section-heading { font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 12px; }
    .home-products-section { padding: 20px 0 10px; }
    
    /* Product cards mobile */
    .pcard-body { padding: 10px 6px 12px; }
    .pcard-brand { font-size: 10px; }
    .pcard-name { font-size: 13px; margin-bottom: 5px; }
    .pcard-price-now { font-size: 14px; }
    .pcard-price-old { font-size: 12px; }
    .pcard-btn { padding: 6px 12px; font-size: 10px; letter-spacing: 0.15em; }
    .pcard-img { padding: 5px; }
    .pcard-badge { font-size: 10px; padding: 2px 7px; }
    
    /* Triple banners: stack on mobile with gap */
    .home-triple-banners { grid-template-columns: 1fr; gap: 10px; padding: 0 10px; }
    
    /* Quote banner compact */
    .home-quote-inner { padding: 35px 20px; }
    .home-quote-en { font-size: 0.95rem; }
    .home-quote-tr { font-size: 0.8rem; }
    
    
    /* Dual blocks - handled in own responsive */
    
    /* Category toolbar */
    .category-toolbar { flex-direction: column; align-items: flex-start; }
    .subcategory-filters { flex-wrap: wrap; }
    .subcategory-chip { padding: 5px 12px; font-size: 10px; }
    
    /* Product detail mobile */
    .pd-name { font-size: 1.4rem; }
    .pd-price-now { font-size: 20px; }
    .pd-gallery-thumbs { gap: 5px; }
    .pd-thumb { width: 55px; height: 55px; }
    .pd-tabs { margin-top: 30px; }
    .pd-tab-btn { padding: 12px 15px; font-size: 12px; }
    .pd-specs-table td { font-size: 12px; }
    .pd-spec-label { width: 140px; }
    
    /* Cart mobile */
    .cart-item { flex-wrap: wrap; gap: 10px; }
    .cart-item-img { width: 60px; height: 60px; }
    .cart-item-name { font-size: 13px; }
    .cart-item-total { font-size: 14px; min-width: auto; }
    .cart-item-remove { position: absolute; top: 20px; right: 0; }
    .cart-summary { position: static; }
    
    /* Footer mobile - centered */
    .site-footer { padding: 40px 0 20px; text-align: center; }
    .site-footer h5 { margin-bottom: 1rem; }
    .site-footer .d-flex.gap-2 { justify-content: center; }
    .footer-links { padding: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links li .d-flex { justify-content: center; text-align: left; }
    .footer-bottom { padding-top: 20px; }
    .footer-bottom-inner { flex-wrap: wrap; gap: 8px; }
    .footer-bottom-inner > p { width: 100%; }
    .footer-bottom-inner > span:last-child { width: 100%; }
    
    /* Newsletter mobile */
    .newsletter-section { padding: 30px 0; }
    .newsletter-section .row { text-align: center; }
    .newsletter-section h3 { font-size: 1.3rem; }
    .newsletter-section p { font-size: 12px; }
    
    /* Auth pages */
    .auth-card { padding: 25px 18px; }
    .auth-title { font-size: 1.5rem; }
    
    /* Account pages */
    .account-card { padding: 15px; }
    .account-sidebar { margin-bottom: 20px; }
    
    /* Search overlay */
    .search-overlay-form input { font-size: 16px; }
    .search-overlay-close { top: 15px; right: 15px; }
    
    /* Swiper nav arrows - smaller on mobile */
    .swiper-button-prev, .swiper-button-next { width: 32px !important; height: 32px !important; }
    .swiper-button-prev::after, .swiper-button-next::after { font-size: 12px !important; }
    
    /* Section headers */
    .section-header { margin-bottom: 1.5rem; }
    .section-tag { font-size: 10px; letter-spacing: 0.2em; }
    .section-tag::before, .section-tag::after { margin: 0 6px; }
    .section-title { font-size: 1.3rem; }
}

/* === SMALL MOBILE (max 375px) === */
@media (max-width: 375px) {
    .site-logo { font-size: 1.2rem; }
    .header-right { gap: 1px; }
    .pcard-name { font-size: 12px; }
    .pcard-price-now { font-size: 13px; }
    .pcard-btn { font-size: 9px; padding: 5px 8px; }
    .pd-name { font-size: 1.2rem; }
}

/* =============================================
   ORDER TIMELINE
   ============================================= */
.order-timeline { position: relative; padding-left: 25px; }
.order-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 20px; }
.timeline-dot {
    position: absolute;
    left: -21px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--bg);
}
.timeline-content { padding-left: 10px; }

/* =============================================
   SEARCH OVERLAY (Ghost Search)
   ============================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(30px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-overlay-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}
.search-overlay-close:hover { color: var(--gold); transform: rotate(90deg); }

.search-overlay-content {
    width: 100%;
    max-width: 650px;
    padding: 0 30px;
    text-align: center;
}
.search-overlay-form {
    position: relative;
}
.search-overlay-form input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: clamp(16px, 3vw, 22px);
    font-family: var(--font-body);
    font-weight: 300;
    text-align: center;
    padding: 15px 50px 15px 15px;
    outline: none;
    letter-spacing: 0.03em;
}
.search-overlay-form input::placeholder {
    color: rgba(255,255,255,0.35);
}
.search-overlay-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}
.search-overlay-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}
.search-overlay-submit:hover { color: var(--gold); }

.search-overlay-results {
    margin-top: 20px;
    max-height: 350px;
    overflow-y: auto;
    text-align: left;
}
.search-overlay-results a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.search-overlay-results a:hover {
    background: rgba(201,169,110,0.08);
}
.search-overlay-results img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    flex-shrink: 0;
}

/* =============================================
   CATEGORY BANNER - beafrag.com style
   ============================================= */
.category-banner {
    background: var(--bg);
}
.category-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}
.category-banner-image {
    overflow: hidden;
    position: relative;
}
.category-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.category-banner-placeholder {
    background: linear-gradient(135deg, #1a1510, #0d0d0d);
}
.category-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 45px;
    background: var(--bg-card);
}
.category-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: #feefba;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-transform: uppercase;
}
.category-banner-desc {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.8;
    max-width: 420px;
}
.category-banner-desc p { margin-bottom: 0.8rem; }

/* Full image banner (alt kategoriler, seyahat, koleksiyonlar) */
.category-banner-full {
    line-height: 0;
}
.category-banner-fullimg {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}
.category-banner-fullimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767.98px) {
    .category-banner-fullimg { max-height: 300px; }
}

.category-breadcrumb {
    padding: 14px 0;
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.category-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}
.category-breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { margin: 0 10px; opacity: 0.4; }
.breadcrumb-current { color: var(--text-secondary); text-transform: uppercase; }

/* =============================================
   CATEGORY TOOLBAR
   ============================================= */
.category-products { padding: 30px 0 60px; }

.category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    gap: 15px;
    flex-wrap: wrap;
}
.product-count {
    font-size: 13px;
    color: var(--text-muted);
}
.subcategory-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.subcategory-chip {
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
}
.subcategory-chip:hover, .subcategory-chip.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.08);
}
.sort-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 14px;
    font-size: 12px;
    cursor: pointer;
}
.sort-select:focus { border-color: var(--gold); outline: none; }


/* =============================================
   DESIGNERS PAGE - Full Width Gallery
   ============================================= */
.designers-page {
    padding: 30px 0 60px;
}
.designers-page .container {
    max-width: 100%;
    padding: 0 10px;
}
.designers-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.designer-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.designer-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.designer-item:hover img {
    transform: scale(1.02);
}
.designer-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.05em;
}

/* =============================================
   ACCOUNT SLIDE PANEL (sağdan açılır)
   ============================================= */
.account-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.account-panel-overlay.active { opacity: 1; visibility: visible; }

.account-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #111;
    z-index: 1201;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.account-panel.active { right: 0; }

.account-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.account-panel-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: var(--transition);
}
.account-panel-close:hover { color: #feefba; }

.account-panel-body {
    padding: 30px 25px;
    flex: 1;
}

/* Guest Login */
.account-panel-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: #feefba;
    margin-bottom: 6px;
}
.account-panel-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 25px;
}

.account-panel-form .ap-field {
    margin-bottom: 15px;
}
.account-panel-form .ap-field input {
    width: 100%;
    padding: 14px 16px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    color: #feefba;
    font-family: var(--font-body);
    font-size: 13px;
    transition: var(--transition);
}
.account-panel-form .ap-field input::placeholder { color: var(--text-muted); }
.account-panel-form .ap-field input:focus {
    border-color: var(--gold);
    outline: none;
    background: #1e1e1e;
}

.ap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 12px;
}
.ap-check {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #feefba;
    cursor: pointer;
}
.ap-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--gold);
}
.ap-forgot {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
}
.ap-forgot:hover { color: var(--gold); }

.ap-btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: #000;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
}
.ap-btn-primary:hover { background: var(--gold-light); }

.ap-divider {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}
.ap-register-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: #feefba;
    margin-bottom: 5px;
}
.ap-register-text {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 15px;
}
.ap-btn-register {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--gold);
    color: #000;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition);
}
.ap-btn-register:hover { background: var(--gold-light); color: #000; }

.ap-social {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ap-btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    color: #feefba;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
}
.ap-btn-social:hover { border-color: var(--gold); color: var(--gold); }
.ap-btn-social.ap-facebook:hover { border-color: #1877f2; color: #1877f2; }
.ap-btn-social.ap-google:hover { border-color: #ea4335; color: #ea4335; }

/* Logged-in user panel */
.account-panel-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.account-panel-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.account-panel-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    color: #feefba;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.account-panel-nav a:hover { color: var(--gold); }
.account-panel-nav a i { font-size: 16px; width: 20px; text-align: center; opacity: 0.6; }

/* =============================================
   CHECKOUT - Payment Method Cards & Button
   ============================================= */
.pm-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.pm-card:hover { border-color: rgba(201,169,110,0.4); }
.pm-card.active {
    border-color: var(--gold);
    background: rgba(201,169,110,0.06);
}
.pm-card-icon { color: var(--text-muted); flex-shrink: 0; }
.pm-card.active .pm-card-icon { color: var(--gold); }
.pm-card-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    flex: 1;
}
.pm-card.active .pm-card-text { color: #feefba; }
.pm-card-check { color: var(--border); flex-shrink: 0; }
.pm-card.active .pm-card-check { color: var(--gold); }

@media (max-width: 575.98px) {
    .pm-card { padding: 14px 12px; gap: 10px; }
    .pm-card-icon svg { width: 22px; height: 22px; }
    .pm-card-text { font-size: 12px; }
}

.checkout-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}
.checkout-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #feefba;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.checkout-section h3 i { color: var(--gold); font-size: 1.1rem; }

/* Product detail bg/banner styles integrated into main product detail CSS above */

/* =============================================
   MOBILE / DESKTOP IMAGE SWITCHING
   ============================================= */
.slide-mobile, .banner-mobile { display: none !important; }

@media (max-width: 767.98px) {
    .slide-mobile, .banner-mobile { display: block !important; }
    .slide-desktop, .banner-desktop { display: none !important; }
}

/* =============================================
   PROMOTIONS - Popup, Top Bar, Countdown
   ============================================= */
/* Top Bar / Announcement */
.promo-topbar {
    position: relative;
    z-index: 100;
    text-align: center;
    font-family: var(--font-body);
}
.promo-topbar a { color: inherit; }
.promo-coupon-badge {
    display: inline-block;
    padding: 2px 12px;
    background: rgba(255,255,255,0.15);
    border: 1px dashed rgba(255,255,255,0.4);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 12px;
    cursor: pointer;
}
.promo-topbar-btn {
    display: inline-block;
    padding: 4px 16px;
    background: var(--gold);
    color: #000 !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}
.promo-topbar-btn:hover { background: var(--gold-light); }
.promo-topbar-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    opacity: 0.6;
    cursor: pointer;
    padding: 0 5px;
}
.promo-topbar-close:hover { opacity: 1; }

/* Popup */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}
.promo-popup {
    position: relative;
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    animation: popIn 0.4s ease;
}
.promo-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
}
.promo-popup-close:hover { background: rgba(0,0,0,0.8); }
.promo-popup-img { line-height: 0; }
.promo-popup-img img { width: 100%; display: block; }
.promo-popup-mobile { display: none; }
@media (max-width: 767.98px) {
    .promo-popup-mobile { display: block; }
    .promo-popup-desktop { display: none; }
}

.promo-popup-body { padding: 30px; text-align: center; }
.promo-popup-body h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.promo-popup-body p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Coupon Box */
.promo-coupon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
}
.promo-coupon-code {
    display: inline-block;
    padding: 8px 20px;
    border: 2px dashed var(--gold);
    font-size: 18px;
    letter-spacing: 0.15em;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}
.promo-coupon-code:hover { background: rgba(201,169,110,0.1); }

.promo-popup-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.promo-popup-btn:hover { background: var(--gold-light); color: #000; }

/* Countdown */
.promo-countdown, .promo-countdown-big {
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.promo-countdown { font-size: 13px; }
.promo-countdown-big {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.promo-countdown-big .cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}
.promo-countdown-big .cd-num {
    font-size: 2rem;
    line-height: 1;
}
.promo-countdown-big .cd-label {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 4px;
}