/* ── Hero Section ───────────────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 92vh;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Carousel controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 16px;
    opacity: 1;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(255,255,255,0.38);
}

.carousel-control-prev-icon,
.carousel-control-next-icon { width: 14px; height: 14px; }

/* Carousel indicators */
.hero-section .carousel-indicators { margin-bottom: 18px; }

.hero-section .carousel-indicators [data-bs-slide-to] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.45);
    margin: 0 4px;
    transition: background 0.2s, transform 0.2s;
}

.hero-section .carousel-indicators .active {
    background: #fff;
    transform: scale(1.4);
}

/* ── Navbar ─────────────────────────────────────────────────────── */

.soru-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.soru-nav.scrolled {
    background: var(--base-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


.soru-nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    /* max-width: 1320px; */
    margin: 0 auto;
    padding:11px 0;
    padding-left: 6px;
    padding-right: 10px;
}

/* Hamburger */
.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.25s;
    justify-self: start;
}

.menu-toggle:hover           { color: rgba(255,255,255,0.7); }
.soru-nav.scrolled .menu-toggle { color: var(--text-color); }

/* Logo */
.soru-nav-logo            { justify-self: center; }
.soru-nav-logo a          { display: block; text-decoration: none; }
.brand-logo               { display: block; max-height: 50px; }
.brand-logo-light         { display: block; }
.brand-logo-dark          { display: none; }
.soru-nav.scrolled .brand-logo-light { display: none; }
.soru-nav.scrolled .brand-logo-dark  { display: block; }

/* Icons */
.soru-nav-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
}

.soru-nav-icons a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    line-height: 1;
    transition: color 0.25s, transform 0.2s;
}

.soru-nav-icons a:hover              { color: rgba(255,255,255,0.7); transform: scale(1.1); }
.soru-nav.scrolled .soru-nav-icons a { color: var(--text-color); }
.soru-nav.scrolled .soru-nav-icons a:hover { color: var(--tertory-color); }

/* ── Sidebar ─────────────────────────────────────────────────────── */
.sidebar-menu {
    position: fixed;
    left: -320px;
    top: 0;
    width: 300px;
    height: 100%;
    background: var(--base-color);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}

.sidebar-menu.active { left: 0; }

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active { opacity: 1; visibility: visible; }

.sidebar-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--secondary-color);
    display: flex;
    justify-content: flex-end;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.sidebar-close:hover { color: var(--tertory-color); }

.sidebar-content { padding: 6px 0 40px; }

.sidebar-nav { list-style: none; padding: 0; margin: 0; }

.sidebar-nav > li { border-bottom: 1px solid #f0ebe4; }

.sidebar-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.sidebar-nav > li > a:hover {
    color: var(--tertory-color);
    background: rgba(176,82,21,0.04);
    padding-left: 28px;
}

.sidebar-dropdown .dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s;
}

.sidebar-dropdown.active .dropdown-toggle i { transform: rotate(90deg); }

.sidebar-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.3s ease;
}

.sidebar-dropdown.active .sidebar-submenu { max-height: 400px; }

.sidebar-submenu li a {
    display: block;
    padding: 11px 24px 11px 40px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    transition: color 0.2s, padding-left 0.2s;
}

.sidebar-submenu li a:hover {
    color: var(--tertory-color);
    padding-left: 46px;
}

/* ── Bottom Mobile Navigation ────────────────────────────────────── */
.bottom-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--base-color);
    border-top: 1px solid var(--secondary-color);
    box-shadow: 0 -3px 14px rgba(0,0,0,0.07);
    z-index: 1500;
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav-item {
    text-align: center;
    text-decoration: none;
    color: #bbb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 4px 7px;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
    min-width: 0;
    overflow: hidden;
}

.bottom-nav-item i {
    font-size: 19px;
    line-height: 1;
    display: block;
}

.bottom-nav-item span {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.bottom-nav-item.active { color: var(--tertory-color); }
.bottom-nav-item:hover  { color: var(--text-color); }

.wishlist-mob-icon, .account-mob-icon, .login-mob-icon{
    margin-top: 4px;
}
.search-mob-icon{
    margin-top:6px;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {

    .hero-slide-img { height: 72vh; }

    .soru-nav-inner {
        grid-template-columns: auto 1fr;
        padding: 10px 13px;
        width: 100%;
    }

    .menu-toggle { display: none !important; }

    .soru-nav-logo { justify-self: start; }
    .brand-logo    { max-height: 34px; }

    .soru-nav-icons {
        justify-self: end;
        gap: 14px;
    }

    /* Hide search and account icons on mobile — keep wishlist + cart */
    .soru-nav-icons a:nth-child(1),
    .soru-nav-icons a:nth-child(2) { display: none !important; }

    /* Bottom nav */
    .bottom-mobile-nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        height: 58px;
    }

    body {
        padding-bottom: 58px;
        overflow-x: hidden;
    }

    html { overflow-x: hidden; }

    main,
    footer,
    section,
    .container,
    .container-custom {
        overflow-x: hidden;
        max-width: 100%;
    }
    .wishlist-mob-icon{
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .hero-slide-img { height: 60vh; }
}