/* Import Web Fonts */
@font-face {
    font-family: 'BPG Nino Mtavruli';
    src: url('../fonts/bpg_extrasquare_mtavruli_2009.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TBC Contractica';
    src: url('../fonts/TBCContracticaCAPS-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #222;
    --white: #FFFFFF;
    --gray-bg: #F5F5F5;
    --text-muted: #767676;
    --text-gray: #333333;
    --border-color: #E8E8E8;
    --gradient-dark: linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
    --gradient-premium: linear-gradient(180deg, #141414 0%, #2a2a2a 100%);
    --hover-bg: #F5F5F5;
    --sale-color: #e71d35c0;
}

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

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--white);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--white);
}

body {
    font-family: 'BPG Nino Mtavruli', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text-gray);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.secondary-font,
.app-description,
.footer-accordion-content,
.message,
.product-description p,
.terms-accordion-content p {
    font-family: 'TBC Contractica', 'Helvetica Neue', sans-serif;
    letter-spacing: 0.3px;
}

#welcome-page,
#admin-page,
#sell-page {
    display: none !important;
}

.shop-container { 
    display: block; 
    max-width: 100%;
    margin: 0 auto;
    background: var(--white);
    min-height: 0px;
    position: relative;
}

/* ===== ORDER TRACKING PAGE - ENHANCED ===== */
.order-tracking-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 50px 50px;
}

.order-tracking-card {
    background: var(--white);
    border: none;
    padding: 0px;
    margin-bottom: 25px;
}

.order-tracking-header {
    text-align: center;
    margin-bottom: 32px;
}

.order-tracking-header h1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.order-tracking-header p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-family: 'TBC Contractica';
}

.order-input-group {
    margin-bottom: 20px;
}

.order-input-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-size: 11px;
    color: var(--text-gray);
    
}

.order-input-wrapper {
    position: relative;
}

.order-input-wrapper input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    background: var(--white);
    font-family: 'BPG Nino Mtavruli', sans-serif;
    font-size: 14px;
    font-weight: 600;
    
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: var(--text-gray);
}

.order-input-wrapper input:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 1px var(--black);
}

.order-input-wrapper input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.verify-btn {
    width: 100%;
    padding: 18px;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    
    font-family: 'BPG Nino Mtavruli', sans-serif;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.verify-btn:hover {
    background: var(--text-gray);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.verify-btn:active {
    transform: translateY(0);
}

#order-status-display {
    padding: 32px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    line-height: 1.8;
}

#order-status-display.success {
    background: var(--gray-bg);
    border-color: none;
    color: var(--black);
}

#order-status-display.error {
    background: var(--gray-bg);
    border-color: none;
    color: var(--black);
}

#order-status-display.pending {
    background: var(--gray-bg);
    border-color: none;
    color: var(--black);
}

.status-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    display: none;
}

#order-status-display.success .status-icon,
#order-status-display.error .status-icon,
#order-status-display.pending .status-icon {
    display: block;
}

.order-info-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 13px;
}

.order-info-label {
    color: var(--text-muted);
    font-weight: 400;
}

.order-info-value {
    color: var(--text-gray);
    font-weight: 600;
    text-align: right;
}

.tracking-help-text {
    text-align: center;
    padding: 24px 24px 0;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.8;
    font-family: 'TBC Contractica';
}

.tracking-help-text a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 600;
}

/* Desktop Responsive */
@media screen and (min-width: 768px) {
    .order-tracking-container {
        padding: 64px 50px;
    }
    
    .order-tracking-card {
        padding: 50px 40px 0px;
    }
    
    .order-tracking-header h1 {
        font-size: 18px;
    }
    
    .order-tracking-header p {
        font-size: 14px;
    }
    
    .order-input-wrapper input {
        padding: 18px 24px;
        font-size: 15px;
    }
    
    .verify-btn {
        padding: 20px;
        font-size: 14px;
    }
}

#home-page, #checkout-page, #product-detail-page, #terms-page, #order-tracking-page { 
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

#home-page.active,
#checkout-page.active,
#product-detail-page.active,
#terms-page.active,
#order-tracking-page.active {
    display: block;
}

/* ===== HEADER ===== */
.main-header, .page-header, .detail-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1001;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
    transition: box-shadow 0.3s ease;
}

.main-header:hover {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.main-header {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    padding: 15px 15px;
    text-align: center;
}

/* ===== HEADER GENDER BUTTONS ===== */
.header-gender-buttons {
    display: flex;
    gap: 0;
    border: none;
    overflow: hidden;
    margin-right: auto;
    margin-left: 12px;
    flex-wrap: wrap;
}

/* მობილურზე - რომ კარგად გამოჩნდეს */
@media screen and (max-width: 640px) {
    .header-gender-buttons {
        margin-left: 8px;
        margin-right: auto;
        gap: 0;
    }
}

/* დესკტოპზე - ნორმალური */
@media screen and (min-width: 768px) {
    .header-gender-buttons {
        margin-left: 24px;
    }
}

.header-gender-btn {
    padding: 10px 20px;
    background: var(--hover-bg);
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    letter-spacing: 1px;
    border-right: none;
}

.header-gender-btn:last-child {
    border-right: none;
    background: var(--hover-bg);
}

.header-gender-btn:hover:not(.active) {
    background: var(--white);
}

.header-gender-btn.active {
    background: var(--black);
    color: var(--white);
}

.header-icons { 
    display: flex; 
    align-items: center; 
    gap: 5px; 
    justify-self: flex-end;
}

.header-logo img { 
    height: 34px;
    transition: opacity 0.3s ease;
}

.header-logo:hover img {
    opacity: 0.7;
}

.icon-btn { 
    position: relative; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 8px; 
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0x;
}

.icon-btn:hover {
    background: var(--hover-bg);
}

.icon-btn svg { 
    width: 22px; 
    height: 22px; 
    fill: var(--black);
    transition: transform 0.2s ease;
}

.icon-btn:active svg { 
    transform: scale(0.9);
}

.cart-counter { 
    position: absolute; 
    top: 4px; 
    right: 4px; 
    background: var(--black); 
    color: var(--white); 
    min-width: 16px; 
    height: 16px; 
    font-size: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transform: scale(0); 
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
    font-weight: 600;
    border-radius: 0x;
    padding: 0 4px;
}

.cart-counter.visible { 
    transform: scale(1);
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    display: flex;
    gap: 0;
    border: none;
    overflow: hidden;
    margin-right: 8px;
}

/* Hide language switcher on mobile */
@media screen and (max-width: 767px) {
    .language-switcher {
        display: none;
    }
}


.lang-btn {
    padding: 8px 12px;
    background: var(--hover-bg);
    color: var(--black);
    font-size: 11px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BPG Nino Mtavruli';
}

.lang-btn:first-child {
    border-right: none;
}

.lang-btn:hover:not(.active) {
    background: var(--white);
    color: var(--black);
}

.lang-btn.active {
    background: var(--black);
    color: var(--white);
}

/* Desktop */
@media screen and (min-width: 768px) {
    .language-switcher {
        margin-right: 12px;
    }
    
    .lang-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* ===== HOME PAGE ===== */
#home-page {
    padding-top: 0;
}

/* ===== HERO BANNER ===== */
.hero-banner-slider {
    position: relative;
    margin: 15px 15px 15px;
    height: 150px;
    overflow: hidden;
    background: var(--gray-bg);
    display: none;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0x;
}

.hero-nav:hover {
    background: var(--black);
    color: var(--white);
}

.hero-nav.prev { left: 16px; }
.hero-nav.next { right: 16px; }

/* ===== CATEGORY FILTERS ===== */
.category-filters {
    padding: 0 25px 25px;
    display: flex;
    gap: 15px;
    scrollbar-width: none;
    margin: 0 auto;
    max-width: 100%;
}

.category-filters::-webkit-scrollbar { display: none; }

.category-filters .filter-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    color: var(--text-gray);
    background: var(--hover-bg);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    font-family: 'BPG Nino Mtavruli', sans-serif;
}

