/* General Styles */

:root {
    --primary-color: #ffc107;
    --secondary-color: #212529;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --color: #ffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
    line-height: 1.6;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}


/* login model  */

.password-toggle {
    position: absolute;
    top: 45%;
    left: 87%;
    transform: translateY(-50%);
    cursor: pointer;
    color: gray;
}

.mySwiper {
    height: 100vh;
    /* mobile */
    /* min-height: 280px;  safety */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
}

.swiper-button-next::after {
    content: '››';
}

.swiper-button-prev::after {
    content: '‹‹';
}


/* COMMON IMAGE STYLE */

.login-img,
.middle-img {
    border-radius: 16px;
    overflow: hidden;
}

.login-img img,
.middle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* LEFT BIG IMAGE */

.login-img {
    height: 360px;
}


/* RIGHT 2 IMAGES */

.middle-img {
    height: 170px;
}

input::placeholder {
    font-size: 14px;
}

@media (max-width: 991px) {
    .login-img {
        height: 300px;
    }

    .middle-img {
        height: 140px;
    }
}


/* MOBILE FIX */

@media (max-width: 576px) {
    .login-img {
        height: 220px;
    }

    .middle-img {
        height: 105px;
    }
}

.checked h6,
label {
    font-size: 12px;
}


/* header  */

.logo-text {
    font-size: 26px;
}

.logo-ext {
    font-weight: 800;
    color: #111;
}

.logo-buy {
    font-weight: 500;
    color: #f4b400;
}


/* Logo Image */

.navbar-logo {
    display: inline-block;
    text-decoration: none;
}

.logo-img-mobile {
    height: 32px;
}

.store-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}


/* promobanner */

.shop-btn {
    background: #ff6a5b;
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
}

.promo-image {
    position: absolute;
    right: 10px;
    bottom: 0;
}

.promo-image img {
    max-height: 260px;
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: 55%;
    background: #fff;
    color: #ff6a5b;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 13px;
    text-align: center;
    padding-top: 18px;
    font-weight: 600;
}

.discount-badge span {
    font-size: 22px;
    font-weight: 800;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
}

.slider-arrow.left {
    left: 10px;
}

.slider-arrow.right {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 30px;
}

.slider-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin-right: 6px;
}

.slider-dots span.active {
    background: #fff;
}


/* Store Dropdown Styles */

.store-dropdown .store-selector-btn {
    background: transparent;
    border: none;
}

.store-dropdown .store-flag-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
}

.store-dropdown .store-flag-main {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.store-dropdown .store-globe {
    width: 22px;
    height: 22px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 50%;
}

.store-dropdown .store-chevron {
    transition: transform 0.2s;
}

.store-dropdown.show .store-chevron {
    transform: rotate(180deg);
}

.store-dropdown-menu {
    border: none !important;
    border-radius: 16px !important;
    padding: 10px !important;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.store-dropdown-menu::before {
    content: '';
    display: block;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.store-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 15px !important;
    border-radius: 8px;
}

.store-dropdown-item:hover {
    background-color: #f5f5f5 !important;
}

.store-dropdown-item .store-flag-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.search-pill {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    height: 44px;
}

.search-pill input {
    border: none;
    padding-left: 18px;
    font-size: 14px;
}

.search-pill input:focus {
    box-shadow: none;
}

.search-icon-btn {
    background: transparent;
    border: none;
    color: #777;
}

.search-btn {
    border-radius: 999px;
    padding: 0 18px;
}


/* Mobile Store Bar */

.mobile-store-bar {
    background-color: #F7F2E1;
    color: #000;
}

.mobile-store-bar .store-flag {
    width: 24px;
    height: 18px;
}


/* Main Navigation */

.main-nav .nav-link {
    padding: 8px 12px;
    font-size: 0.875rem;
}

.main-nav .nav-item.dropdown .nav-link {
    padding-right: 6px;
}

.main-nav .nav-item.dropdown .nav-link i {
    font-size: 0.65rem;
}


/* Category Dropdown */

.category-dropdown {
    width: 280px;
    padding: 0;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    overflow: hidden;
}

.category-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.category-dropdown-body {
    padding: 8px 0;
}


/* Arrow */

.dropdown-arrow {
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


/* Dropdown menu items */

.category-dropdown .dropdown-item {
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #333;
}

.category-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #333;
}


/* Mobile Bottom Navigation */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    z-index: 1100;
    display: none;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    padding: 0 6px;
}

.mobile-bottom-nav .mobile-nav-item {
    flex: 1;
    text-align: center;
    padding: 8px 0 10px;
    text-decoration: none;
    color: #8b8b8b;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    font-weight: 500;
}

.mobile-bottom-nav .mobile-nav-item i {
    font-size: 1.2rem;
}

.mobile-bottom-nav .mobile-nav-item.active {
    color: #d2a100;
}

.mobile-bottom-nav .mobile-nav-item.active i {
    color: #d2a100;
}

.mobile-bottom-nav .badge {
    font-size: 0.65rem;
    padding: 0.3em 0.45em;
}

.mobile-bottom-nav .mobile-nav-item:hover,
.mobile-bottom-nav .mobile-nav-item:focus {
    color: var(--secondary-color);
}


/* Top Header - Removed */


/* Main Header */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.mobile-secondary {
    background-color: #f5eddc;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    min-height: 46px;
    display: flex;
    align-items: center;
}

.mobile-secondary .location-mobile {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.mobile-secondary .location-mobile i {
    font-size: 1rem;
}

.mobile-secondary .btn-link {
    color: var(--text-color);
    font-size: 1.15rem;
}

.mobile-secondary .badge {
    font-size: 0.65rem;
    padding: 0.35em 0.5em;
    border-radius: 999px;
}


/* Mobile Offcanvas Menu */

#mobileMenuOffcanvas {
    max-width: 300px;
}

#mobileMenuOffcanvas .offcanvas-header {
    padding: 15px 20px;
    background-color: #fff;
}

