/* ══ DONTSTOP CUSTOM CSS ══ */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Selection color */
::selection { background: #C8A96E; color: #0D0D0D; }
::-moz-selection { background: #C8A96E; color: #0D0D0D; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #C8A96E; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #E8D5A3; }

/* Smooth transitions for all interactive elements */
a, button { transition: all 0.3s ease; }

/* ══ HEADER BASE ══ */
.elementor-sticky--active .e-con,
.elementor-sticky--active {
    background-color: rgba(13, 13, 13, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    transition: all 0.4s ease !important;
}

.ds-header-wrap {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* ══ NAV LINKS HOVER UNDERLINE ══ */
.ds-nav .elementor-nav-menu > li > a {
    position: relative;
    padding-bottom: 4px;
}
.ds-nav .elementor-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C8A96E;
    transition: width 0.3s ease;
}
.ds-nav .elementor-nav-menu > li > a:hover::after,
.ds-nav .elementor-nav-menu > li.current-menu-item > a::after {
    width: 100%;
}
.ds-nav .elementor-nav-menu > li > a:hover {
    color: #C8A96E !important;
    transition: color 0.3s ease;
}

/* ══ LOGO HOVER ══ */
.ds-logo img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.ds-logo:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* ══ ICONS HOVER ══ */
.ds-search-btn i,
.ds-cart-btn i {
    transition: color 0.3s ease, transform 0.3s ease;
}
.ds-search-btn:hover i,
.ds-cart-btn:hover i {
    color: #C8A96E !important;
    transform: scale(1.15);
}

/* ══ MOBILE HAMBURGER ══ */
.elementor-nav-menu--toggle .elementor-nav-menu--main {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ══ MOBILE MENU ══ */
@media (max-width: 768px) {
    .ds-header-wrap {
        min-height: 65px !important;
    }
    .ds-logo img {
        max-width: 90px !important;
    }
    .ds-nav .elementor-nav-menu--dropdown {
        background: #0D0D0D;
        padding: 15px 25px;
    }
    .ds-nav .elementor-nav-menu--dropdown a {
        color: #FFFFFF;
        padding: 12px 25px;
    }
    .ds-nav .elementor-nav-menu--dropdown a:hover {
        color: #C8A96E;
    }
}

/* ══ CART BADGE ══ */
.ds-cart-btn .elementor-button-icon .e-font-icon-svg {
    position: relative;
}