.category-filters .filter-btn:hover:not(.active) {
    background: var(--white);
    border-color: var(--text-gray);
}

.category-filters .filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}


/* ===== PAGINATION ===== */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 15px;
}

.pagination-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: #ffffff00;
    border: none;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled):not(.active) {
    background: var(--black);
    color: var(--white);
}

.pagination-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-dots {
    padding: 0 8px;
    color: var(--text-muted);
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .pagination-container {
        padding: 50px 50px;
    }
    
    .pagination-btn {
        min-width: 50px;
        height: 50px;
    }
}


/* ===== PRODUCT GRID ===== */
.grid-header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    border-bottom: none;
}

.grid-header-controls h2 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-gray);
}

.sorting-controls {
    padding: 0;
}

.sorting-controls select {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: var(--white);
    padding: 8px 32px 8px 14px;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    
    letter-spacing: 0.8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    color: var(--text-gray);
    transition: all 0.25s ease;
}

.sorting-controls select:hover {
    background-color: var(--hover-bg);
    border-color: var(--black);
}

.product-grid-section {
    padding: 0 25px 0px;
    max-width: 100%;
    margin: 0 auto;
}

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

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

.product-item {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-2px);
}

.product-image-wrapper { 
    position: relative; 
    cursor: default;
    overflow: hidden;
    background: var(--gray-bg);
}

.btn-close-panel {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.btn-close-panel:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.btn-close-panel-search {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--black);
    transition: all 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.btn-close-panel-search:hover {
    color: var(--black);
    transform: rotate(90deg);
}

.product-item img {
    width: 100%;
    object-fit: cover;
    background-color: var(--gray-bg);
    display: block;
    transition: transform 0.5s ease;
    cursor: default;
    pointer-events: none;
}

.product-item:hover img {
    transform: scale(1.03);
}

.grid-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    z-index: 5;
}

.size-selector {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    padding: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    width: auto;
    max-width: 200px;
    backdrop-filter: blur(8px);
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
}

.product-item.sizes-visible .size-selector {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.size-btn {
    width: auto;
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    white-space: nowrap;
    padding: 0 10px;
}

.size-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.grid-add-btn {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--black);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 0x;
}

.grid-add-btn:hover {
    transform: scale(1.08);
}

.grid-add-btn .plus-icon { 
    width: 16px; 
    height: 16px; 
}

.grid-add-btn .plus-icon::before, 
.grid-add-btn .plus-icon::after { 
    background-color: var(--white); 
}

.grid-add-btn.added { 
    background: var(--white); 
    border: 2px solid var(--black); 
}

.grid-add-btn.added .plus-icon { 
    display: none; 
}

.grid-add-btn .icon-check { 
    display: none; 
    fill: none; 
    stroke-width: 2.5; 
    width: 18px; 
    height: 18px; 
}

.grid-add-btn.added .icon-check { 
    display: block; 
    stroke: var(--black); 
}

.product-item .info { 
    padding: 14px 4px 8px 4px; 
    flex-grow: 1; 
    cursor: pointer;
}

.product-item .info .title {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 6px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.price-container { 
    display: flex; 
    align-items: baseline; 
    gap: 8px;
}

.current-price { 
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

#product-detail-price .current-price { 
    font-size: 22px;
}

.old-price { 
    text-decoration: line-through; 
    color: var(--sale-color); 
    font-size: 12px; 
    font-weight: 400;
}

/* ===== CART PANEL ===== */
.cart-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1999; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(2px);
}

.cart-overlay.open { 
    opacity: 1; 
    visibility: visible;
}