#mobileMenuOffcanvas .offcanvas-title {
    font-size: 1.4rem;
}

#mobileMenuOffcanvas .offcanvas-title .text-warning {
    color: #d4a017 !important;
}

.offcanvas-user-section .user-avatar {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.offcanvas-store,
.offcanvas-language {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.offcanvas-store:hover,
.offcanvas-language:hover {
    background-color: #f8f9fa;
}

.offcanvas-menu li a {
    transition: background-color 0.2s ease;
}

.offcanvas-menu li a:hover {
    background-color: #f8f9fa;
}

.offcanvas-categories ul li a {
    display: block;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.offcanvas-categories ul li a:hover {
    color: var(--primary-color) !important;
}

.offcanvas-quick-links ul li a:hover {
    color: var(--primary-color) !important;
}

.header-top {
    display: flex;
    align-items: center;
}

.logo h2 {
    font-weight: 700;
    font-size: 1.6rem;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.logo h2 .text-dark {
    font-weight: 800;
}

.logo h2 .text-warning {
    font-weight: 400;
    color: #d4a017 !important;
}


/* Location Selector */

.location-selector button {
    padding: 8px 15px;
    font-size: 0.9rem;
    white-space: nowrap;
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
}

.location-selector button:hover {
    background-color: #e9ecef;
}


/* Search Bar */

.search-bar {
    width: 100%;
}

.search-bar .form-control {
    border: 1px solid #e0e0e0;
    padding: 10px 18px;
    font-size: 0.95rem;
    border-radius: 8px 0 0 8px;
    background-color: #fff;
    height: 46px;
    border-right: none;
}

.search-bar .form-control:focus {
    box-shadow: none;
    border-color: #ccc;
}

.search-pill .search-icon-btn {
    border: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
    padding: 10px 12px;
    background-color: #fff;
    color: #666;
    height: 46px;
}

.search-pill .search-icon-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

.search-pill .search-btn {
    border: none;
    padding: 10px 16px;
    border-radius: 0 8px 8px 0;
    background-color: #333;
    color: #fff;
    height: 46px;
}

.search-pill .search-btn:hover {
    background-color: #222;
}


/* Store Selector */

.store-selector .store-flag {
    width: 32px;
    height: 22px;
    border-radius: 4px;
    object-fit: cover;
}

.store-selector .store-name {
    font-weight: 500;
    color: var(--text-color);
}

.store-selector .fa-chevron-down {
    font-size: 0.7rem;
    color: #666;
}


/* Language Selector */

.language-selector button {
    font-weight: 500;
    color: var(--text-color);
}

.language-selector .fa-chevron-down {
    font-size: 0.7rem;
    color: #666;
}


/* Header Actions */

.header-action {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.header-action:hover {
    color: var(--primary-color);
}

.header-action i {
    font-size: 1.1rem;
}

.header-action .text-warning {
    color: #d4a017 !important;
}


/* Mobile Store Flag */

.store-flag-sm {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
}


/* Header Icons */

.header-icons {
    gap: 25px !important;
}

.header-icons a {
    color: var(--text-color);
}

.cart-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background-color: #fff;
    position: relative;
}

.cart-bubble i {
    font-size: 1.1rem;
}

.icon-link {
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.icon-link:hover {
    color: var(--primary-color);
}

.icon-link i {
    font-size: 1.2rem;
}

.icon-link .badge {
    font-size: 0.65rem;
    padding: 0.25em 0.5em;
}


/* Language Selector - Header */

.language-selector .dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* Navigation */

.main-nav {
    border-bottom: 1px solid var(--border-color);
    background-color: #fff;
}

.main-nav .nav {
    gap: 0;
}

.main-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.main-nav .nav-link:hover {
    color: var(--primary-color);
}

.main-nav .dropdown-toggle::after {
    display: none;
}

.hero-banner {
    height: 100vh;
    overflow: hidden;
    object-fit: cover;
}

.swiper {
    border-radius: 10px;
    width: 100%;
    object-fit: cover !important;
}

.hero-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
}

.banner-bg {
    background: linear-gradient(135deg, #8b7fc7 0%, #6c5ba7 50%, #5a4a8f 100%);
    min-height: 350px;
    padding: 40px 0;
}

.banner-bg-2 {
    background: linear-gradient(135deg, #2d5a47 0%, #3d7a5f 50%, #4a9070 100%);
}

.banner-bg-3 {
    background: linear-gradient(135deg, #d4a017 0%, #c49000 50%, #a37900 100%);
}

.min-vh-50 {
    min-height: 280px;
}

.banner-left-content {
    position: relative;
}

.price-cart .badge {
    background-color: #f0e4c5;
    color: rgb(250, 97, 97);
}

.save-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    transform: rotate(-15deg);
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 4px;
    z-index: 10;
}

.model-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    border: 8px solid rgba(255, 255, 255, 0.3);
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.website-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.banner-center-content h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.banner-center-content h2 {
    font-size: 2.5rem;
    letter-spacing: 8px;
}

.offer-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.3;
}

.banner-right-content .shopping-bags img {
    max-width: 180px;
    height: auto;
}

.seller-card {
    padding: 15px;
}


/* New Seller Card Styles - Rectangular */

.seller-card-new {
    text-align: center;
}

.seller-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    background-color: #e8e4dc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.seller-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-card-name {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}


/* home-decora Card */

.seller-card-image.home-decora-card {
    background-color: #f5f0e6;
}

.home-decora-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #8b6914;
    letter-spacing: 1px;
}

.home-decora-text i {
    margin-right: 5px;
}


/* Amy Bernard Card */

.seller-card-image.amy-bernard-card {
    background-color: #d4e8d7;
    position: relative;
    padding: 20px;
}

.amy-circles {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.amy-circles .circle-1 {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #4a7c59;
    margin-right: -8px;
}

.amy-circles .circle-2 {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #8fbc8f;
}

.amy-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-top: 20px;
}

.amy-text small {
    font-size: 0.65rem;
    letter-spacing: 1px;
    font-weight: 500;
    color: #666;
}


/* Amatista Card */

.seller-card-image.amatista-card {
    background-color: #f0e6e8;
    padding: 20px;
}

.amatista-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a5a5 0%, #c9a0a0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.amatista-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #8b6b6b;
    letter-spacing: 1px;
}


/* Brand Space Card */

.seller-card-image.brand-space-card {
    background-color: #e8e4e0;
    padding: 20px;
}

.brand-space-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

.seller-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f8f9fa;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seller-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-logo.home-decora {
    background-color: #f5f0e6;
    color: #8b6914;
    font-size: 0.7rem;
}

.seller-name {
    color: var(--text-color);
    font-weight: 500;
}


/* Center Promo Card - Online Shopping */

.promo-card-center {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    height: 93%;
    margin-top: 35px;
}

.promo-card-inner {
    padding: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}


/* Top Header Row */

.promo-card-center .promo-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
}


/* Logo */

.promo-card-center .promo-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c44545;
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 1.1;
}

.promo-card-center .promo-logo i {
    font-size: 1.1rem;
}


/* Social Icons at Top - removed, now at bottom */

.promo-card-center .promo-social-top {
    display: none;
}


/* Social Icons at Bottom - aligned with shop button */

.promo-card-center .promo-social-bottom {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.promo-card-center .promo-social-bottom a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.7rem;
    text-decoration: none;
    transition: all 0.3s;
}

.promo-card-center .promo-social-bottom a:hover {
    background-color: #333;
    color: #fff;
}


/* Discount Circle */

.promo-card-center .discount-circle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 65px;
    height: 65px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

.promo-card-center .discount-circle .discount-label {
    font-size: 0.5rem;
    color: #c44545;
    font-weight: 500;
    text-transform: capitalize;
}

.promo-card-center .discount-circle .discount-value {
    color: #c44545;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}


/* URL at Top Right */

.promo-card-center .promo-url-top {
    font-size: 0.55rem;
    color: #666;
    margin-left: 10px;
}


/* Product Image - now used as background */

.promo-card-center .promo-image-wrapper {
    display: none;
}

.promo-card-center .plus-icon {
    display: none;
}

.promo-card-center .promo-product-img {
    display: none;
}


/* Navigation Buttons */

.promo-card-center .promo-nav-left {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.promo-card-center .promo-nav-btn {
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.promo-card-center .promo-nav-btn:hover {
    color: rgba(0, 0, 0, 0.6);
}


/* Content Bottom */

.promo-content-bottom {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 5;
}

.promo-title-main {
    font-size: 2rem;
    font-weight: 400;
    color: #333;
    line-height: 1.05;
    margin-bottom: 10px;
}

.promo-title-main em {
    font-style: italic;
    font-weight: 400;
}

.promo-desc-small {
    color: #555;
    font-size: 0.7rem;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 200px;
}

.promo-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-shop-now-coral {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 10px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-shop-now-coral:hover {
    background-color: #333;
    color: #fff;
}


/* Newsletter Updated */

.newsletter-spacer {
    background-color: #fff;
    height: 60px;
}

.newsletter-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -8%;
    /* margin-bottom: -60px; */
}

.newsletter-box {
    background: #d4a017;
    border-radius: 16px;
    padding: 40px 50px;
    margin: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-title {
    font-size: 40px;
    text-align: center;
    /* line-height: 1; */
    /* letter-spacing: 0.5px; */
    margin: 0;
}

.newsletter-form {
    max-width: 380px;
    margin-left: auto;
}

.newsletter-form .input-group {
    background-color: #fff;
    border-radius: 50px;
    overflow: hidden;
    padding: 4px;
    margin-bottom: 12px;
}

.newsletter-form .input-group-text {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #999;
}

.newsletter-form .form-control {
    border: none;
    padding: 10px 15px 10px 0;
    font-size: 0.9rem;
    background: transparent;
}

.newsletter-form .form-control::placeholder {
    color: #aaa;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn-light {
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 0.9rem;
    background-color: #fff;
    border: none;
    font-weight: 500;
}

.newsletter-form .btn-light:hover {
    background-color: #f0f0f0;
}


/* Footer Updated */

.footer {
    /* background-color: #f8f3e8; */
    background-color: #F7F2E1;
    position: relative;
    padding-top: 0;
}

.footer-description {
    font-size: 16px;
    font-weight: 500;
}

.footer-content {
    padding-top: 100px;
}

.footer-logo {
    font-size: 1.8rem;
}

.footer-logo .text-warning {
    color: #d4a017 !important;
}

.social-icon-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon-footer:hover {
    background-color: var(--secondary-color);
    color: var(--color) !important;
}

.social-icon-footer i:hover {
    color: var(--color) !important;
}

.footer-heading {
    color: var(--text-color);
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.app-badge {
    max-width: 130px;
    height: auto;
    border-radius: 8px;
}


/* Category Circles */

.category-section {
    background-color: #fff;
}

.category-carousel {
    overflow: hidden;
}

.category-track {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    justify-items: center;
}

.category-item {
    text-align: center;
    flex-shrink: 0;
}

.category-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 3px solid #d4a017;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.category-circle:hover {
    transform: scale(1.05);
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-color);
}


/* Promo Banner */

.promo-banner {
    padding: 30px 0;
}

.promo-content {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.promo-content img {
    display: block;
}


/* Dropdown Menu */

.main-nav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-nav .dropdown-item {
    padding: 12px 20px;
    transition: background-color 0.3s;
}

.main-nav .dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}


/* Carousel Styles */

.carousel-container {
    position: relative;
    padding: 0 50px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.product-carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.carousel-track .product-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-color);
    font-size: 1rem;
    z-index: 20;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background-color: #fff;
    color: var(--text-color);
    border-color: var(--border-color);
}


/* Side Carousel Buttons */

.carousel-btn-side {
    position: absolute;
    top: 37%;
    transform: translateY(-50%);
    z-index: 20;
    width: 45px;
    height: 45px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn-side.carousel-prev {
    left: 0;
}

.carousel-btn-side.carousel-next {
    right: 0;
}


/* Enhanced Product Card */

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
}

.view-more {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-more:hover {
    color: var(--primary-color);
}


/* Product Card */

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 200px;
    min-height: 200px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
}

.icon-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 5px;
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-desc {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

.price {
    color: var(--secondary-color);
    font-size: 1.1rem;
}


/* Category Cards */

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s;
    padding: 15px;
}

.category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.category-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.card-label {
    text-align: center;
    padding: 12px 0 0;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    bottom: auto;
    left: auto;
    background: transparent;
}


/* Savings Section */

.savings-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.savings-section .section-title {
    color: #fff;
}

.savings-section .view-more {
    color: #fff;
    text-decoration: underline;
}


/* Newsletter Section */

.newsletter-section {
    background-color: #fff;
}


/* Footer */

.footer {
    /* background-color: #f8f9fa; */
    background-color: #F7F2E1;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}


/* shipping card, add card, */

:root {
    --b: #e9ecef;
    --muted: #6c757d;
    --gold: #d4a62a;
}

.ext-shop .card-soft {
    border: 1px solid var(--b);
}

.ext-shop .title-row {
    gap: 0.75rem;
}

.ext-shop .check-green:checked {
    background-color: #198754;
    border-color: #198754;
}

.ext-shop .mini-check {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #cfd4da;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #198754;
    background: #fff;
}

.ext-shop .address-box {
    border: 1px solid #ffe08a;
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 13px;
}

.ext-shop .delivery-item {
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
}

.ext-shop .delivery-item small {
    color: var(--muted);
}

.ext-shop .summary-pill {
    background: #212529;
    padding: 0.6rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.ext-shop .btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.6rem 1rem;
}

.ext-shop .chev {
    border: 0;
    background: transparent;
    color: var(--muted);
}

.ext-shop .title-row {
    gap: .75rem;
}

.ext-shop .icons-row {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.price-cart del {
    color: gray;
}


/* add shipping modal */

.ext-model .form-label {
    font-weight: 600;
}

.ext-model .phone-group .input-group-text {
    background: #fff;
}

.ext-model .map-box {
    overflow: hidden;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ext-model .shipping-heading h6 {
    font-size: 14px !important;
}

.ext-model .form-control,
.ext-model .form-select {
    min-height: 48px !important;
    padding-top: .65rem;
    padding-bottom: .65rem;
}

.ext-model .input-group-text {
    min-height: 48px;
    padding-top: .65rem;
    padding-bottom: .65rem;
}

.ext-model input::placeholder,
.ext-model select {
    font-size: 16px !important;
}


/* payment method */

.exty-model .card-strip {
    background: #f3f3f3;
}

.exty-model .form-control {
    height: 44px;
}

.exty-model .btn-save {
    background: linear-gradient(180deg, #2b2b2b, #151515);
    border: 0;
}


/* home-decor */


/* ===== Banner / Brand ===== */

.home-decor .brand-hero {
    height: 240px;
    background: #234a3a;
    position: relative;
    overflow: hidden;
}

.home-decor .brand-hero img {
    max-height: 150px;
    width: auto;
}

.home-decor .brand-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 6px solid #fff;
    background: #234a3a;
    overflow: hidden;
}

.home-decor .brand-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* position helpers */

.home-decor .brand-avatar-pos {
    left: 0;
    transform: translateY(-55%);
}

.home-decor .brand-info-pad {
    padding-left: 130px;
}

.home-decor .brand-info-pad h5 {
    font-size: 22px;
}


/* ===== Horizontal Scroll ===== */

.home-decor .filters-scrolly {
    -webkit-overflow-scrolling: touch;
}


/* ===== Dropdown Button Look ===== */

.home-decor .filter-dd .btn {
    min-width: 100px;
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
}

.home-decor .filter-dd .dropdown-toggle::after {
    display: none;
}

.home-decor .drop-item {
    font-size: 13px;
}


/* Hover effect */

.home-decor .dropdown-item:hover {
    background-color: #f1f1f1 !important;
    color: #333 !important;
}


/* home-decor offcanvas */

.filter-toggle-btn {
    font-size: 12px;
    color: #777;
}

.filter-close-btn {
    width: 26px;
    height: 26px;
    padding: 0;
}

.filter-close-icon {
    font-size: 18px;
    line-height: 1;
}

.filter-label-unique {
    gap: 6px;
    font-size: 13px;
    letter-spacing: .2px;
}

.filter-label-unique i {
    font-size: 12px;
}

.card-btn {
    min-width: 40px !important;
}


/* Mobile responsive styles */

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20% !important;
    }

    .country-code {
        width: 556px !important;
    }
}

@media (max-width: 991.98px) {
    .mobile-bottom-nav {
        display: flex;
    }

    /* Category Section Mobile */
    .category-section {
        padding: 20px 0 !important;
    }

    .category-section .carousel-container {
        padding: 0 10px;
    }

    .category-track {
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 5px 0;
    }

    .category-track::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        min-width: 60px;
    }

    .category-circle {
        width: 55px;
        height: 55px;
        border-width: 2px;
        margin-bottom: 5px;
    }

    .category-name {
        font-size: 0.7rem;
    }

    /* Hide carousel buttons on mobile for categories */
    .category-section .carousel-btn-side {
        display: none;
    }

    .section-header {
        flex-direction: row !important;
        align-items: center !important;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .view-more {
        font-size: 0.85rem;
    }

    /* Product Cards Mobile - 2 per row */
    .carousel-container {
        padding: 0 10px;
    }

    .carousel-container.px-4 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .carousel-wrapper {
        overflow: visible;
        width: 100%;
    }

    .product-carousel {
        overflow: visible;
        width: 100%;
    }

    .carousel-track {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 0 !important;
        transform: none !important;
        transition: none !important;
        width: 100% !important;
    }

    .carousel-track .product-card {
        flex: 0 0 calc(50% - 5px) !important;
        min-width: calc(50% - 5px) !important;
        max-width: calc(50% - 5px) !important;
        width: calc(50% - 5px) !important;
        height: auto !important;
    }

    .product-card {
        height: auto !important;
        border-radius: 8px;
        margin: 0;
    }

    .product-image {
        height: 140px !important;
        min-height: 140px !important;
    }

    .product-info {
        padding: 10px;
    }

    .product-desc {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }

    .price {
        font-size: 0.9rem;
    }

    .price-cart {
        justify-content: space-between !important;
        width: 100% !important;
        flex-direction: row;
        gap: 8px;
        align-items: center !important;
    }

    .price-cart button {
        width: 100%;
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    /* Hide side carousel buttons on mobile */
    .carousel-btn-side {
        display: none;
    }

    /* Promo Banners Mobile */
    .promo-banner {
        margin-bottom: 20px !important;
    }

    .promo-banner .promo-bg {
        min-height: auto;
        padding: 20px !important;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .promo-banner .display-3 {
        font-size: 2.5rem !important;
    }

    .promo-banner .promo-right {
        text-align: center !important;
    }

    .promo-banner img {
        border-radius: 10px;
    }

    /* Big Savings / Top Product Section Mobile */
    .savings-section {
        padding: 20px 0 !important;
    }

    .savings-section .section-title {
        font-size: 1rem;
    }

    .category-card {
        border-radius: 8px;
    }

    .category-card img {
        height: 80px;
    }

    .card-label {
        font-size: 0.7rem;
        padding: 4px 10px;
        bottom: 6px;
        left: 6px;
    }

    /* Explore More Section Mobile */
    .explore-section .category-track {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .seller-card-new {
        margin-bottom: 10px;
    }

    .seller-card-image {
        border-radius: 12px;
    }

    .seller-card-name {
        font-size: 0.8rem;
        margin-top: 8px;
    }

    .seller-logo {
        width: 60px;
        height: 60px;
    }

    .seller-name {
        font-size: 0.75rem !important;
    }

    /* Newsletter Mobile */
    .newsletter-spacer {
        height: 0 !important;
    }

    .footer {
        margin-top: 100px;
    }

    .newsletter-wrapper {
        margin-top: -150px;
        margin-bottom: -30px;
    }

    .newsletter-box {
        padding: 30px 20px;
        border-radius: 0;
        text-align: center;
    }

    .newsletter-title {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    .newsletter-form {
        max-width: 100%;
        margin: 20px auto 0;
    }

    /* Footer Mobile */
    .footer-content {
        padding-top: 30px;
    }

    .footer .row>div:first-child {
        text-align: center;
    }

    .footer .row>div:not(:first-child) {
        text-align: left;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-heading {
        margin-top: 10px;
        font-size: 16px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .app-downloads {
        align-items: flex-start;
    }

    .app-badge {
        max-width: 110px;
    }
}

@media (max-width: 1200px) {
    .carousel-track .product-card {
        min-width: calc(33.333% - 14px);
    }

    .header-actions {
        gap: 1.5rem !important;
    }

    /* .country-code {
        width: 556px !important;
    } */
}


/* .country-code {
    width: 100% !important;
} */

@media (max-width: 992px) {
    .logo h2 {
        font-size: 1.4rem;
    }

    .search-bar .form-control {
        font-size: 0.9rem;
        height: 42px;
    }

    .search-pill .search-icon-btn,
    .search-pill .search-btn {
        height: 42px;
        padding: 8px 10px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        gap: 1rem !important;
    }
}

@media (max-width: 768px) {
    .banner-overlay {
        flex-direction: column;
        text-align: center;
    }

    .banner-left,
    .banner-right {
        margin-bottom: 30px;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }

    .category-circle {
        width: 100px;
        height: 100px;
    }

    .newsletter-box {
        padding: 30px 20px;
        text-align: center;
    }

    .newsletter-title {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .newsletter-form {
        max-width: 100%;
        margin-left: 0;
    }

    .carousel-track {
        min-width: 240px;
        max-width: 240px;
        height: 400px !important;
    }

    .carousel-btn-side {
        width: 36px;
        height: 36px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .section-header .d-flex {
        width: 100%;
    }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #heroCarousel .carousel-control-prev {
        left: 10px;
    }

    #heroCarousel .carousel-control-next {
        right: 10px;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .search-bar .form-control {
        height: 42px;
        border-radius: 8px 0 0 8px;
    }

    .search-pill .search-btn {
        height: 42px;
        border-radius: 0 8px 8px 0;
    }

    /* .promo-card-center {
        margin-top: 30px;
    } */
    .swiper-slide img {
        object-fit: cover !important;
    }

    .mySwiper {
        height: 43vh;
        /* single source of truth */
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
    }

    .add-to-body {
        position: absolute;
        right: 50%;
        bottom: 1px;
    }

    .footer-description {
        font-weight: 500;
    }

    .card-btn {
        width: 40px !important;
        max-height: 58px !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.25rem;
    }

    .product-image {
        height: 180px;
        min-height: 180px;
    }

    .product-card {
        height: 350px !important;
        max-height: 350px !important;
    }

    .category-card img {
        height: 150px;
    }

    .carousel-track .product-card {
        min-width: 220px;
        max-width: 220px;
    }

    .carousel-btn-side {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .logo h2 {
        font-size: 1.25rem;
    }

    .header-top {
        padding: 6px 0;
    }

    .header-icons {
        gap: 10px !important;
    }

    .icon-link {
        font-size: 0.8rem;
    }

    .search-bar .form-control {
        padding: 9px 12px;
        font-size: 0.9rem;
    }

    .location-selector button {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .btn-outline-dark {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem;
    }

    .main-nav .nav {
        flex-direction: column;
    }

    .main-nav .nav-item {
        width: 100%;
    }

    .main-nav .nav-link {
        padding: 10px 0;
        text-align: center;
    }

    .add-to-body {
        position: absolute;
        right: 50%;
        bottom: 1px;
    }

    .newsletter-spacer {
        min-height: 30px !important;
    }
}

@media (max-width: 480px) {
    .promo-card-center {
        margin-top: auto;
    }

    .footer-logo {
        display: flex;
        align-items: start !important;
        margin-top: 20px;
    }

    .footer-content p {
        display: flex;
        align-items: start !important;
    }

    .logo h2 {
        font-size: 1.15rem;
    }

    .product-card {
        margin-bottom: 10px;
    }

    .price-cart {
        justify-content: space-between !important;
        flex-direction: row;
        margin: auto;
        display: inline-flex;
    }

    .price-cart del {
        font-size: 13px;
    }

    .price-cart button {
        width: 100%;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .header-icons {
        font-size: 0.78rem;
    }

    .search-bar .btn-outline-secondary,
    .search-bar .btn-dark {
        padding: 8px 10px;
    }

    .card-btn {
        width: 30% !important;
        max-height: 58px !important;
    }

    .camera-btn i {
        left: 90%;
        top: 23px;
    }

    .add-to-body {
        position: absolute;
        right: 15px;
        top: 18px;
    }
}

@media (max-width:378px) {
    .add-to-body {
        position: absolute;
        right: 4px;
        top: 20px;
        font-size: 12px !important;
    }
    .newsletter-title {
        font-size: 2.1rem !important;
        margin-bottom: 20px;
    }
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.category-card {
    animation: fadeInUp 0.6s ease-out;
}


/* Scrollbar Styling */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* Search Modals */

.search-modal {
    border-radius: 16px;
    overflow: hidden;
}

.search-modal .modal-header {
    padding: 20px 24px 10px;
}

.search-modal .modal-header .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.search-modal .modal-body {
    padding: 20px 24px 30px;
}

.scan-area,
.upload-area {
    background-color: #e8e8e8;
    border: 2px dashed #bbb;
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.scan-icon,
.upload-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scan-icon i,
.upload-icon i {
    font-size: 3rem;
    color: #666;
}

.scan-btn,
.upload-btn {
    padding: 10px 40px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.scan-btn:hover,
.upload-btn:hover {
    background-color: #333;
}


/* breadcrumb styles */

.breadcrumb-wrapper {
    background-color: #2b2b2b;
    /* dark header */
    padding: 0.75rem 1rem;
}

.breadcrumb {
    --bs-breadcrumb-divider: "›";
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: #cfcfcf;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #9a9a9a;
}

.breadcrumb-item.active {
    color: #f5b400;
    /* highlight like screenshot */
    font-weight: 500;
}

.product-grid {
    display: grid;
    grid-template-columns: 460px 1fr 280px;
    gap: 30px;
    align-items: start;
}


/* ============ LEFT SECTION - IMAGES ============ */

.image-section {
    display: flex;
    gap: 15px;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-image-container {
    position: relative;
    width: 370px;
    height: 531px;
    border-radius: 12px;
    overflow: hidden;
}

.main-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn i {
    font-size: 20px;
    color: #e53935;
}


/* ============ MIDDLE SECTION - DETAILS ============ */

.product-title {
    font-weight: 600;
    color: #222;
    line-height: 1.2;
}

.info-line {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.info-line span {
    color: #333;
    font-weight: 500;
}

.price-section {
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-text {
    font-size: 14px;
    color: #666;
}

.price-amount {
    font-size: 17px;
    font-weight: 700;
    color: #d4a528;
}

.stock-info {
    font-size: 14px;
    color: #666;
}

.stock-info span {
    color: #e53935;
    font-weight: 500;
}


/* Size Options */

.option-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 15px;
}

.option-label {
    font-size: 14px;
    color: #666;
    min-width: 60px;
}

.size-buttons {
    display: flex;
    gap: 15px;
}

.size-btn {
    min-width: 38px;
    height: 23px;
    padding: 0 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn:hover {
    border-color: #999;
}

.size-btn.active {
    background: #C29520;
    color: #fff;
}


/* Color Options */

.color-options {
    display: flex;
    gap: 10px;
}

.color-circle {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s;
}

.color-circle:hover {
    transform: scale(1.15);
}

.color-circle.active {
    border-color: #333;
}

.color-1 {
    background: #c75426;
}

.color-2 {
    background: #1a1a1a;
}

.color-3 {
    background: #f5f0e1;
    border: 1px solid #ccc;
}

.color-4 {
    background: #4a4a4a;
}

.color-5 {
    background: #c9a227;
}


/* Quantity */

.cart-input {
    max-width: 28px !important;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e0e0e0;
}

.qty-number {
    font-size: 16px;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}


/* Total Price */

.total-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}


/* Action Buttons */

.buttons-section {
    margin-top: 16px;
}

.btn-buy-now {
    width: 80%;
    padding: 10px;
    background: #d4a528;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.2s;
}

.btn-buy-now:hover {
    background: #c29520;
}

.btn-add-cart {
    width: 80%;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s;
}

.btn-add-cart:hover {
    border-color: #333;
}


/* ============ RIGHT SIDEBAR ============ */

.sidebar-section {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.seller-avatar {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seller-avatar i {
    font-size: 18px;
    color: #888;
}

.seller-details small {
    font-size: 12px;
    color: #999;
    display: block;
}

.seller-details .seller-name {
    font-size: 15px;
    font-weight: 600;
    color: #2196F3;
    margin: 0;
}


/* Share Section */

.share-section {
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.share-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.share-header i {
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    background: transparent;
    color: white;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.twitter {
    background: #000;
}

.social-btn.whatsapp {
    background: #25D366;
}


/* Info Cards */

.info-card {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.info-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-icon.warning {
    color: #d4a528;
}

.info-icon.success {
    color: #4CAF50;
}

.info-icon.whatsapp {
    color: #25D366;
}

.info-text h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #333;
}

.info-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.info-text a {
    font-size: 12px;
    color: #2196F3;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}


/* top selling products */

.section-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.selling-products {
    display: flex;
    align-items: flex-start;
    padding: 8px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 12px;
    background: #fff;
}

.selling-image {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.selling-info {
    flex: 1;
}

.product-name {
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
}

.product-price {
    font-size: 11px;
    color: #222;
    display: inline;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    font-size: 11px;
    color: #555;
}

.product-rating .bi-star-fill {
    color: #f5c518;
    margin-right: 2px;
    font-size: 10px;
}

.btn-buy {
    background-color: #1e1e2d;
    color: #fff;
    border: none;
    padding: 4px 16px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 3px;
    margin-top: 6px;
}

.btn-buy:hover {
    background-color: #2a2a3d;
    color: #fff;
}

.query-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.query-count {
    font-weight: 400;
    color: #333;
}

.query-textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
    resize: vertical;
    font-size: 13px;
}

.query-textarea::placeholder {
    color: #bbb;
    font-size: 13px;
}

.btn-submit {
    background-color: #1e1e2d;
    color: #fff;
    border: none;
    padding: 10px 45px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #2a2a3d;
    color: #fff;
}

.other-questions-title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 8px;
    color: #222;
}

.no-questions {
    color: #aaa;
    font-size: 12px;
}


/* ============ RESPONSIVE ============ */

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sidebar-section {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .image-section {
        flex-direction: column-reverse;
    }

    .thumbnail-list {
        flex-direction: row;
        justify-content: center;
    }

    .main-image-container {
        width: 100%;
        height: 424px !important;
    }

    .sidebar-section {
        grid-column: span 1;
    }

    /* top selling */
    .selling-products {
        flex-direction: column;
        text-align: center;
    }

    .selling-image {
        margin-right: 0;
        margin-bottom: 10px;
        width: 120px;
        height: 90px;
    }
}


/* info card */

.info-card {
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
}

.info-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    margin-right: 8px;
    font-size: 14px;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.8;
    color: #fff;
}

.icon-box {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.truck-icon {
    color: #b8860b;
}

.check-icon {
    color: #28a745;
}

.whatsapp-link {
    color: #128c7e;
    text-decoration: none;
}

.whatsapp-link:hover {
    text-decoration: underline;
    color: #075e54;
}

.seller-icon {
    color: #666;
}

.share-icon {
    color: #666;
}


/* men-clothing  */

.main-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: 460px 1fr 280px;
    gap: 30px;
    align-items: start;
}


/* ============ LEFT SECTION - IMAGES ============ */

.image-section {
    display: flex;
    gap: 15px;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail-item {
    width: 65px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}

.thumbnail-item:hover {
    border-color: #ccc;
}

.thumbnail-item.active {
    border-color: #d4a528;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image-container {
    position: relative;
    width: 370px;
    height: 531px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.main-image-container-cart {
    width: 100%;
    height: 200px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn i {
    font-size: 20px;
    color: #e53935;
}


/* ============ MIDDLE SECTION - DETAILS ============ */

.product-cart-btn {
    max-width: 100% !important;
    margin: auto;
    bottom: 3%;
    left: 0;
    right: 0;
}

.info-line {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.info-line span {
    color: #333;
    font-weight: 500;
}

.vertical-divider {
    width: 1px;
    background-color: #000;
    height: 28px;
    display: inline-block;
}

@media (max-width: 576px) {
    .vertical-divider {
        display: none;
    }
}

.price-section {
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-text {
    font-size: 14px;
    color: #666;
}

.price-amount {
    font-size: 17px;
    font-weight: 700;
    color: #d4a528;
}

.stock-info {
    font-size: 14px;
    color: #666;
}

.stock-info span {
    color: #e53935;
    font-weight: 500;
}


/* Size Options */

.option-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 15px;
}

.option-label {
    font-size: 14px;
    color: #666;
    min-width: 60px;
}

.size-buttons {
    display: flex;
    gap: 15px;
}

.size-btn {
    min-width: 38px;
    height: 23px;
    padding: 0 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn:hover {
    border-color: #999;
}

.size-btn.active {
    background: #C29520;
    color: #fff;
}


/* Color Options */

.color-options {
    display: flex;
    gap: 10px;
}

.color-circle {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s;
}

.color-circle:hover {
    transform: scale(1.15);
}

.color-circle.active {
    border-color: #333;
}

.color-1 {
    background: #c75426;
}

.color-2 {
    background: #1a1a1a;
}

.color-3 {
    background: #f5f0e1;
    border: 1px solid #ccc;
}

.color-4 {
    background: #4a4a4a;
}

.color-5 {
    background: #c9a227;
}


/* Quantity */

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e0e0e0;
}

.qty-number {
    font-size: 16px;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}


/* Total Price */

.total-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}


/* Action Buttons */

.buttons-section {
    margin-top: 16px;
}

.btn-buy-now {
    width: 80%;
    padding: 10px;
    background: #d4a528;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.2s;
}

.btn-buy-now:hover {
    background: #c29520;
}

.btn-add-cart {
    width: 80%;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s;
}

.btn-add-cart:hover {
    border-color: #333;
}


/* ============ RIGHT SIDEBAR ============ */

.sidebar-section {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.seller-avatar {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seller-avatar i {
    font-size: 18px;
    color: #888;
}

.seller-details small {
    font-size: 12px;
    color: #999;
    display: block;
}

.seller-details .seller-name {
    font-size: 15px;
    font-weight: 600;
    color: #2196F3;
    margin: 0;
}


/* Share Section */

.share-section {
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.share-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.share-header i {
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    background: transparent;
    color: white;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.twitter {
    background: #000;
}

.social-btn.whatsapp {
    background: #25D366;
}


/* Info Cards */

.info-card {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.info-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-icon.warning {
    color: #d4a528;
}

.info-icon.success {
    color: #4CAF50;
}

.info-icon.whatsapp {
    color: #25D366;
}

.info-text h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #333;
}

.info-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.info-text a {
    font-size: 12px;
    color: #2196F3;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}


/* top selling products */

.section-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.selling-products {
    display: flex;
    align-items: flex-start;
    padding: 8px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 12px;
    background: #fff;
}

.selling-image {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.selling-info {
    flex: 1;
}

.product-name {
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
}

.product-price {
    font-size: 11px;
    color: #222;
    display: inline;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    font-size: 11px;
    color: #555;
}

.product-rating .bi-star-fill {
    color: #f5c518;
    margin-right: 2px;
    font-size: 10px;
}

.btn-buy {
    background-color: #1e1e2d;
    color: #fff;
    border: none;
    padding: 4px 16px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 3px;
    margin-top: 6px;
}

.btn-buy:hover {
    background-color: #2a2a3d;
    color: #fff;
}

.query-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.query-count {
    font-weight: 400;
    color: #333;
}

.query-textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
    resize: vertical;
    font-size: 13px;
}

.query-textarea::placeholder {
    color: #bbb;
    font-size: 13px;
}

.btn-submit {
    background-color: #1e1e2d;
    color: #fff;
    border: none;
    padding: 10px 45px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #2a2a3d;
    color: #fff;
}

.other-questions-title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 8px;
    color: #222;
}

.no-questions {
    color: #aaa;
    font-size: 12px;
}

.swiper {
    width: 300px;
    height: 300px;
    object-fit: cover;
}


/* cart csss */

.custom-check {
    width: 16px;
    height: 16px;
    border: 1.5px solid #bbb;
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-color: #fff;
}

.custom-check:checked {
    background-color: #22c55e;
    border-color: #22c55e;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
}

.product-img-wrapper {
    display: flex;
    width: 60px;
    height: 90px;
    background-color: #d9d5cf;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qty-btn {
    width: 22px;
    height: 22px;
    background-color: #b5b5b5;
}

.qty-btn:hover {
    background-color: #b5b5b5;
}

.text-green {
    color: #22c55e;
}

.btn-checkout {
    background: #ddaf27;
}

.btn-checkout:hover {
    background: #ddaf27;
}

@media (max-width: 768px) {
    .product-img-wrapper {
        width: 60px;
        height: 80px;
        flex: 0 0 auto;
    }

    .wrap-clas {
        order: 3;
        width: 100%;
        text-align: left !important;
        margin-top: 6px;
        padding-left: 0;
    }

    .card-body .ms-3:last-child {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .card-body {
        position: relative;
    }

    .me-5 {
        margin-right: 10px !important;
    }

    .qty-btn {
        min-width: 30px;
        min-height: 30px;
    }

    .last-order {
        padding: 25px;
        height: fit-content;
    }
}


/* Banner Carousel Buttons – Image Accurate */

.discount-banner {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.promo-content {
    width: 100%;
    max-width: 1400px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}


/* Carousel images */

.promo-content .carousel-item img {
    object-fit: cover;
    height: 420px;
}


/* Responsive image heights */

@media (max-width: 991px) {
    .promo-content .carousel-item img {
        height: 320px;
    }
}


/* Custom nav buttons */

.custom-nav {
    width: 42px;
    height: 42px;
    background: #e5e5e5;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all .2s ease;
    z-index: 5;
    line-height: 1;
    text-decoration: none;
}

.custom-nav:hover {
    background: #dcdcdc;
    color: #000;
}

.carousel-control-prev.custom-nav {
    left: 12px;
}

.carousel-control-next.custom-nav {
    right: 12px;
}


/* Remove default Bootstrap chevrons (if any) */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}


/* Optional: small shadow for buttons */

.custom-nav {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* Optional: indicators styling */

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.carousel-indicators .active {
    background: #333;
}


/* Brands Section */

.brands-section {
    background-color: #fff;
}

.brand-card {
    padding: 15px;
}


/* New brand Card Styles - Rectangular */

.brand-card-new {
    text-align: center;
}

.brand-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    background-color: #e8e4dc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.brand-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-card-name {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}


/* home-decora Card */

.brand-card-image.home-decora-card {
    background-color: #f5f0e6;
}


/* error */

.error-icon {
    font-size: 100px;
    color: #dc3545;
}

.error-text {
    font-size: 16px;
    margin-top: 20px;
}

.back-btn {
    background-color: #d4a62a;
}

.back-btn:hover {
    background-color: #d4a62a;
}