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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
}

footer {
    background-color: #f5f5f0;
    padding: 80px 0 30px;
}

.footer-logo {
    max-width: 280px;
    margin-bottom: 60px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #3d6f6d;
    margin-bottom: 25px;
}

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

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

.footer-column ul li a {
    color: #3d6f6d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2d5f5d;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #d1d5db;
    padding-top: 30px;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    align-items: center;
}

.footer-links a {
    color: #3d6f6d;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    /* white-space: nowrap; */
}

.footer-links a:hover {
    color: #2d5f5d;
}

.footer-links .separator {
    color: #9ca3af;
    margin: 0 5px;
}

.privacy-link {
    color: #2d5f5d !important;
    font-weight: 600;
}

.footer-text {
    color: #1a1a1a;
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-text a {
    color: #3d6f6d;
    text-decoration: underline;
}

.footer-text a:hover {
    color: #2d5f5d;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d6f6d;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #2d5f5d;
    transform: translateY(-3px);
}

/* Location Selector */
.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3d6f6d;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.location-selector:hover {
    color: #2d5f5d;
}

.location-selector i {
    font-size: 1.1rem;
}

.icon-btn {
    background: transparent;
    outline: none;
    border: none;
}

@media(max-width:768px) {
    h1 {
        font-size: 25px !important;
    }

    .container {
        max-width: 90% !important;
    }

    .footer-logo img {
        width: 120px !important;
        height: 36px !important;
        /* margin-bottom: 20px !important; */
    }

    .footer-logo {
        margin-bottom: 20px !important;
    }

    footer {
        padding: 30px 0 !important;
    }

    .hero-content {
        padding-top: 5% !important;
    }
}




/* Header */
.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.85rem;
}

.store-switcher {
    position: relative;
    display: inline-block;
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 6px 14px;
    color: inherit;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
}
.store-btn:hover {
    background: rgba(255,255,255,.2);
}
#storeChevron {
    transition: transform .25s;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.store-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    min-width: 220px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
}
.store-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
#storeChevron.rotated {
    transform: rotate(180deg);
}
.store-dropdown-header {
    padding: 14px 18px 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9ca3af;
    border-bottom: 1px solid #f0f0f0;
}
.store-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    cursor: pointer;
    transition: background .2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.store-option:hover {
    background: #f8f8f8;
}
.store-option.active {
    background: #f0faf4;
}
.store-option .flag {
    font-size: 1.3rem;
    line-height: 1;
}
.store-option .info { flex: 1; }
.store-option .info .name {
    font-size: .88rem;
    font-weight: 600;
    color: #1a1a2e;
    display: block;
}
.store-option .info .currency {
    font-size: .75rem;
    color: #9ca3af;
}
.store-option .check {
    color: #2d6a4f;
    font-size: .9rem;
    opacity: 0;
}
.store-option.active .check {
    opacity: 1;
}
/* Loading shimmer */
.store-loading {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.store-sk {
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.top-bar .container {
    display: flex;
    justify-content: end;
    align-items: center;
}

.top-bar a {
    color: #3d6f6d;
    text-decoration: none;
    margin-left: 15px;
}

.top-bar a:hover {
    color: #2d5f5d;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    color: #3d6f6d;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #2d5f5d;
}

.navbar-icons a {
    color: #3d6f6d;
    font-size: 1.2rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.navbar-icons a:hover {
    color: #2d5f5d;
}
/* ── Navbar layout ───────────────────────────────────────── */
.navbar {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.navbar-nav-desktop {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.navbar-right-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-mobile-right {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (max-width: 991px) {
    .navbar-nav-desktop,
    .navbar-right-desktop { display: none; }
    .navbar-mobile-right  { display: flex; }
}

/* ── Hamburger toggler ───────────────────────────────────── */
.nav-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
}

.nav-toggler span {
    display: block;
    height: 2px;
    background: #2d5f5d;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggler.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggler.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggler.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Offcanvas ───────────────────────────────────────────── */
.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.offcanvas-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

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

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.offcanvas-close {
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    color: #333;
    transition: background 0.2s;
}

.offcanvas-close:hover {
    background: #e0e0e0;
}

.offcanvas-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offcanvas-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

.offcanvas-link i {
    width: 20px;
    text-align: center;
    color: #2d5f5d;
    font-size: 16px;
}

.offcanvas-link:hover {
    background: #f0faf9;
    color: #2d5f5d;
}

.offcanvas-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 0;
}

.offcanvas-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f0faf9;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #2d5f5d;
    margin-bottom: 8px;
}

.offcanvas-user i {
    font-size: 20px;
}

.offcanvas-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid #2d5f5d;
    color: #2d5f5d;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.offcanvas-btn-outline:hover {
    background: #f0faf9;
}

.offcanvas-btn-fill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    background: #2d5f5d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
    margin-top: 4px;
}

.offcanvas-btn-fill:hover {
    background: #1f4948;
    color: #fff;
}
/* Breadcrumb */
.breadcrumb-section {
    padding: 20px 0;
    background-color: #fafafa;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #3d6f6d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Top bar */
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
}

/* Lang dropdown */
.lang-dropdown-wrapper {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e8f0ef;
    border: none;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #2d5f5d;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-dropdown-btn:hover {
    background: #d4e8e6;
}

.lang-chevron {
    font-size: 9px;
    transition: transform 0.2s;
}

.lang-chevron.rotated {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 180px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(.4,0,.2,1);
    z-index: 1001;
}

.lang-dropdown-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.15s;
    text-align: left;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option.active {
    background: #f0faf4;
    color: #2d5f5d;
    font-weight: 600;
}

.lang-option .fa-check {
    margin-left: auto;
    color: #2d5f5d;
    font-size: 11px;
}

/* Auth dropdown */
.auth-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border: none;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #2d5f5d;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.auth-dropdown-btn:hover {
    background: #e8f0ef;
}

.auth-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    min-width: 240px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(.4,0,.2,1);
    z-index: 1001;
}