.cart-panel { 
    position: fixed; 
    top: 0; 
    right: 0; 
    width: 100%; 
    max-width: 420px; 
    height: 100%; 
    background-color: var(--white); 
    z-index: 2000; 
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    display: flex; 
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.cart-panel.open { 
    transform: translateX(0);
}

/* ===== MOBILE MENU PANEL ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(2px);
}

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

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-menu-panel.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--black);
}

.mobile-menu-header .page-header-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.mobile-menu-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.mobile-menu-logo {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.mobile-menu-logo img {
    height: 32px;
}

.mobile-menu-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-section:last-child {
    border-bottom: none;
}

.mobile-menu-section h3 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* Gender Buttons */
.mobile-menu-gender-buttons {
    display: flex;
    gap: 12px;
}

.mobile-menu-gender-btn {
    flex: 1;
    padding: 12px 20px;
    background: var(--hover-bg);
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BPG Nino Mtavruli', sans-serif;
}

.mobile-menu-gender-btn:hover {
    background: var(--white);
}

.mobile-menu-gender-btn.active {
    background: var(--black);
    color: var(--white);
}

/* Language Buttons */
.mobile-menu-language-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-lang-btn {
    padding: 12px 20px;
    background: var(--hover-bg);
    color: var(--text-gray);
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    text-align: left;
}

.mobile-menu-lang-btn:hover {
    background: var(--white);
}

.mobile-menu-lang-btn.active {
    background: var(--black);
    color: var(--white);
}

/* Menu Links */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link {
    display: block;
    padding: 16px 0;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

.mobile-menu-link:hover {
    color: var(--black);
    padding-left: 8px;
}

/* Hide on Desktop */
@media screen and (min-width: 768px) {
    .mobile-menu-btn,
    .mobile-menu-overlay,
    .mobile-menu-panel {
        display: none !important;
    }
}

.cart-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 24px; 
    border-bottom: 1px solid var(--border-color);
    background: var(--black);
}

.cart-header .page-header-title { 
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.cart-items { 
    flex-grow: 1; 
    overflow-y: auto; 
    padding: 20px 24px;
}

.cart-item { 
    display: flex; 
    gap: 16px; 
    align-items: flex-start; 
    padding-bottom: 20px; 
    border-bottom: 1px solid var(--border-color); 
    margin-bottom: 20px;
}

.cart-item:last-child { 
    border-bottom: none; 
    margin-bottom: 0;
}

.cart-item .item-details { 
    flex-grow: 1;
}

.cart-item img { 
    width: 70px; 
    height: 95px; 
    object-fit: cover; 
    background-color: var(--gray-bg);
}

.cart-item .item-info p { 
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.5;
}

.cart-item-remove-btn { 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 4px; 
    margin-left: auto; 
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-radius: 0x;
}

.cart-item-remove-btn:hover {
    background: var(--hover-bg);
}

.cart-item-remove-btn svg { 
    width: 20px; 
    height: 20px; 
    fill: var(--text-muted); 
    transition: fill 0.2s;
}

.cart-item-remove-btn:hover svg { 
    fill: var(--black);
}

.cart-footer { 
    padding: 20px 24px; 
    border-top: 1px solid var(--border-color);
    background: var(--white);
}

.cart-total { 
    margin-bottom: 16px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-weight: 600;
    font-size: 15px;
}

.checkout-btn {
    background: var(--black);
    width: 100%;
    padding: 16px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    
    font-family: 'BPG Nino Mtavruli', sans-serif;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--text-gray);
}

.checkout-btn:active {
    transform: scale(0.98);
}

/* ===== INSTALLMENT PAYMENT BUTTON ===== */
.installment-btn {
    background: #FFFFFF;
    border: 2px solid var(--black);
    width: 100%;
    padding: 16px;
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

.installment-btn:active {
    transform: scale(0.98);
}

.installment-info {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    font-family: 'TBC Contractica';
}

.installment-info svg {
    width: 14px;
    height: 14px;
    fill: var(--text-muted);
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section { 
    padding: 32px 24px;
}

#checkout-summary { 
    margin-bottom: 32px; 
    border-bottom: 1px solid var(--border-color); 
    padding-bottom: 24px;
}

#checkout-summary h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
}

.checkout-item { 
    display: flex; 
    gap: 16px; 
    margin-bottom: 16px; 
    align-items: flex-start; 
    font-size: 13px;
}

.checkout-item img { 
    width: 60px; 
    height: 80px; 
    object-fit: cover; 
    background-color: var(--gray-bg);
}

.checkout-item .item-info { 
    flex-grow: 1;
    line-height: 1.6;
}

.checkout-total {
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    padding-top: 16px;
    border-top: none;
}

.delivery-estimate {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 12px;
    padding: 12px;
    background: var(--gray-bg);
    font-family: 'TBC Contractica';
    line-height: 1.6;
}

.delivery-estimate svg {
    flex-shrink: 0;
}

#delivery-form .form-group { 
    margin-bottom: 20px;
}

#delivery-form h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1.2px;
}

#delivery-form label { 
    display: block; 
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-size: 11px;
    color: var(--text-gray);
}

#delivery-form textarea, 
#delivery-form input { 
    width: 100%; 
    padding: 14px 16px; 
    border: 1px solid var(--border-color); 
    background: var(--white); 
    font-family: 'BPG Nino Mtavruli', sans-serif; 
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--text-gray);
}

#delivery-form textarea:focus, 
#delivery-form input:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 1px var(--black);
}

.phone-input-group { 
    display: flex; 
    align-items: stretch; 
    overflow: hidden; 
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.phone-input-group:focus-within {
    border-color: var(--black);
    box-shadow: 0 0 0 1px var(--black);
}

.phone-input-group .prefix { 
    padding: 14px 12px;
    font-weight: 600;
    background: var(--gray-bg);
    border-right: 1px solid var(--border-color);
}

.phone-input-group input { 
    border: none;
    box-shadow: none !important;
}

/* ===== PAGE HEADERS ===== */
.page-header,
.simple-back-header { 
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1001;
    border-bottom: 1px solid var(--border-color);
    padding: 18px 24px;
}

.page-header-title { 
    font-weight: 600; 
    font-size: 14px; 
    letter-spacing: 1.5px;
    text-align: center;
    flex: 1;
}



/* ===== APP PROMO PAGE ===== */
#app-promo-page {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

#app-promo-page.active {
    display: block;
}

.app-promo-section {
    padding: 50px 50px;
    background: #FFFFFF;
    min-height: 100vh;
}

.app-promo-container {
    max-width: 888px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.app-promo-content {
    text-align: center;
}

.app-promo-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.3;
    font-family: 'BPG Nino Mtavruli';
}

.app-promo-subtitle {
    font-size: 15px;
    color: #767676;
    margin-bottom: 25px;
    line-height: 1.6;
    font-family: 'TBC Contractica', 'Helvetica Neue', sans-serif;
    letter-spacing: 0.3px;
}

.app-promo-qr-section {
    margin: 32px 0 0 0;
    padding: 0;
    display: inline-block;
    border: none;
    max-width: 888px;
    text-align: center;
}

.app-promo-qr-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #333333;
}

