:root {
    --primary-color: #2c2c2c;
    --secondary-color: #e8dfd6;
    --accent-color: #8b7355;
}

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

body {
    font-family: 'Arial', sans-serif;
    color: var(--primary-color);
    overflow-x: hidden;
}

/* Header */
.header-top {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #c4c4c4;
}

.logo-container img {
    width: 130px;
}

.search-icon-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

/* Desktop Search */
.desktop-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.desktop-search input {
    border: 2px solid #000000;
    padding: 10px 45px 10px 15px;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    width: 340px;
}

.desktop-search input:focus {
    outline: none;
    border-color: #999;
}

.desktop-search .search-icon {
    justify-content: center;
    position: absolute;
    right: 0px;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 44px;
    z-index: 99;
    font-size: 18px;
    color: #ffffff;
    background: black;
    width: 44px;
}

/* Navigation Menu - Desktop */
.main-navigation {
    background: #fff;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu li a {
    display: block;
    padding: 15px 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.nav-menu li a:hover {
    background: var(--secondary-color);
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    padding: 20px;
}

.mobile-search-overlay.active {
    display: block;
}

.mobile-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-search-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-search-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-search-wrapper {
    position: relative;
}

.mobile-search-input {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.mobile-search-input:focus {
    outline: none;
    border-color: #999;
}

.mobile-search-wrapper .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #666;
    pointer-events: none;
}

/* Offcanvas Menu */
.offcanvas {
    width: 280px !important;
}

.offcanvas-header {
    border-bottom: 1px solid #e0e0e0;
}

.offcanvas-body {
    padding: 0;
}

.offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-menu li {
    border-bottom: 1px solid #e0e0e0;
}

.offcanvas-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background 0.3s;
}

.offcanvas-menu li a:hover {
    background: var(--secondary-color);
}

/* Bottom Navigation - Mobile Only */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 10px 0;
}

.bottom-nav-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bottom-nav-menu li {
    flex: 1;
    text-align: center;
}

.bottom-nav-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom-nav-menu li a i {
    font-size: 22px;
    margin-bottom: 5px;
}

.bottom-nav-menu li a:hover {
    color: var(--accent-color);
}

/* Hero Banner Slider */
.hero-banner {
    background: var(--secondary-color);
    padding: 0;
}

.hero-slider .hero-item {
    position: relative;
    overflow: hidden;
    outline: none;
}

.hero-slider .hero-item img {
    width: 100%;
    display: block;
}

.hero-overlay-btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.hero-overlay-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Slick Slider Custom Styles */
.slick-dots {
    bottom: 20px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: rgb(0, 0, 0);
}

.slick-prev,
.slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px;
    opacity: 0.75;
}

/* Product Grid */
.product-section {
    padding: 50px 0;
    background: #fff;
}

.product-item {
    background: #f8f6f4;
    margin-bottom: 30px;
}

.product-category-top {
    color: #000000;
    text-align: center;
    padding: 15px 5px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-image img {
    width: 100%;
}

.product-footer {
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.product-link {
    color: #666;
    text-decoration: underline;
    font-size: 14px;
}

.quick-view-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.quick-view-button:hover {
    background: #000;
}

/* Accessories Section */
.accessories-section {
    background: var(--secondary-color);
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 500;
}

.accessories-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.accessories-cta {
    border: solid white 2px;
    padding: 30px 30px;
    text-align: center;
}

.accessories-cta h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.accessories-cta p {
    color: #000000;
    margin-bottom: 15px;
    font-size: 18px;
}

.shop-accessories-btn {
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    border: none;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s;
}

.shop-accessories-btn:hover {
    background: #000;
    color: white;
}

/* Footer */
.footer {
    background: white;
    color: black;
    padding: 25px 0 15px;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
    margin-bottom: 15px;
    padding: 0;
    flex-wrap: wrap;
}

.footer-menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-social {
    text-align: center;
    margin-top: 15px;
}

.footer-social span {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-right: 15px;
}

.footer-social a {
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

@media (max-width: 700px) {
    body {
        padding-bottom: 70px;
    }

    ul.slick-dots {
        position: initial !important;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 0 !important;
    }

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

    .main-navigation {
        display: none;
    }

    .bottom-nav {
        display: block;
    }

    .accessories-layout {
        grid-template-columns: 1fr;
    }

    .accessories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .product-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .product-left {
        width: 100%;
    }

    .quick-view-button {
        width: 100%;
    }

    .col-sm-6.col-md-4.col-lg-3.col-xs-6 {
        width: 50%;
    }

    .header-top {
        padding: 10px 0;
    }

    .logo-container img {
        width: 140px;
    }

    .product-price {
        font-size: 18px;
    }

    .product-category-top {
        font-size: 14px;
    }

    .section-title {
        font-size: 16px;
    }

    .footer-menu a {
        font-size: 14px;
    }
}

/* Loader Overlay Styles */
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.circular-loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #444;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 1.2rem;
    color: #444;
    font-weight: 500;
}

ul.nav-menu li .active {
    background: #e8dfd6;
}

section.product-page-banner {
    background: #e8dfd6;
    padding-top: 20px;
    padding-bottom: 20px;
}

section.hero-banner-sec {
    background: #e8dfd6;
    padding-top: 20px;
    padding-bottom: 20px;
}