@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@1,400;1,500;1,600&family=Parisienne&display=swap');

:root {
    --bg-color: #fdfdfd;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent-color: #1a1a1a;
    --tesla-dark: #000000;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--tesla-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* =============== ANNOUNCEMENT BAR =============== */
.top-announcement {
    background: #c9a05b;
    color: #111;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 200;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-announcement svg {
    flex-shrink: 0;
}

/* =============== QUOTE SECTION =============== */
.quote-section {
    padding: 120px 40px;
    text-align: center;
    background-color: #f9f9f9;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Parisienne', cursive;
    font-size: 3.2rem;
    color: #111;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0.9;
}

.quote-signature {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-top: 10px;
    display: block;
}

/* Remove signature line decorations */
.quote-signature::before,
.quote-signature::after {
    display: none !important;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 80px 20px;
    }

    .quote-text {
        font-size: 2.5rem;
    }
}

/* =============== NAVBAR =============== */
.navbar-dark {
    width: 100%;
    position: absolute;
    top: 38px;
    left: 0;
    padding: 0 40px;
    z-index: 100;
}

.nav-container-dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    height: 80px;
}

.logo-dark {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-dark img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-right-area {
    display: flex;
    align-items: center;
    gap: 35px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-link-dark {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link-dark:hover {
    color: #fff;
}

/* Expandable Search */
.search-box {
    display: flex;
    align-items: center;
    position: relative;
}

.search-icon-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.search-icon-btn:hover {
    color: #fff;
}

.search-input-dark {
    width: 0;
    opacity: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    font-size: 0.85rem;
    padding: 5px 0;
    outline: none;
    transition: width 0.4s ease, opacity 0.4s ease;
    margin-right: 8px;
}

.search-box.open .search-input-dark {
    width: 160px;
    opacity: 1;
}


/* =============== MOBILE MENU OVERLAY =============== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-menu-content {
    text-align: center;
    width: 100%;
    padding: 40px;
}

.close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.mobile-nav-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: color 0.3s, transform 0.3s;
    display: block;
}

.mobile-nav-link:hover {
    color: #c9a05b;
    transform: translateY(-2px);
}

/* =============== HERO / SLIDER =============== */
.tesla-dark-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--tesla-dark);
    position: relative;
    overflow: hidden;
}

.hero-dark {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100vh;
    max-width: 1800px;
    margin: 0 auto;
    padding-top: 80px;
}

/* Hero 3-column layout */
.hero-content {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* LEFT */
.hero-left {
    flex: 0 0 380px;
    position: relative;
    z-index: 3;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.title-big {
    font-size: clamp(3rem, 5vw, 5rem);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -2px;
    display: block;
}

.title-small {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    display: block;
}

.hero-subtitle-line {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: #b5b5b5;
    margin-bottom: 0;
    max-width: 380px;
}

/* CENTER */
.hero-center {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.glow-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    transition: background 0.6s ease;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }
}

.main-slider-img {
    max-width: 90%;
    height: 60vh;
    object-fit: contain;
    filter: drop-shadow(0px 30px 50px rgba(0, 0, 0, 0.7));
    transition: opacity 0.5s ease;
}

/* RIGHT NAV */
.hero-right {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    text-align: right;
    margin-right: 1vw;
}

.right-nav {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.right-nav-item {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    text-transform: uppercase;
    transition: color 0.4s, opacity 0.4s;
    background: none;
    border: none;
    text-align: right;
    padding: 0;
}

.right-nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.right-nav-item.active {
    opacity: 1;
    font-weight: 800;
}

/* BOTTOM STATS */
.hero-bottom-stats {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10vw;
    z-index: 5;
    text-align: center;
}

/* SLIDE DOTS */
.slide-dots {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.stat-unit {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =============== CATALOG =============== */
.catalog-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    color: var(--text-main);
}

.catalog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.catalog-main-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 5px;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.catalog-main-title span {
    font-weight: 400;
    font-size: 0.9rem;
    color: #999;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
}

.catalog-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.filters-drawer-trigger {
    display: flex;
    align-items: center;
}

.drawer-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: inherit;
    height: 44px;
}

.drawer-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.filter-count {
    background: var(--accent-color);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    color: inherit;
}

.product-card.hidden {
    display: none;
}

.product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #f4f4f4;
    margin-bottom: 18px;
    overflow: hidden;
}

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

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

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2px;
    gap: 15px;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
    margin-bottom: 6px;
}

.product-desc {
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-muted);
}