.app-promo-qr-code {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

.app-promo-qr-description {
    font-size: 11px;
    color: #767676;
    margin-bottom: 10px;
    font-family: 'TBC Contractica', sans-serif;
    line-height: 1.5;
}

/* Mobile App Download Buttons */
.app-promo-mobile-downloads {
    display: none;
    margin-top: 32px;
    width: 100%;
    justify-content: center;
}

.app-promo-mobile-downloads .app-download {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .app-promo-mobile-downloads {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }
}

.app-promo-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-phone-slider {
    position: relative;
    max-width: 250px;
    width: 100%;
    height: auto;
}

.app-promo-phone {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.app-promo-phone.active {
    opacity: 1;
    position: relative;
}



/* Mobile Styles */
@media screen and (max-width: 767px) {
    .app-promo-section {
        padding: 50px 24px;
    }
    
    .app-promo-container {
        gap: 50px;
    }
    
    .app-promo-qr-section {
        display: none !important;
    }
    
    .app-promo-mobile-downloads {
        display: flex !important;
    }
    
    .app-promo-mobile-downloads .app-download {
        flex-direction: column;
        align-items: center;
    }
}

/* Tablet/Desktop Styles */
@media screen and (min-width: 768px) {
    .app-promo-section {
        padding: 100px 50px;
    }

    .app-promo-container {
        grid-template-columns: 1fr 1fr;
    }

    .app-promo-content {
        text-align: center;
    }

    .app-promo-title {
        font-size: 36px;
    }

    .app-promo-subtitle {
        font-size: 16px;
    }

    .app-promo-qr-section {
        margin: 32px 0 0 0;
    }

    .app-promo-phone {
        max-width: 300px;
    }
}

/* Large Desktop Styles */
@media screen and (min-width: 1024px) {
    .app-promo-section {
        padding: 120px 64px;
    }

    .app-promo-title {
        font-size: 42px;
    }

    .app-promo-phone {
        max-width: 300px;
    }
}


/* Back button positioned like chat icon */
.back-btn-floating {
    position: fixed;
    bottom: 24px;
    right: 90px;
    width: 56px;
    height: 56px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 0px;
    opacity: 0.25;
}

.back-btn-floating:hover { 
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.back-btn-floating svg { 
    width: 28px; 
    height: 28px;
    fill: var(--white);
}

/* Desktop responsive */
@media screen and (min-width: 768px) {
    .back-btn-floating {
        bottom: 24px;
        right: 90px;
    }
}

.product-image-container { 
    position: relative; 
    background-color: var(--gray-bg);
}

.detail-image-slider { 
    display: flex; 
    overflow-x: scroll; 
    scroll-snap-type: x mandatory; 
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.detail-image-slider::-webkit-scrollbar { 
    display: none; 
}

.detail-image-slider img { 
    width: 100%; 
    height: auto; 
    flex-shrink: 0; 
    scroll-snap-align: center; 
    cursor: zoom-in;
    transition: transform 0.3s ease;
    background: var(--gray-bg);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0x;
}

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

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots { 
    position: absolute; 
    bottom: 16px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 8px; 
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--gray-bg);
    border: none;
    cursor: pointer;
    border-radius: 0x;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active { 
    background-color: var(--black);
    width: 24px;
    border-radius: 0x;
}

.product-info-container { 
    padding: 28px 24px; 
    background-color: var(--white); 
}

.product-info-container h1 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.product-info-container > * { 
    margin-bottom: 20px;
}

.product-info-container > *:last-child { 
    margin-bottom: 0;
}

.option-group {
    margin: 24px 0;
}

.option-group select { 
    -webkit-appearance: none; 
    appearance: none; 
    background: var(--white); 
    color: var(--text-gray); 
    border: none; 
    padding: 14px 16px; 
    width: 100%; 
    max-width: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); 
    background-repeat: no-repeat; 
    background-position: right 14px center; 
    font-family: 'BPG Nino Mtavruli', sans-serif; 
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 13px;
}

.option-group select:hover {
    border-color: var(--black);
}

.product-description h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1.2px;
}

.product-description p { 
    color: var(--text-muted); 
    line-height: 1.8;
    letter-spacing: 0.2px;
    font-size: 14px;
}

/* Product detail add to cart button - inside info container */
.product-info-container #detail-add-to-cart-btn {
    width: 100%;
    padding: 16px;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    
    font-family: 'BPG Nino Mtavruli', sans-serif;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.product-info-container #detail-add-to-cart-btn:hover {
    background: var(--text-gray);
}

.product-info-container #detail-add-to-cart-btn:active {
    transform: scale(0.98);
}

/* ===== QUALITY CHECK SECTION ===== */
.customer-reviews { 
    padding: 28px 24px; 
    border-top: 1px solid var(--border-color);
    background: var(--white);
}

.customer-reviews h3 { 
    margin-bottom: 16px;
    letter-spacing: 1.2px;
    font-size: 13px;
    font-weight: 600;
}

.review-photos-container { 
    display: flex; 
    gap: 12px; 
    overflow-x: auto; 
    padding-bottom: 10px; 
    scrollbar-width: none;
}

.review-photos-container::-webkit-scrollbar { 
    display: none; 
}

.review-photos-container img { 
    height: 140px; 
    width: 105px; 
    object-fit: cover; 
    flex-shrink: 0; 
    cursor: zoom-in;
    transition: all 0.3s ease;
    background: var(--gray-bg);
}

.review-photos-container img:hover {
    transform: scale(1.05);
}

/* ===== CHAT WIDGET ===== */
.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(2px);
}

.chat-overlay.open { 
    opacity: 1; 
    visibility: visible;
}

.live-chat-icon {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 0x;
    opacity: 0.25;
}

.live-chat-icon:hover { 
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.live-chat-icon svg { 
    width: 28px; 
    height: 28px; 
    transition: all 0.3s ease;
}

.chat-widget-container {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: calc(100% - 50px);
    max-width: 400px;
    height: min(70vh, 600px);
    background-color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2001;
    border-radius: 0x;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-widget-container.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.live-chat-icon.chat-open .icon-chat { 
    transform: rotate(180deg) scale(0); 
    opacity: 0;
}

.live-chat-icon.chat-open .icon-close { 
    transform: rotate(0) scale(1); 
    opacity: 1;
}

.live-chat-icon .icon-close { 
    position: absolute; 
    transform: rotate(-180deg) scale(0.5); 
    opacity: 0;
}

.chat-header {
    background: var(--black);
    color: var(--white);
    padding: 18px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 1px;
    font-size: 13px;
}

.chat-messages { 
    flex-grow: 1; 
    padding: 20px; 
    overflow-y: auto; 
    display: flex; 
    flex-direction: column; 
    gap: 12px;
    background: var(--gray-bg);
}

.message { 
    padding: 12px 16px; 
    max-width: 75%; 
    line-height: 1.6; 
    border-radius: 0x;
    font-size: 14px;
}

.operator-message { 
    background: var(--white); 
    color: var(--text-gray); 
    align-self: flex-start;
    border: 1px solid var(--border-color);
}

.user-message { 
    background: var(--black); 
    color: var(--white); 
    align-self: flex-end;
}

.chat-input-form { 
    display: flex; 
    padding: 16px 20px; 
    border-top: 1px solid var(--border-color);
    background: var(--white);
    gap: 12px;
}

.chat-input-form input { 
    flex-grow: 1; 
    border: 1px solid var(--border-color); 
    padding: 12px 16px; 
    font-size: 14px; 
    background: var(--white); 
    font-family: 'BPG Nino Mtavruli', sans-serif;
    border-radius: 0x;
}

.chat-input-form input:focus { 
    outline: none;
    border-color: var(--black);
}

.chat-input-form button { 
    background: var(--black); 
    border: none; 
    padding: 12px 16px; 
    cursor: pointer; 
    color: var(--white);
    transition: all 0.3s ease;
    border-radius: 0x;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input-form button:hover { 
    background: var(--text-gray);
}

.chat-input-form button svg { 
    width: 20px; 
    height: 20px;
}

#pre-chat-form { 
    padding: 24px; 
    display: flex; 
    flex-direction: column; 
    height: 100%;
}

#pre-chat-form h4 { 
    margin-bottom: 24px; 
    text-align: center; 
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}

#pre-chat-form .form-group { 
    margin-bottom: 16px;
}