.auth-dropdown-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.auth-dropdown-header {
    padding: 14px 18px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9ca3af;
    border-bottom: 1px solid #f0f0f0;
}

.auth-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    text-decoration: none;
    color: #1a1a1a;
    transition: background 0.15s;
    border-bottom: 1px solid #f9f9f9;
}

.auth-dropdown-item:hover {
    background: #f5faf9;
    color: #2d5f5d;
}

.auth-dropdown-item i {
    font-size: 16px;
    color: #2d5f5d;
    width: 20px;
    text-align: center;
}

.auth-dropdown-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.auth-dropdown-item span {
    font-size: 11px;
    color: #9ca3af;
}

/* Nav item position relative auth dropdown üçün */
.navbar-nav .nav-item {
    position: relative;
}

/* Icon nav button */
.icon-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.icon-nav-btn:hover {
    opacity: 1;
}

/* Full page search modal */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-modal.open {
    opacity: 1;
    pointer-events: all;
}

.search-modal-inner {
    width: 100%;
    max-width: 700px;
    padding: 80px 24px 40px;
}

.search-modal-close {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s;
}

.search-modal-close:hover {
    background: #e0e0e0;
}

.search-modal-label {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.search-modal-input-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 2px solid #2d5f5d;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.search-modal-input-wrapper i {
    font-size: 20px;
    color: #2d5f5d;
}

.search-modal-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.search-modal-input-wrapper input::placeholder {
    color: #d1d5db;
}

.search-modal-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    text-decoration: none;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.15s;
}

.search-result-item:hover {
    color: #2d5f5d;
    padding-left: 6px;
}

.search-result-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.search-result-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #2d5f5d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.search-result-name {
    display: block;
    font-size: 15px;
    font-weight: 500;
}

.search-result-price {
    display: block;
    font-size: 13px;
    color: #2d5f5d;
    font-weight: 600;
    margin-top: 2px;
}

.search-no-result {
    padding: 20px 0;
    color: #9ca3af;
    font-size: 14px;
}

.search-see-all {
    padding: 16px 0 0;
}

.search-see-all a {
    color: #2d5f5d;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.search-see-all a:hover {
    text-decoration: underline;
}

/* Nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .auth-dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 8px;
        opacity: 1;
        transform: none;
        pointer-events: all;
        margin-top: 8px;
    }

    .search-modal-input-wrapper input {
        font-size: 20px;
    }

    .search-modal-inner {
        padding: 60px 16px 30px;
    }
}

.address-card {
    border: 1.5px solid var(--hl-border);
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color .2s;
}
.address-card.default {
    border-color: var(--hl-green);
    background: #f0faf4;
}
.btn-hl-outline {
    background: transparent;
    color: var(--hl-green);
    border: 1.5px solid var(--hl-green);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
}
.btn-hl-outline:hover { background: var(--hl-green); color: #fff; }