.product-price {
    display: none;
}

.product-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    flex-shrink: 0;
    max-width: 40%;
}

.product-badge {
    padding: 3px 8px;
    background: #f0f0f0;
    color: #444;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.product-card:hover .product-badge {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* Ürün Detay Sayfası Badgeleri */
.pd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-badge {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.product-category-tag {
    margin-top: 10px;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid #ddd;
    border-radius: 20px;
    display: inline-block;
}

.no-products {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 60px 0;
    grid-column: 1 / -1;
}


.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    width: 100%;
}

.catalog-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalog-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Toolbar Toggle Settings (Desktop) */
.desktop-hide-sold {
    display: block;
}

.toolbar-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: #f8f8f8;
    padding: 0 18px;
    border-radius: 50px;
    border: 1px solid #eee;
    transition: all 0.3s;
    height: 44px;
}

.toolbar-toggle:hover {
    background: #f0f0f0;
}

.toolbar-toggle span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: normal;
    color: #1a1a1a;
}

.toolbar-toggle input {
    appearance: none;
    width: 36px;
    height: 20px;
    background: #ddd;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.toolbar-toggle input:checked {
    background: #1a1a1a;
}

.toolbar-toggle input::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s;
}

.toolbar-toggle input:checked::before {
    transform: translateX(16px);
}

.catalog-search-form {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
    height: 44px;
}

.catalog-search-form:focus-within,
.catalog-search-form:hover {
    background: #f0f0f0;
}

.catalog-search-input {
    border: none;
    background: transparent;
    padding: 0 16px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    outline: none;
    width: 200px;
    color: #1a1a1a;
    height: 100%;
}

.catalog-search-btn {
    border: none;
    background: transparent;
    padding: 0 12px;
    cursor: pointer;
    color: #888;
    display: flex;
    align-items: center;
    height: 100%;
}

.catalog-search-btn:hover {
    color: #333;
}

.catalog-sort {
    padding: 0 35px 0 16px;
    border: 1px solid #eee;
    border-radius: 25px;
    background: #f8f8f8;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    color: #1a1a1a;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    height: 44px;
}

.catalog-sort:hover {
    background-color: #f0f0f0;
}

/* =============== PAGINATION =============== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: #333;
    color: #333;
}

.page-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* =============== FOOTER / CONTACT =============== */
.site-footer,
.contact-section {
    padding: 100px 0 0;
    background-color: #fff;
    color: #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.footer-info-card {
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #999;
}

.contact-desc {
    font-size: 1.05rem;
    font-weight: 400;
    color: #111;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1 1 240px;
    min-width: 0;
}

.contact-card.full-width {
    flex-basis: 100%;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-link {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #c59648;
}

.contact-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    max-width: 90%;
    font-weight: 400;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.wp-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s;
}

.wp-footer-btn:hover {
    background: #1da851;
}