#pre-chat-form label { 
    font-size: 11px; 
    margin-bottom: 8px; 
    display: block;
    font-weight: 600;
    letter-spacing: 0.8px;
}

#pre-chat-form input { 
    width: 100%; 
    padding: 14px 16px; 
    border: 1px solid var(--border-color); 
    background: var(--white); 
    font-size: 14px;
    transition: all 0.3s ease;
}

#pre-chat-form input:focus {
    border-color: var(--black);
    outline: none;
}

#pre-chat-form button { 
    margin-top: auto; 
    background: var(--black); 
    color: var(--white); 
    padding: 16px; 
    border: none; 
    font-size: 13px; 
    font-weight: 600; 
    cursor: pointer; 
     
    font-family: 'BPG Nino Mtavruli', sans-serif;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

#pre-chat-form button:hover {
    background: var(--text-gray);
}

/* Mobile/Desktop visibility helpers */
.mobile-only {
    display: flex !important;
}

.desktop-only {
    display: none !important;
}

@media screen and (min-width: 640px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* ===== HEADER SEARCH BAR ===== */
.header-search-bar {
    position: relative;
    flex: 1;
    max-width: 600px;
    margin: 0 16px;
}

.header-search-bar .search-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

#header-search-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 8px 8px 8px 28px;
    font-size: 13px;
    background: transparent;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    transition: all 0.3s ease;
}

#header-search-input:focus {
    outline: none;
    border-bottom-color: var(--black);
}

#header-search-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 12px;
}

.header-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid var(--border-color);
}

.header-search-results.show {
    display: block;
}

.header-search-results .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.header-search-results .search-result-item:last-child {
    border-bottom: none;
}

.header-search-results .search-result-item:hover {
    background: var(--hover-bg);
}

.header-search-results .search-result-item img {
    width: 45px;
    height: 60px;
    object-fit: cover;
    background-color: var(--gray-bg);
    flex-shrink: 0;
}

.header-search-results .search-result-item .title {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.3;
}

.header-search-results .search-result-item .price {
    font-size: 13px;
    font-weight: 600;
}

.header-search-results .no-results {
    padding: 30px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* Tablet and up */
@media screen and (min-width: 640px) {
    .header-search-bar {
        margin: 0 20px;
    }
    
    #header-search-input {
        font-size: 14px;
        padding: 10px 10px 10px 30px;
    }
    
    .header-search-bar .search-icon {
        width: 20px;
        height: 20px;
    }
}

@media screen and (min-width: 768px) {
    .header-search-bar {
        margin: 0 32px;
        max-width: 500px;
    }
}

@media screen and (min-width: 1024px) {
    .header-search-bar {
        max-width: 600px;
        margin: 0 50px;
    }
}

/* ===== HEADER SEARCH BAR ===== */
.header-search-bar {
    position: relative;
    flex: 1;
    max-width: 600px;
    margin: 0 16px;
}

/* ... დანარჩენი header search styles ... */

@media screen and (min-width: 1024px) {
    .header-search-bar {
        max-width: 600px;
        margin: 0 50px;
    }
}

/* ↓↓↓ აქ დაამატე ახალი mobile search overlay styles ↓↓↓ */

/* ===== MOBILE SEARCH OVERLAY ===== */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(2px);
}

.mobile-search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-search-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.mobile-search-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
}

#mobile-search-input {
    flex-grow: 1;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 12px 4px;
    font-size: 16px;
    background: transparent;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

#mobile-search-input:focus {
    outline: none;
    border-bottom-color: var(--black);
}

.mobile-search-results {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.mobile-search-results .search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.mobile-search-results .search-result-item:hover {
    background: var(--hover-bg);
    padding-left: 8px;
    padding-right: 8px;
}

.mobile-search-results .search-result-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    background-color: var(--gray-bg);
}

.mobile-search-results .search-result-item .title {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px;
}

.mobile-search-results .search-result-item .price {
    font-size: 14px;
    font-weight: 600;
}

.mobile-search-results .no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Hide on desktop */
@media screen and (min-width: 640px) {
    .mobile-search-overlay {
        display: none;
    }
}


.footer-subsection {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.footer-subsection:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-subsection .footer-column-title {
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 12px;
}

.footer-links-plain {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-plain {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'TBC Contractica', sans-serif;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-link-plain:hover {
    color: var(--black);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--text-gray);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.app-download {
    flex-direction: column;
        width: 142px;
}


/* ===== FOOTER STYLES ===== */
.main-footer {
    padding: 50px 25px;
    background: var(--gray-bg);
    border-top: none;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-column-title {
    font-family: 'BPG Nino Mtavruli';
    font-size: 13px;
    color: var(--black);
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
}

/* SHOW ALL ACCORDIONS - NO HIDING */
.footer-accordion {
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    margin-bottom: 0;
}

.footer-accordion:last-child {
    border-bottom: none;
}

.footer-accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    font-family: 'TBC Contractica';
    font-size: 13px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-accordion-toggle:hover {
    color: var(--black);
}

.footer-accordion-content {
    max-height: none;
    overflow: visible;
    padding: 12px 0 0 0;
    display: block;
}

.plus-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.plus-icon::before,
.plus-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
}

.plus-icon::before {
    width: 12px;
    height: 2px;
}

.plus-icon::after {
    width: 2px;
    height: 12px;
}

.footer-link {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-family: 'TBC Contractica', sans-serif;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--black);
    text-decoration: underline;
}

/* SUBSECTION STYLES */
.footer-subsection {
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-subsection:last-child {
    margin-bottom: 0;
}

.footer-subsection .footer-column-title {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-links-plain {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-plain {
    color: var(--text-gray);
    text-decoration: none;
    font-family: 'TBC Contractica', sans-serif;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-link-plain:hover {
    color: var(--black);
    text-decoration: underline;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0px;
    background: var(--black);
    color: var(--white);
}

.social-icon:hover {
    background: var(--white);
    color: var(--black);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.app-download {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    width: 142px;
    height: 41px;
}

.app-store-btn img,
.google-play-btn img {
    height: 41px;
    width: auto;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: scale(1.05);
}

.app-store-btn span,
.google-play-btn span {
    display: block;
    color: var(--text-muted);
}

.app-store-btn:hover span,
.google-play-btn:hover span {
    color: var(--white);
}

.app-store-btn strong,
.google-play-btn strong {
    display: block;
    color: var(--black);
}

.app-store-btn:hover strong,
.google-play-btn:hover strong {
    color: var(--white);
}

/* მობილურის სტილი */
@media screen and (max-width: 480px) {
    .app-download {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .app-store-btn,
    .google-play-btn {
        width: 142px;
        height: 41px;
    }

    .app-store-btn img,
    .google-play-btn img {
        height: 41px;
        width: auto;
    }
    
    /* მობილურზე QR კოდის დამალვა და ღილაკების ჩვენება */
    .app-promo-qr-section {
        display: none !important;
    }
    
    .app-download-section {
        display: block !important;
    }
}



/* FOOTER LEGAL */
.footer-legal {
    text-align: left;
    padding-top: 24px;
    border-top: none;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--text-gray);
    text-decoration: underline;
    font-family: 'TBC Contractica';
    font-size: 13px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.legal-link:hover {
    color: var(--black);
}

.footer-copyright {
    font-family: 'TBC Contractica';
    font-size: 13px;
    color: var(--text-gray);
}

.footer-copyright p {
    margin-bottom: 6px;
}

.footer-copyright p:last-child {
    margin-bottom: 0;
}

/* ===== FOOTER LANGUAGE SELECTOR ===== */
.footer-language-selector {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.footer-lang-btn {
    padding: 10px 20px;
    background: var(--white);
    color: var(--text-gray);
    border: none;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    letter-spacing: 0.5px;
}

.footer-lang-btn:hover:not(.active) {
    background: var(--black);
    color: var(--white);
}

.footer-lang-btn.active {
    background: var(--black);
    color: var(--white);
}

@media screen and (min-width: 768px) {
    .footer-lang-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* ===== RESPONSIVE ===== */

/* MOBILE - 1 COLUMN */
@media screen and (max-width: 767px) {
    .main-footer {
        padding: 50px 25px;
    }

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

    .app-download-section {
        display: block !important;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
}

/* TABLET - 2-3 COLUMNS */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .main-footer {
        padding: 50px 25px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }

    .app-download-section {
        display: none !important;
    }

    .app-download {
        flex-direction: row;
        gap: 15px;
    }

    .app-store-btn,
    .google-play-btn {
        flex: 1;
    }
}

/* DESKTOP - 3 COLUMNS */
@media screen and (min-width: 1024px) {
    .main-footer {
        padding: 50px 25px;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
        margin-bottom: 60px;
    }

    .app-download-section {
        display: none !important;
    }

    .app-download {
        flex-direction: row;
        gap: 16px;
    }

    .app-store-btn,
    .google-play-btn {
        flex: 1;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }
}


/* ===== ROTATING BANNER ===== */
.rotating-banner {
    position: relative;
    width: 100%;
    height: 40px;
    overflow: hidden;
    border-bottom: none;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 0 20px;
    text-align: center;
}

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

.banner-slide:nth-child(1) {
    background: var(--black);
    color: var(--white);
}

.banner-slide:nth-child(2) {
    background: var(--gray-bg);
    color: var(--black);
}

.banner-slide:nth-child(3) {
    background: var(--black);
    color: var(--white);
}

.banner-slide:nth-child(4) {
    background: var(--gray-bg);
    color: var(--black);
}

.banner-link {
    color: inherit;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

/* ===== FAQ PAGE STYLES ===== */
#faq-page {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

#faq-page.active {
    display: block;
}

.faq-content {
    max-width: auto;
    margin: 0 auto;
    padding: 50px 25px;
}

.faq-main-title {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1.5px;
    color: var(--text-gray);
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 1.2px;
    color: var(--text-gray);
}

.faq-item {
    padding: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.faq-question:hover {
    color: var(--black);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-left: 16px;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-gray);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon svg {
    fill: var(--black);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-family: 'TBC Contractica', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.faq-contact-section {
    padding: 50px 25px;
    background: var(--gray-bg);
    text-align: center;
}

.faq-contact-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.faq-contact-section p {
    font-family: 'TBC Contractica', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.faq-contact-btn {
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BPG Nino Mtavruli', sans-serif;
}

.faq-contact-btn:hover {
    background: var(--text-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Desktop responsive */
@media screen and (min-width: 768px) {
    .faq-content {
        padding: 50px 25px;
    }
    
    .faq-main-title {
        font-size: 32px;
        margin-bottom: 64px;
    }
    
    .faq-category-title {
        font-size: 18px;
        margin-bottom: 32px;
        padding-bottom: 16px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 24px 0;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-contact-section {
        padding: 50px 40px;
    }
    
    .faq-contact-section h3 {
        font-size: 18px;
    }
}

.banner-link:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    .rotating-banner {
        height: 45px;
    }
    
    .banner-slide {
        font-size: 12px;
    }
}

/* ===== LOGO MARQUEE ===== */
.logo-marquee { 
    padding: 30px 30px 30px;
    background: var(--white);
    border-top: none;
    border-bottom: none;
    overflow: hidden;
    white-space: nowrap;
}

.logo-marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 40px;
    width: fit-content;
}

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

.logo-marquee-content img { 
    height: 20px; 
    margin: 0 40px; 
    filter: grayscale(100%); 
    opacity: 0.5; 
    vertical-align: middle;
    transition: all 0.3s ease;
}

.logo-marquee-content img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===== TERMS PAGE (FAQ STYLE) ===== */
.terms-content {
    max-width: auto;
    margin: 0 auto;
    padding: 50px 25px;
}

.terms-main-title {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1.5px;
    color: var(--text-gray);
}

.terms-category {
    margin-bottom: 50px;
}

.terms-category-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 1.2px;
    color: var(--text-gray);
}

.terms-item {
    padding: 0;
}

.terms-item:last-child {
    border-bottom: none;
}

.terms-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.terms-question:hover {
    color: var(--black);
}

.terms-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-left: 16px;
}

.terms-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-gray);
    transition: all 0.3s ease;
}

.terms-item.active .terms-icon {
    transform: rotate(45deg);
}

.terms-item.active .terms-icon svg {
    fill: var(--black);
}

.terms-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.terms-item.active .terms-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.terms-answer p {
    font-family: 'TBC Contractica', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Desktop responsive */
@media screen and (min-width: 768px) {
    .terms-content {
        padding: 50px 25px;
    }
    
    .terms-main-title {
        font-size: 32px;
        margin-bottom: 64px;
    }
    
    .terms-category-title {
        font-size: 18px;
        margin-bottom: 32px;
        padding-bottom: 16px;
    }
    
    .terms-question {
        font-size: 15px;
        padding: 24px 0;
    }
    
    .terms-answer p {
        font-size: 15px;
    }
}

/* ===== ORDER TRACKING ===== */
#order-status-display {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== LOADING OVERLAY ===== */
#loading-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: var(--white); 
    backdrop-filter: blur(8px); 
    z-index: 9999; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-overlay.hidden { 
    opacity: 0;
    visibility: hidden;
}

.loader-cubes { 
    display: flex;
    gap: 16px;
    perspective: 1000px;
}

.loader-cubes .cube { 
    width: 24px; 
    height: 24px; 
    background: var(--black); 
    animation: cubeRotate 1.8s infinite ease-in-out;
}

.loader-cubes .cube:nth-child(1) { 
    animation-delay: 0s; 
}

.loader-cubes .cube:nth-child(2) { 
    animation-delay: 0.2s; 
}

.loader-cubes .cube:nth-child(3) { 
    animation-delay: 0.4s; 
}

@keyframes cubeRotate {
    0%, 100% { 
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
    50% { 
        transform: rotateY(180deg) scale(0.8);
        opacity: 0.5;
    }
}

/* ===== IMAGE LIGHTBOX ===== */
#image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: none;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#image-lightbox.active {
    display: block;
}

#image-lightbox .lightbox-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    overflow: hidden;
}

#image-lightbox .lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    animation: imageZoomIn 0.4s ease;
}

#image-lightbox .lightbox-content img.zoomed {
    cursor: zoom-out;
}

@keyframes imageZoomIn {
    from { 
        opacity: 0;
        transform: scale(0.95);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

#image-lightbox .lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--black);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    z-index: 10002;
}

#image-lightbox .lightbox-close:hover {
    background: var(--text-gray);
    transform: rotate(90deg);
}

#image-lightbox .lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
}

#image-lightbox .lightbox-nav:hover {
    background: var(--text-gray);
}

#image-lightbox .lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

#image-lightbox .lightbox-prev { 
    left: 24px; 
}

#image-lightbox .lightbox-next { 
    right: 24px; 
}

@media screen and (max-width: 768px) {
    #image-lightbox .lightbox-content {
        padding: 80px 20px;
    }
    
    #image-lightbox .lightbox-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
    
    #image-lightbox .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }
    
    #image-lightbox .lightbox-prev { 
        left: 16px; 
    }
    
    #image-lightbox .lightbox-next { 
        right: 16px; 
    }
}
/* ===== LANGUAGE SUPPORT ===== */
html.lang-en, html.lang-ge {

}html.lang-en ::placeholder,
html.lang-ge ::placeholder {

}html.lang-en input,
html.lang-en textarea,
html.lang-ge input,
html.lang-ge textarea {
text-transform: none;
}



/* ===== SKI SEASON CAROUSEL ===== */
.ski-season-section {
    padding: 40px 0 50px;
    background: var(--white);
    overflow: hidden;
}

.ski-season-header {
    text-align: center;
    padding: 0 25px 0 0;
}

.ski-season-header h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    text-align: right;
}