.footer-form {
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.footer-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-field {
    margin-bottom: 14px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #ccc;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.02);
}

.form-field textarea {
    resize: vertical;
}

.form-field-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.form-field-row input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.form-field-row input:focus {
    border-color: #ccc;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.02);
}

.submit-btn {
    padding: 14px 30px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.alert-success-front {
    background: #0a2a10;
    border: 1px solid #1a4a2a;
    color: #2ecc71;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

/* Footer Bottom Bar — dark */
.footer-bottom {
    text-align: center;
    padding: 40px 0;
    margin-top: 80px;
    background-color: #000;
    color: #fff;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: #888;
}

.footer-brand {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Instagram Section */
.footer-instagram {
    margin-top: 20px;
    padding: 35px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.footer-instagram:hover {
    transform: translateY(-2px);
    border-color: #ddd;
}

.insta-profile-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 16px;
}

.insta-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.insta-header svg {
    color: #E1306C;
    flex-shrink: 0;
}

.insta-name {
    display: flex;
    flex-direction: column;
}

.insta-handle {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.insta-follow {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.insta-profile-link:hover .insta-handle {
    color: #E1306C;
}


/* =============== WHATSAPP FLOAT =============== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* =============== PRODUCT DETAIL =============== */
.pd-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    background: var(--bg-color);
    color: var(--text-main);
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-main-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    background: #f4f4f4;
}

.pd-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0.5;
}

.pd-thumb:hover,
.pd-thumb.active {
    border-color: #1a1a1a;
    opacity: 1;
}

.pd-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pd-breadcrumb {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pd-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.pd-breadcrumb a:hover {
    color: var(--text-main);
}

.pd-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.pd-category {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    width: fit-content;
}

.pd-price {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 25px;
}

.pd-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    white-space: pre-wrap;
}

.pd-delivery-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 30px;
}

.pd-delivery-note svg {
    flex-shrink: 0;
}

.pd-delivery-note strong {
    font-weight: 600;
}

/* Contact options */
.pd-contact-options {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    gap: 8px;
    transition: all 0.3s ease;
}

.pd-btn-wp {
    background: #25d366;
    color: #fff;
}

.filters-drawer-trigger {
    display: flex;
    align-items: center;
}

.drawer-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.drawer-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.filter-count {
    background: var(--accent-color);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.pd-btn-wp:hover {
    background: #1da851;
}

.pd-btn-call {
    background: #1a1a1a;
    color: #fff;
}

.pd-btn-call:hover {
    background: #333;
}

.pd-btn-form {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.pd-btn-form:hover {
    background: #e8e8e8;
}

.pd-related {
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.pd-related-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* =============== CONTACT MODAL =============== */
.pd-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.pd-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    max-width: 450px;
    width: 90%;
    position: relative;
}

.pd-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
}

.pd-modal-close:hover {
    color: #333;
}

.pd-modal-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pd-modal-product {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 20px;
    font-style: italic;
}

.pd-modal-content .form-field input,
.pd-modal-content .form-field textarea {
    background: #f5f5f5;
    border-color: #ddd;
    color: #333;
}

.pd-modal-content .form-field-row input {
    background: #f5f5f5;
    border-color: #ddd;
    color: #333;
}

.pd-modal-content .submit-btn {
    background: #1a1a1a;
    color: #fff;
}

.pd-modal-content .submit-btn:hover {
    background: #333;
}

/* =============== HOME SERVICES =============== */
.home-services-section {
    padding: 100px 0;
    width: 100%;
    background-color: #000;
}

.home-services-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 40px;
}

.home-services-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.home-services-header h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #b91d1d, #6f26ad);
    border-radius: 2px;
}

.home-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.home-service-card {
    background: linear-gradient(145deg, #161616 0%, #080808 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px -15px rgba(185, 29, 29, 0.15);
}

.home-service-card.purple-variant {
    box-shadow: 0 10px 40px -15px rgba(111, 38, 173, 0.15);
}

.home-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b91d1d, transparent);
}

.home-service-card.purple-variant::before {
    background: linear-gradient(90deg, #6f26ad, transparent);
}

.home-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(185, 29, 29, 0.3);
    box-shadow: 0 25px 60px -15px rgba(185, 29, 29, 0.4);
}

.home-service-card.purple-variant:hover {
    border-color: rgba(111, 38, 173, 0.3);
    box-shadow: 0 25px 60px -15px rgba(111, 38, 173, 0.4);
}

.home-service-icon {
    margin-bottom: 30px;
    color: #ff4747;
    background: rgba(185, 29, 29, 0.15);
    padding: 14px;
    border-radius: 14px;
    width: 56px;
    height: 56px;
    box-sizing: border-box;
    box-shadow: inset 0 0 15px rgba(185, 29, 29, 0.2);
    transition: all 0.3s ease;
}

.home-service-card:hover .home-service-icon {
    transform: scale(1.1);
    background: rgba(185, 29, 29, 0.25);
}

.home-service-card.purple-variant .home-service-icon {
    color: #b568ff;
    background: rgba(111, 38, 173, 0.15);
    box-shadow: inset 0 0 15px rgba(111, 38, 173, 0.2);
}

.home-service-card.purple-variant:hover .home-service-icon {
    background: rgba(111, 38, 173, 0.25);
}

.home-service-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.5px;
}

.home-service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.home-service-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #b91d1d;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(185, 29, 29, 0.3);
}

.home-service-btn:hover {
    background: #ff4747;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(185, 29, 29, 0.5);
}

.home-service-card.purple-variant .home-service-btn {
    background: #6f26ad;
    box-shadow: 0 8px 20px rgba(111, 38, 173, 0.3);
}

.home-service-card.purple-variant .home-service-btn:hover {
    background: #9d4edd;
    color: #fff;
    box-shadow: 0 12px 25px rgba(111, 38, 173, 0.5);
}

/* =============== TESTIMONIALS =============== */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    gap: 15px;
}

.tst-btn {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.3s;
}

.tst-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.testimonials-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background: #fff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-comment {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-info strong {
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.testimonial-title {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
    }

    .nav-container-dark {
        height: 70px;
    }

    .nav-right-area {
        gap: 0;
    }

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

    .hero-left {
        flex: 0 0 280px;
    }

    .title-big {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    .hero-center {
        max-width: 650px;
    }

    .right-nav-item {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .right-nav {
        gap: 28px;
    }

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

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

    .home-services-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .navbar-dark {
        padding: 0 20px;
        top: 38px;
    }

    .nav-container-dark {
        height: 50px;
    }

    .logo-dark {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }

    .nav-link-dark {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
    }

    .search-box.open .search-input-dark {
        width: 120px;
    }

    .hero-dark {
        padding-top: 10px;
    }

    .hero-right {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        padding: 95px 20px 0;
        text-align: center;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
    }

    .hero-left {
        flex: none;
        width: 100%;
        margin-bottom: 0;
        order: 1;
        padding-top: 0px;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 0.85rem;
    }

    .title-big {
        font-size: 2.2rem;
    }

    .title-small {
        font-size: 1rem;
    }

    .hero-subtitle-line {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .hero-center {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        order: 2;
        margin: 0;
    }

    .main-slider-img {
        height: 38vh;
    }

    .hero-bottom-stats {
        position: absolute;
        bottom: 10%;
        gap: 15vw;
    }

    .slide-dots {
        bottom: 5%;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .catalog-container {
        padding: 0 20px;
    }

    .catalog-toolbar {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 6px;
    }

    .catalog-toolbar-left {
        display: flex;
        align-items: center;
        gap: 6px;
        flex: 0 0 auto;
    }

    .catalog-controls {
        flex-direction: row;
        justify-content: flex-start;
        gap: 6px;
        flex: 1;
        min-width: 0;
    }

    .drawer-btn {
        width: 40px;
        /* Biraz küçülttük */
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .drawer-btn-text {
        display: none;
    }

    .catalog-search-form {
        flex: 1.5;
        min-width: 0;
        height: 38px;
    }

    .catalog-search-input {
        width: 100%;
        font-size: 0.75rem;
        padding: 0 12px;
        height: 100%;
    }

    .catalog-sort {
        flex: 1.2;
        min-width: 0;
        height: 38px;
        padding: 0 22px 0 10px;
        font-size: 0.75rem;
        background-position: right 6px center;
        background-size: 10px;
    }

    .drawer-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .desktop-hide-sold {
        display: none !important;
        /* Kesinlikle gizle */
    }

    .catalog-main-title {
        font-size: 1.4rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .catalog-search-input {
        width: 100%;
    }

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

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

    .contact-details {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 25px !important;
        height: auto !important;
    }

    .contact-card {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .footer-info-card,
    .footer-form,
    .footer-instagram {
        padding: 30px 20px !important;
    }

    .pd-container {
        padding: 80px 20px 60px;
    }

    .pd-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pd-title {
        font-size: 1.5rem;
    }

    .pd-price {
        font-size: 1.4rem;
    }

    .pd-contact-options {
        flex-direction: column;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .form-field-row {
        flex-direction: column;
        gap: 14px;
    }

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

    .home-services-section {
        padding: 40px 0;
    }

    .home-services-header {
        margin-bottom: 50px;
    }

    .home-services-header h2 {
        font-size: 1.6rem;
    }

    .home-services-grid {
        padding: 0 15px;
    }

    .home-service-card {
        padding: 30px 20px;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .testimonials-header h2 {
        text-align: center;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonials-container {
        padding: 0 20px;
    }
}

/* ================= FILTER DRAWER ================= */
.filter-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.filter-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-drawer.active {
    transform: translateX(-450px);
}

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

.drawer-header h3 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-drawer:hover {
    color: #000;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

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

.drawer-section-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.drawer-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 0.88rem;
    background: #fcfcfc;
    transition: all 0.3s;
    font-family: inherit;
}

/* Hierarchical Cats */
.hierarchical-cats {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.drawer-cat-btn,
.drawer-sub-btn {
    text-align: left;
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    width: 100%;
    color: #555;
    font-family: inherit;
}

.drawer-cat-btn:hover,
.drawer-sub-btn:hover {
    background: #f8f8f8;
    color: #000;
}

.drawer-cat-btn.active,
.drawer-sub-btn.active {
    background: #1a1a1a;
    color: #fff !important;
}

.drawer-cat-group {
    display: flex;
    flex-direction: column;
}

.cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 10px;
    transition: transform 0.3s;
}

.sub-toggle.open {
    transform: rotate(180deg);
}

.sub-cats {
    display: none;
    padding-left: 35px;
    font-size: 0.82rem;
    margin-top: 5px;
    margin-bottom: 10px;
}

.sub-cats.active {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Badge Filter Grid */
.badge-filter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.badge-f-btn {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-family: inherit;
}

.badge-f-btn.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* Modern Switch Stili */
.drawer-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 15px;
    background: #fbfbfb;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.drawer-toggle:hover {
    background: #f5f5f5;
}

.drawer-toggle input {
    appearance: none;
    width: 44px;
    height: 24px;
    background: #e0e0e0;
    border-radius: 12px;
    position: absolute;
    left: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.drawer-toggle input:checked {
    background: #1a1a1a;
}

.drawer-toggle input::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s;
}

.drawer-toggle input:checked::before {
    transform: translateX(20px);
}

.drawer-footer {
    padding: 25px 30px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.drawer-footer .btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    font-family: inherit;
}

.drawer-footer .btn-primary {
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.drawer-footer .btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.drawer-footer .btn-ghost {
    background: transparent;
    color: #999;
    margin-top: 10px;
}

.drawer-footer .btn-ghost:hover {
    color: #000;
    background: #f8f8f8;
}

@media (max-width: 480px) {
    .filter-drawer {
        max-width: 100%;
        right: -100%;
    }

    .filter-drawer.active {
        transform: translateX(-100%);
    }
}