/* Mobile: Scrollable carousel */
.ski-season-carousel {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 0;
}

.ski-carousel-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0px 25px 0 25px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.ski-carousel-track::-webkit-scrollbar {
    display: none;
}

.ski-carousel-item {
    flex: 0 0 auto;
    width: calc(50% - 12.5px);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.ski-carousel-item:hover {
    transform: translateY(-2px);
}

.ski-carousel-item-image {
    position: relative;
    width: 100%;
    background: var(--gray-bg);
    overflow: hidden;
    margin-bottom: 0;
    border: none;
}

.ski-carousel-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: var(--gray-bg);
}

.ski-carousel-item:hover .ski-carousel-item-image img {
    transform: scale(1.03);
}

.ski-carousel-item-info {
    padding: 14px 4px 8px;
    background: var(--white);
    text-align: left;
}

.ski-carousel-brand {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-gray);
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.ski-carousel-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tablet */
@media screen and (min-width: 768px) {
    .ski-season-section {
        padding: 50px 0;
    }
    
    .ski-season-header {
        padding: 0 25px 0 25px;
    }
    
    .ski-season-header h2 {
        font-size: 32px;
    }
    
    /* Desktop: Auto-scroll animation */
    .ski-season-carousel {
        padding: 0 50px;
        overflow: hidden;
    }
    
    .ski-carousel-track {
        animation: skiCarouselScroll 40s linear infinite;
        gap: 50px;
        padding: 0 0 20px;
        overflow: visible;
        scroll-snap-type: none;
    }
    
    .ski-carousel-track:hover {
        animation-play-state: paused;
    }
    
    @keyframes skiCarouselScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% / 2));
        }
    }
    
    .ski-carousel-item {
        width: 200px;
    }
    
    .ski-carousel-item-info {
        padding: 14px 4px 8px;
    }
    
    .ski-carousel-brand {
        font-size: 13px;
    }
    
    .ski-carousel-title {
        font-size: 14px;
    }
}

/* Large Desktop */
@media screen and (min-width: 1024px) {
    .ski-season-section {
        padding: 64px 0;
    }
    
    .ski-carousel-track {
        gap: 50px;
    }
    
    .ski-carousel-item {
        width: 220px;
    }
}





/* ===== NEW YEAR'S EVE BANNER ===== */
.newyear-banner {
    display: flex;
    flex-direction: column;
    background: var(--white);
    margin: 0 0 0;
    border: none;
    overflow: hidden;
}

.newyear-content {
    padding: 25px;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newyear-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: var(--black);
    line-height: 1.3;
}

.newyear-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'TBC Contractica', sans-serif;
    letter-spacing: 0.3px;
}

.newyear-shop-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'BPG Nino Mtavruli', sans-serif;
    width: fit-content;
    text-align: center;
}

.newyear-shop-btn:hover {
    background: var(--text-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newyear-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--gray-bg);
}

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

.newyear-banner:hover .newyear-image img {
    transform: scale(1.05);
}

/* Tablet Styles */
@media screen and (min-width: 768px) {
    .newyear-banner {
        flex-direction: row;
        margin: 50px 50px 60px;
        min-height: 300px;
    }
    
    .newyear-content {
        padding: 48px;
        width: 50%;
    }
    
    .newyear-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .newyear-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .newyear-image {
        width: 66%;
        height: auto;
    }
}

/* Desktop Styles */
@media screen and (min-width: 1024px) {
    .newyear-banner {
        margin: 0 0px 50px;
        max-width: 1400px;
    }
    
    .newyear-content {
        padding: 25px;
    }
    
    .newyear-title {
        font-size: 32px;
    }
    
    .newyear-subtitle {
        font-size: 17px;
    }
    
    .newyear-shop-btn {
        padding: 14px 36px;
        font-size: 14px;
    }
}

/* ===== NEW YEAR'S EVE BANNER VIDEO FIX ===== */
.newyear-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Remove img styles for newyear banner */
.newyear-banner .newyear-image img {
    display: none;
}


/* ===== MOBILE HAMBURGER MENU BUTTON ===== */
.mobile-menu-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animation when menu is open */
.mobile-menu-btn.menu-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.menu-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== CATEGORY FILTERS ===== */
.category-filters {
    padding: 0 25px 25px 25px;  /* ⬅️ ორივე მხარეს 25px */
    display: flex;
    gap: 15px;
    flex-wrap: wrap;  /* ⬅️ გადადის ახალ ხაზზე */
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    z-index: 100;
    justify-content: flex-end;
}

.category-filters .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* დესკტოპზე - center */
@media screen and (min-width: 768px) {
    .category-filters {
        padding: 50px 25px 25px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== PRODUCT GRID SECTION - FIX Z-INDEX ===== */
.product-grid-section {
    padding: 0 25px 0px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== DROPDOWN NAVIGATION ===== */
.filter-btn-wrapper {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    z-index: 1;  /* ⬅️ default დაბალი */
}

.filter-btn {
    position: relative;
    flex-shrink: 0;
    padding: 10px 20px;
    color: var(--text-gray);
    background: var(--hover-bg);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    font-family: 'BPG Nino Mtavruli', sans-serif;
}

.filter-btn:hover:not(.active) {
    background: var(--white);
    border-color: var(--text-gray);
}

.filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.filter-btn.has-dropdown::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.filter-btn.mobile-expanded::after {
    transform: rotate(180deg);
}

/* DROPDOWN */
.category-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    border: none;
    min-width: 200px;
    max-width: 250px;
    z-index: 10;  /* ⬅️ wrapper-ზე მაღალი */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    pointer-events: none;
}

/* Mobile - click */
@media screen and (max-width: 767px) {
    .category-dropdown {
        left: 50%;
        transform: translateX(-50%) translateY(-5px);
    }
    
    .filter-btn-wrapper:has(.filter-btn.mobile-expanded) {
        z-index: 9999;  /* ⬅️ wrapper-ს ყველაზე წინ */
    }
    
    .filter-btn.mobile-expanded + .category-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
}

/* Desktop - hover */
@media screen and (min-width: 768px) {
    .filter-btn-wrapper:hover {
        z-index: 9999;  /* ⬅️ hover-ზე wrapper წინ */
    }
    
    .filter-btn-wrapper:hover .category-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition-delay: 0.1s;
    }
    
    .category-dropdown:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.dropdown-items-scroll {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    background: var(--gray-bg);
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:active {
    background: var(--white);
    padding-left: 24px;
}

.mobile-dropdown-overlay {
    display: none;
}

@media screen and (max-width: 767px) {
    .mobile-dropdown-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: 2001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .mobile-dropdown-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* ===== DESKTOP RESPONSIVE ===== */
@media screen and (min-width: 768px) {
    .shop-container {
        max-width: 100%;
    }
    
    .main-header {
        padding: 20px 50px;
        grid-template-columns: 120px auto 1fr auto;
        gap: 24px;
    }
    
    .header-logo img {
        height: 34px;
    }
    
    .hero-banner-slider {
        margin: 50px 50px 50px;
        height: 200px;
    }
    
    .hero-nav {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .hero-nav.prev { left: 24px; }
    .hero-nav.next { right: 24px; }
    
    .category-filters {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
        padding: 50px 25px 25px;
    }
    
    .product-grid-section {
        padding: 0 50px 0px;
    }
    
    .grid-header-controls {
        padding: 0 50px;
        margin-bottom: 32px;
    }
    
    .grid-header-controls h2 {
        font-size: 14px;
    }
    
    #home-page .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px 50px;
    }
    
    .product-item .info {
        padding: 16px 4px 12px;
    }
    
    .product-item .info .title {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 15px;
    }
    
    #product-detail-page > main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 50px;
        align-items: start;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .product-info-container {
        padding: 0;
    }
    
    .product-info-container h1 {
        font-size: 24px;
    }
    
    .slider-btn {
        width: 52px;
        height: 52px;
    }
    
    #checkout-page > main.checkout-section {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
        align-items: flex-start;
        padding: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    #checkout-summary {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .main-footer {
        padding: 50px 25px;
    }
    
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        border-bottom: none;
    }
    
    .footer-nav > * {
        border-top: none;
        border-right: 1px solid var(--border-color);
        padding: 0 24px;
    }
    
    .footer-nav > *:last-child {
        border-right: none;
    }
    
    .scrolling-banner {
        font-size: 12px;
        padding: 12px 0;
    }
    
    .logo-marquee {
        padding: 40px 0;
    }
    
    .logo-marquee-content img {
        height: 24px;
        margin: 0 50px;
    }
}

@media screen and (min-width: 1200px) {
    #home-page .product-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 50px 50px;
    }
    
    .product-grid-section {
        padding: 0 64px 64px;
    }
    
    .main-header {
        padding: 24px 64px;
    }
    
    .hero-banner-slider {
        margin: 56px 64px 56px;
        height: 250px;
    }
}


