/* ============================================
   STYLE.CSS - Base/Default Styles (Mobile-First)
   Default styles for small mobile devices
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --font-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    /* Primary Red */
    --primary: #ebb434;/*rgb(220, 53, 69);*/
    --primary-dark: rgb(180, 35, 50);
    --primary-light: rgb(235, 90, 105);
    /* Secondary Blue */
    --secondary: rgb(13, 110, 253);
    --secondary-dark: rgb(10, 88, 202);
    --secondary-light: rgb(60, 145, 255);
    /* Backgrounds */
    --bg: rgb(255, 255, 255);
    --surface: rgb(248, 249, 250);
    /* Text */
    --text: rgb(33, 37, 41);
    --text-muted: rgb(108, 117, 125);
    --text-light: rgb(173, 181, 189);
    /* Borders */
    --border: rgb(222, 226, 230);
    /* Base */
    --black: #000000;
    --white: #ffffff;
    --max-width: 1600px;
    /* Legacy aliases */
    --bg-navyblue: var(--primary);
    --btn-bg-navyblue: var(--primary);
    /* Star rating */
    --star-size: 18px;
    --star-color: #ccc;
    --star-background: #0dd432;
    --bg: #f5f2ee;
    --card-radius: 16px;
    --label-bg: rgba(10, 10, 10, 0.52);
    --label-color: #fff;
    --accent: var(--primary);
    --shadow: 0 8px 28px rgba(0,0,0,0.12);
    --transition: 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    --yellowColor: var(--primary);
}

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: var(--font-default);
    background: var(--white);
    color: var(--text);
}

p {
    margin: 0px;
    padding: 0px;
}

a {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

    a:hover {
        color: var(--black);
        text-decoration: none;
        cursor: pointer;
    }

.h2, h2 {
    font-size: 1.2rem;
}

/* ===== LAYOUT UTILITIES ===== */
.max-width {
    max-width: var(--max-width);
    margin: auto;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.clear-both {
    clear: both;
}

/* ===== TOP HEADER ===== */
.top-header {
    background: var(--bg-navyblue);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
}

.v-divider {
    position: relative;
}

    .v-divider:after {
        content: "";
        position: absolute;
        right: 0;
        height: 18px;
        width: 1.5px;
        background-color: var(--white);
    }

.change-lang select,
.change-location select {
    background: transparent;
    color: var(--white);
    border: none;
    outline: none;
}

    .change-lang select option,
    .change-location select option {
        color: var(--black);
    }

/* ===== HEADER MENU (Mobile Default) ===== */
.header-menu {
    height: 85px;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    position: relative;
}

.logo {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 9px;
    left: 60px;
}

.humber {
    cursor: pointer;
    z-index: 1;
    top: 10px;
}

.cart-account-section {
    position: absolute;
    top: -85px;
    right: 20px;
}

/* ===== SEARCH ===== */
.has-search {
    position: relative;
    margin-top: 40px;
}

    .has-search .form-control {
        padding-right: 2.375rem;
        border-radius: 1rem 0px 0px 1rem;
        outline: none;
        background: #f8f8f8;
        border-color: #f8f8f8;
    }

    .has-search .btn {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
        border-radius: 0rem 1rem 1rem 0rem;
        width: 40px;
    }

.form-control:focus {
    border-color: #f8f8f8;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.has-search .form-control-feedback {
    position: absolute;
    right: 10px;
    top: 8px;
    text-align: center;
    pointer-events: none;
}

/* ===== NAVIGATION MENU (Mobile Default) ===== */
.menu-list {
    z-index: 111;
    position: fixed;
    top: -25px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.2);
}

    .menu-list > ul {
        list-style: none;
        display: block;
        padding: 10px;
        background: #fff;
        width: 80%;
        height: 100%;
        margin: 0;
    }

    .menu-list ul li a {
        color: var(--black);
    }

    .menu-list ul li > a:not(.child-menu-list ul li > a) {
        display: block;
        padding: 8px 10px;
        border-bottom: 1px solid #e9e3e3;
    }

    .menu-list ul li > span {
        display: block;
        padding: 8px 10px;
        border-bottom: 1px solid #e9e3e3;
    }

        .menu-list ul li > a:hover,
        .menu-list ul li > span:hover {
            background: #f8f8f8;
        }

.child-menu-list {
    display: none;
    position: static;
    width: 100% !important;
}

    .child-menu-list ul {
        background: var(--white);
        list-style: none;
        padding: 6px;
        margin: 19px 0px 0px 0px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
        border-radius: 0px 0px 8px 8px;
    }

        .child-menu-list ul li > a {
            padding: 10px 12px;
            display: block;
        }

            .child-menu-list ul li > a:hover {
                background: #f8f8f8;
            }

.menu-list ul li:hover .child-menu-list {
    display: block;
}

.menu-list ul li a:hover {
    text-decoration: none;
}

.closeMenu {
    position: absolute;
    right: 10px;
    top: 5px;
    color: #fff;
    cursor: pointer;
}

/* ===== BANNER ===== */
.inner-banner .bg-breadcrumb {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .inner-banner .bg-breadcrumb h3 {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .inner-banner .bg-breadcrumb .breadcrumb {
        background-color: transparent;
        color: white;
    }

.breadcrumb .breadcrumb-item {
    font-size: 0.8rem;
}

    .breadcrumb .breadcrumb-item a {
        color: #fff;
    }

.active-breadcrumb {
    color: #00c4ff !important;
}

.banner .owl-nav .owl-prev,
.banner .owl-nav .owl-next {
    background-color: #fff !important;
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 2px 6px 2px;
    position: absolute;
    top: 30%;
    width: 30px;
    height: 100px;
    border-radius: 4px;
    outline: none;
}

.banner .owl-nav .owl-prev {
    left: 2px;
}

.banner .owl-nav .owl-next {
    right: 2px;
}

.banner .owl-item img {
    display: block;
    width: 100% !important;
}

.owl-item {
    opacity: 0;
}

    .owl-item.active {
        opacity: 1;
    }

/* ===== CATEGORY SECTION ===== */
.category .items {
    background-color: aqua;
    width: 300px;
    height: 200px;
    border-radius: 8px;
    flex: 0 0 auto;
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
}

.category label {
    font-size: 15px;
}

.category span {
    font-size: 20px;
}

.category .items a {
    text-decoration: none;
}

.category .items p {
    position: absolute;
    color: #fff;
    text-align: center;
    left: 0;
    bottom: 0;
    background-color: #35323261;
    width: 100%;
}

.category .items img {
    max-width: 300px;
    max-height: 200px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.category .scrollable-container .items:hover {
    transform: scale(1.04);
}

.scrollable-container {
    display: block;
    overflow-x: auto;
    min-width: 100%;
}

    .scrollable-container::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    .scrollable-container::-webkit-scrollbar-thumb {
        background-color: #b7b4b4;
        border-radius: 4px;
    }

    .scrollable-container::-webkit-scrollbar-track {
        background-color: #f5f5f5;
    }

/* ===== PRODUCT GRID (Mobile Default: 1 column) ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    margin-bottom: 40px;
    /* ── Stretch so all cards in a row reach the same height ── */
    align-items: stretch;
}

.product-filter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

/* ===== PRODUCT CARD ===== */
.product {
    margin: 0px 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 2px;
}

    .product .product-box-title {
        font-size: 22px;
    }

.product-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* ── Flex column: lets body grow and pins bottom section ── */
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .product-item:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        transform: translateY(-3px);
    }

.product-item-header {
    position: relative;
    width: 100%;
    min-height: 200px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .product-item-header a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 15px;
    }

        .product-item-header a img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.3s ease;
        }

        .product-item-header a:hover img {
            transform: scale(1.08);
        }

        /* Aspect ratio classes */
        .product-item-header a img.landscape {
            aspect-ratio: 16 / 9;
            width: 100%;
            max-height: 180px;
            object-fit: contain;
        }

        .product-item-header a img.portrait {
            aspect-ratio: 3 / 4;
            width: auto;
            max-height: 250px;
            object-fit: contain;
        }

        .product-item-header a img.square {
            aspect-ratio: 1 / 1;
            width: 100%;
            max-height: 220px;
            object-fit: contain;
        }

/* Wishlist */
.wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
}

    .wishlist:hover {
        background: #ff4757;
        transform: scale(1.1);
    }

        .wishlist:hover svg {
            stroke: white;
            fill: white;
        }

    .wishlist.active {
        background: #ff4757;
    }

        .wishlist.active svg {
            stroke: white;
            fill: white;
        }

/* Product Body */
.product-item-body {
    padding: 12px;
    /* ── Flex column: fills all height left after the image ── */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product .product-item .product-item-body .product-name {
    font-size: 15px;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #000;
}

.product-name {
    display: block;
    color: #2d3436;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
}

    .product-name:hover {
        color: #007bff;
    }

.product .product-item .product-item-body .product-short-desc {
    font-size: 13px;
    font-weight: 400;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #919292;
}

.product-short-desc {
    display: block;
    color: #636e72;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    height: 40px;
    overflow: hidden;
    /* ── Grows to fill space → pushes price/stars/btn down ── */
    flex: 1;
}

/* Price */
.product-price-wrapper {
    margin-bottom: 12px;
}

.product-price {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
}

.product .product-price {
    font-size: 15px;
    font-weight: 600;
}

.product-price .product-discount-price {
    font-size: 14px;
    font-weight: 400;
}

.product-discount-price {
    display: inline-block;
    font-size: 14px;
    color: #b2bec3;
    font-weight: 400;
    margin-left: 10px;
    text-decoration: line-through;
}

.off-price {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
}

/* ── Bottom section: price + rating + button always pinned to card bottom ── */
.product-bottom-section {
    margin-top: auto; /* pushes this block to the very bottom */
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

/* Cart Button (standalone, outside .product scope) */
.cart-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border: 2px solid #000;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 14px;
    padding: 6px 10px;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-family: inherit;
}

    .cart-btn:hover {
        color: var(--white) !important;
        text-decoration: none;
        background-color: var(--btn-bg-navyblue);
        border-color: var(--btn-bg-navyblue);
    }

/* Rating */
.rating-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.Stars {
    --rating: 0;
    --star-size: 16px;
    --star-color: #fdcb6e;
    --star-background: #dfe6e9;
    display: flex;
    gap: 2px;
}

    .Stars::before {
        content: '★★★★★';
        font-size: var(--star-size);
        letter-spacing: 1px;
        background: linear-gradient(90deg, var(--star-color) calc(var(--rating) * 20%), var(--star-background) calc(var(--rating) * 20%));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .Stars .rating-count {
        font-size: 12px;
        margin-left: 5px;
    }

.review {
    font-size: 13px;
    color: #636e72;
    margin-left: 8px;
}

/* Cart Button */
.product .cart-btn {
    display: table;
    text-decoration: none;
    border: 2px solid #000;
    color: #000;
    font-size: 14px;
    border-radius: 14px;
    padding: 3px 10px;
    margin-top: 5px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

    .product .cart-btn:hover {
        color: var(--white) !important;
        text-decoration: none;
        background-color: var(--btn-bg-navyblue);
        border: 2px solid var(--btn-bg-navyblue);
    }

/* ===== BRAND SECTION ===== */
.choose-brand {
    margin-top: 50px;
}

    .choose-brand .items {
        background-color: #e4e8e87d;
        height: 100px;
        border-radius: 8px;
    }

        .choose-brand .items:hover {
            border: 1px solid var(--btn-bg-navyblue);
        }

.brand-logo {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 60px;
    height: 60px;
    background-color: #0dd432;
    border-radius: 50%;
}

    .brand-logo img {
        width: 100%;
        height: 100%;
    }

.brand-name {
    font-size: 16px;
    font-weight: 600;
}

.choose-brand .section-title p {
    font-size: 22px;
    font-weight: 700;
}

.brand-carousel {
    margin-top: 100px;
    background-color: #e6e6e636;
    padding: 50px 0px;
}

.owl-carousel .owl-item img {
    width: 100% !important;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail .product-container {
    margin: auto;
    overflow: hidden;
    width: 100% !important;
}

    .product-detail .product-container div > img {
        width: 100%;
        height: 100%;
    }

.product-main-img img {
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.product-thumbnails ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

    .product-thumbnails ul li:nth-child(1) {
        margin: 0px 16px 0px 0px;
    }

    .product-thumbnails ul li {
        margin-right: 16px;
        cursor: pointer;
    }

        .product-thumbnails ul li img {
            width: 100%;
            height: auto;
        }

.thumbimgsize {
    width: 100px;
    height: 127px;
}

.Catthumbimgsize {
    width: 150px;
    height: 150px;
}

.product_img img {
    width: 100px;
    height: 127px;
}

.brandimgthumb {
    width: 60px;
    height: 75px;
}

.product-short-desc p {
    font-size: 15px;
}

.price .sell-price {
    font-size: 25px;
    font-weight: 600;
}

.discount-price {
    font-size: 16px;
    font-weight: 400;
    color: rgb(187, 190, 187);
    margin-left: 5px;
}

.discount-off {
    font-size: 15px;
    font-weight: 500;
    color: rgb(39, 216, 39);
    margin-left: 5px;
}

.product-colors p {
    font-size: 16px;
    font-weight: 500;
}

.product-colors .color-item {
    width: 25px;
    height: 25px;
    background-color: var(--color);
    border-radius: 100%;
    margin-left: 10px;
    cursor: pointer;
}

    .product-colors .color-item:nth-child(1) {
        margin-left: 0px;
    }

/* Cart Counter */
.cart-counter {
    padding: 5px 10px;
    display: table;
    border-radius: 20px;
}

    .cart-counter button {
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .cart-counter input {
        background: transparent;
        border: none;
        outline: none;
        width: 60px;
        font-size: 15px;
    }

.quantity {
    display: flex;
}

    .quantity .minus,
    .quantity .plus {
        background-color: #eee;
        display: block;
        float: left;
        border-radius: 50px;
        cursor: pointer;
        border: 0;
        padding: 0;
        width: 34px;
        height: 34px;
        line-height: 36px;
        text-align: center;
        font-size: 20px;
        margin: 4px;
    }

    .quantity .minus {
        padding-left: 4px;
    }

    .quantity .qty {
        float: left;
        width: 55px;
        height: 36px;
        border: 1px solid #ddd;
        background-color: transparent;
        text-align: center;
        padding: 0;
        margin: 3px;
    }

.txtqty {
    -moz-appearance: textfield;
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    width: 60px;
}

    .txtqty::-webkit-outer-spin-button,
    .txtqty::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }

.qtyflex {
    display: flex;
    align-items: center;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

    .qtyflex #btnminus, #btnplus {
        width: 48px;
        height: 100%;
        background: #f7f7f7;
        border: none;
        border-right: 1px solid #e0e0e0;
        font-size: 20px;
        cursor: pointer;
        flex-shrink: 0;
    }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.product-btn {
    display: inline-flex;
}
    /* Product Buttons */
    .product-btn .cart-btn,
    .product-btn .buy-btn {
        text-decoration: none;
        border: 2px solid #000;
        color: #000;
        font-size: 14px;
        border-radius: 20px;
        padding: 10px 30px;
        margin-top: 5px;
        width: 229px;
        text-align: center;
        font-weight: 600;
    }

    .product-btn .buy-btn {
        background-color: var(--btn-bg-navyblue);
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }

.pin-code {
    border: none;
    outline: none;
    width: 42%;
    margin-left: 20px;
}

    .pin-code::placeholder {
        font-size: 14px;
        border-bottom: 1px solid;
    }

    .pin-code:not(:placeholder-shown) {
        border-bottom: 1px solid;
    }

.policy-title {
    font-weight: 500;
}

.policy-desc {
    font-size: 13px;
    margin-left: 21px;
}

/* ===== TABS ===== */
.tabs-container .tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-bottom: 2px solid #e6e6e6;
}

    .tabs-container .tabs-nav li:nth-child(1) {
        margin-left: 0px;
    }

    .tabs-container .tabs-nav li {
        margin-left: 25px;
    }

        .tabs-container .tabs-nav li a {
            text-decoration: none;
            font-size: 20px;
            color: #dcd7d7;
            font-weight: 500;
            padding: 5px 0px;
            display: block;
        }

    .tabs-container .tabs-nav .active a {
        color: #000;
        border-bottom: 2px solid #000;
    }

.product-desc .rating {
    border-bottom: 1px solid #e6e6e6;
}

/* ===== SHOP PAGE ===== */
.shop-page .product {
    box-shadow: none !important;
}

.product-grid .product-item-header {
    text-align: center;
}

.product-grid .product-item img {
    transform: translate(0%, 20%) !important;
}

/* ===== PAGINATION ===== */
.product-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.product-pagination li {
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ccc;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

    .product-pagination li a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
        display: block;
        font-weight: 500;
    }

        .product-pagination li a.active {
            background-color: var(--primary);
            width: 100%;
            color: #fff;
            display: block;
            border-radius: 50%;
        }

.product-pagination ul li a:hover {
    background-color: var(--primary);
    width: 100%;
    color: #fff;
    display: block;
    border-radius: 50%;
}

.nice-select {
    border-radius: 50px !important;
    background-color: #e4e8e87d;
}

/* ===== BLOG ===== */
.blog-section .blog-thumb img {
    width: 100%;
}

.blog-section .blog-item {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.post-title {
    font-size: 20px;
    font-weight: 800;
}

    .post-title a {
        text-decoration: none;
        color: var(--btn-bg-navyblue);
    }

        .post-title a:hover {
            color: rgb(117, 117, 216);
        }

.post-cat {
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0px;
}

.post-date span {
    font-size: 12px;
    font-weight: 500;
    margin-top: 20px;
    display: block;
}

.popular-post-header {
    background-color: var(--btn-bg-navyblue);
    color: #fff;
    padding: 6px 4px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
}

.popular-post-title {
    height: 75px;
    overflow: hidden;
}

    .popular-post-title a {
        font-size: 14px;
        text-align: justify;
        white-space: break-spaces;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
        text-decoration: none;
        color: var(--btn-bg-navyblue);
        font-weight: 600;
        line-height: 0;
    }

.popular-blog-thumb {
    width: 100%;
}

    .popular-blog-thumb img {
        width: 100%;
        height: 100%;
    }

.blog-title {
    font-size: 18px;
    font-weight: 700;
}

.blog-desc {
    font-size: 14px;
    font-weight: 400;
}

.read-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--btn-bg-navyblue);
    text-transform: uppercase;
}

.blog-item {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.blog-section-home {
    margin-top: 100px;
}

    .blog-section-home h6 {
        text-align: center;
        font-size: 25px;
        font-weight: 700;
    }

/* ===== ABOUT ===== */
.about-section {
    margin-top: 100px;
}

.about-details h1 {
    font-size: 50px;
    font-weight: 700;
}

.about-short-des p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ===== CHOOSE SECTION ===== */
.choose-section {
    margin-top: 50px;
}

    .choose-section .item-choose .card {
        background-color: var(--yellowColor);
        color: #fff;
    }

    .choose-section h2 {
        font-size: 40px;
        font-weight: 700;
    }

    .choose-section .item-choose .mdi-truck-fast,
    .choose-section .item-choose .mdi-police-badge-outline {
        font-size: 50px;
    }

    .choose-section .item-choose .return {
        rotate: 90deg;
    }

    .choose-section .item-choose .choose-title {
        font-size: 22px;
        font-weight: 500;
    }

    .choose-section .item-choose .choose-desc {
        font-size: 15px;
        font-weight: 400;
        margin-top: 5px;
    }

/* ===== BLOG SINGLE ===== */
.blog-single-img img {
    width: 100%;
}

.blog-single-desc a {
    font-size: 38px;
    font-weight: 700;
    text-decoration: none;
    color: var(--btn-bg-navyblue);
}

.quote {
    font-size: 22px;
    color: var(--primary-dark);
    padding: 40px;
    font-style: italic;
    border-left: 5px solid var(--btn-bg-navyblue);
    margin: 25px 0px;
}

.tag-option a {
    border: 1px solid var(--btn-bg-navyblue);
    text-decoration: none;
    padding: 4px 12px;
    font-size: 14px;
    border-radius: 4px;
    color: var(--btn-bg-navyblue);
    font-weight: 600;
}

.blog-single-share span {
    color: #000;
}

/* ===== COMMENTS ===== */
.comment-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
}

.comment-meta a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.comment-info h5 {
    color: var(--btn-bg-navyblue);
    font-weight: 500;
    font-size: 18px;
}

.comment-info span {
    color: #000;
    font-weight: 400;
    font-size: 14px;
}

.btn-msg {
    background-color: var(--btn-bg-navyblue);
    color: #fff;
    padding: 10px 15px;
}

.comment-form input,
.comment-form textarea {
    background-color: #f7f8fb;
    border: 1px solid #f7f8fb;
    outline: none;
}

    .comment-form input:focus,
    .comment-form textarea:focus {
        background-color: #f7f8fb;
        border: 1px solid #f7f8fb;
    }

/* ===== FOOTER ===== */
.footer {
    margin: 100px 20px 0px 20px;
    padding: 20px 0px;
    border-top: 1.4px solid #e6e6e6;
    border-bottom: 1.4px solid #e6e6e6;
}

    .footer h6 {
        font-weight: normal;
        font-size: 14px;
        color: #878585;
    }

    .footer ul li a {
        font-size: 14px;
        color: #878585;
    }

.bottom-footer {
    margin: 0px 20px;
    padding: 20px 0px;
}

    .bottom-footer ul li a,
    .copy-right {
        font-size: 14px;
    }

    .bottom-footer ul li:not(:first-child) {
        margin-left: 25px;
    }

    .bottom-footer ul li a span {
        color: var(--black);
    }

    .bottom-footer ul li a:hover {
        text-decoration: none;
        color: #4080c6;
    }

/* ===== SOCIAL ICONS ===== */
.rounded_social li a {
    border-radius: 50px;
}

.social_icons, .contact_detail {
    font-size: 0;
}

    .social_icons li a {
        font-size: 18px;
        color: #687188;
        height: 36px;
        width: 36px;
        line-height: 36px;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
    }

    .social_icons li {
        display: inline-block;
        padding: 0px 5px 5px 0;
    }

    .social_icons img {
        max-width: 100%;
    }

.pl-2 a {
    color: var(--white) !important;
}

.mdi-icon {
    font-size: 20px;
}

/* ===== TABLES ===== */
table thead th {
    border-bottom: 1px solid #dee2e6 !important;
}

/* ===== CART ===== */
.cart-title h4 {
    font-size: 16px;
    font-weight: 600;
}

.cart-summary p {
    font-size: 16px;
    font-weight: 600;
}

.cart-summary .card-bdy div {
    color: var(--btn-bg-navyblue);
    font-weight: 600;
    font-size: 30px;
}

.cart-product-quantity {
    margin: 7px 0px 7px 0;
    display: block;
}

/* ===== BEST DEALS ===== */
.best-deal-section {
    margin-top: 50px;
}

    .best-deal-section .deal-body {
        background: #9ae8e35e;
        border-radius: 8px;
        padding: 80px 50px;
        position: relative;
    }

    .best-deal-section .buy-btn {
        background-color: var(--btn-bg-navyblue);
        color: #fff;
        text-decoration: none;
        border: 2px solid #000;
        font-size: 14px;
        border-radius: 50px;
        padding: 10px 30px;
        display: inline-block;
    }

    .best-deal-section span {
        font-size: 15px;
        font-weight: 500;
    }

    .best-deal-section .deal-title {
        font-size: 22px;
        font-weight: 700;
    }

    .best-deal-section .deal-short-des {
        font-size: 14px;
    }

/* ===== LOGIN ===== */
.login-page {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

    .login-page h1 {
        font-size: 30px;
        font-weight: 700;
    }

/* ===== CHECKOUT ===== */
.checkout-section h1 {
    font-size: 27px;
    font-weight: 700;
}

.checkout-section h2 {
    font-size: 20px;
    font-weight: 700;
}

.checkout-section h3 {
    font-size: 16px;
    font-weight: 700;
}

#cartpanel, .flip {
    padding: 1px;
    text-align: center;
    color: black;
    border: solid 1px #ebebeb;
    margin: auto;
    cursor: pointer;
}

#cartpanel {
    display: none;
    cursor: auto;
}

.pt-10 {
    padding-top: 10px;
}

.product_title {
    font-size: 1.2rem;
}

.tar {
    text-align: right;
}

/* ===== DASHBOARD ===== */
.dashboard_menu {
    box-shadow: 0 0px 4px 0 #e9e9e9;
}

    .dashboard_menu .nav-tabs li.nav-item a {
        text-align: left;
        padding: 12px 20px;
        border-radius: 0;
        border-bottom: 1px solid #efefef;
        color: #2b2f4c;
    }

        .dashboard_menu .nav-tabs li.nav-item a.active {
            background-color: var(--bg-navyblue);
            color: #fff;
        }

        .dashboard_menu .nav-tabs li.nav-item a i {
            margin-right: 8px;
            vertical-align: middle;
        }

.dashboard_content {
    margin: 0;
}

    .dashboard_content .card-header {
        background-color: transparent;
        border-color: #f0f0f0;
    }

        .dashboard_content .card-header * {
            margin: 0;
        }

    .dashboard_content .card {
        border-radius: 0;
        border: 0;
        box-shadow: 0 0px 4px 0 #e9e9e9;
    }

    .dashboard_content .card-body p:last-child {
        margin: 0;
    }

    .dashboard_content .table {
        margin: 0;
    }

        .dashboard_content .table thead th {
            border: 0;
            padding-top: 0;
            font-weight: 600;
        }

        .dashboard_content .table tbody tr:last-child td {
            padding-bottom: 0;
        }

        .dashboard_content .table tbody tr td {
            vertical-align: middle;
            white-space: nowrap;
        }

    .dashboard_content label {
        color: #333;
    }

        .dashboard_content label .required {
            color: #ff0000;
        }



/* ===== CONTACT ===== */
.contact-section h1 {
    font-size: 35px;
    font-weight: 800;
}

.contact-section .mdi-email,
.contact-section .mdi-cellphone {
    font-size: 40px;
}

.contact-info span:nth-child(1) {
    font-size: 15px;
    margin-top: 15px;
}

.contact-info span:nth-child(2) {
    font-size: 15px;
    margin-top: -2px;
}

/* ===== ACCORDION ===== */
.accordion {
    display: flex;
    flex-direction: column;
    font-family: "Sora", sans-serif;
    max-width: 991px;
    min-width: 320px;
    margin: 50px auto;
    padding: 0 16px;
}

    .accordion h1 {
        font-size: 22px;
        text-align: center;
        font-weight: 800;
    }

.accordion-item {
    margin-top: 16px;
    border: 1px solid #fcfcfc;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
}

    .accordion-item .accordion-item-title {
        position: relative;
        margin: 0;
        display: flex;
        width: 100%;
        font-size: 15px;
        cursor: pointer;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding: 14px 20px;
        box-sizing: border-box;
        align-items: center;
    }

    .accordion-item .accordion-item-desc {
        display: none;
        font-size: 14px;
        line-height: 22px;
        font-weight: 300;
        color: #444;
        border-top: 1px dashed #ddd;
        padding: 10px 20px 20px;
        box-sizing: border-box;
    }

    .accordion-item input[type="checkbox"] {
        position: absolute;
        height: 0;
        width: 0;
        opacity: 0;
    }

        .accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
            display: block;
        }

        .accordion-item input[type="checkbox"]:checked ~ .accordion-item-title .icon:after {
            content: "-";
            font-size: 20px;
        }

        .accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
            content: "+";
            font-size: 20px;
        }

    .accordion-item:first-child {
        margin-top: 0;
    }

    .accordion-item .icon {
        margin-left: 14px;
    }

/* ===== MODAL/LOGIN ===== */
.btn-open-login {
    background: var(--black);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    padding: 14px 25px;
    cursor: pointer;
    transition: background .2s, transform .1s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, .35);
    margin-bottom: 10%;
}

    .btn-open-login:hover {
        background: var(--primary);
        box-shadow: 0 6px 28px rgba(201,168,76,.5);
        transform: translateY(-1px);
    }

    .btn-open-login:active {
        transform: scale(.98);
    }

.modal-backdrop.in {
    opacity: .65;
}

.modal-dialog {
    max-width: 460px;
    width: 100%;
    margin: 60px auto;
}

.modal-content {
    border: none;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    overflow: hidden;
}

.modal-header {
    background: var(--bg-navyblue);
    border-bottom: none;
    padding: 28px 36px 24px;
    position: relative;
}

    .modal-header .modal-title {
        font-size: 24px;
        color: #fff;
        font-weight: 600;
        margin: 0;
        letter-spacing: -0.3px;
    }

    .modal-header .modal-subtitle {
        font-size: 13px;
        color: var(--white);
        font-weight: 300;
        margin: 6px 0 0;
    }

        .modal-header .modal-subtitle a {
            color: var(--white);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color .2s;
        }

            .modal-header .modal-subtitle a:hover {
                border-color: var(--black);
            }

    .modal-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 36px;
        width: 40px;
        height: 3px;
        background: var(--black);
        border-radius: 2px;
    }

    .modal-header .close {
        position: absolute;
        top: 20px;
        right: 24px;
        color: #666;
        opacity: 1;
        font-size: 20px;
        font-weight: 300;
        line-height: 1;
        transition: color .2s;
    }

        .modal-header .close:hover {
            color: var(--black);
        }

.modal-body {
    background: #fff;
    padding: 36px 36px 28px;
}

    .modal-body .control-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: #555;
        margin-bottom: 6px;
    }

    .modal-body .form-control {
        height: 46px;
        border: 1px solid #ddd;
        border-radius: 3px;
        font-size: 14px;
        color: #333;
        background: #fafafa;
        padding: 10px 14px;
        box-shadow: none !important;
        transition: border-color .2s, background .2s;
    }

        .modal-body .form-control::placeholder {
            color: #bbb;
            font-weight: 300;
        }

        .modal-body .form-control:focus {
            border-color: var(--black);
            background: #fff;
            outline: none;
        }

.extras-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    user-select: none;
}

    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: var(--black);
        cursor: pointer;
        flex-shrink: 0;
    }

.forgot-link {
    font-size: 13px;
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}

    .forgot-link:hover {
        border-color: var(--black);
        color: var(--black);
    }

.btn-login {
    display: block;
    width: 100%;
    height: 48px;
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

    .btn-login:hover {
        background: var(--black);
        color: #fff;
    }

    .btn-login:active {
        transform: scale(.99);
    }

.divider {
    text-align: center;
    margin: 24px 0 20px;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #ebebeb;
    }

    .divider span {
        position: relative;
        background: #fff;
        padding: 0 12px;
        font-size: 11px;
        color: #bbb;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.new-customer {
    text-align: center;
    font-size: 13px;
    color: var(--black);
    font-weight: 300;
    margin: 0;
}

    .new-customer a {
        color: #1a1a1a;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 1px solid #1a1a1a;
        transition: color .2s, border-color .2s;
        font-size: 1rem;
    }

        .new-customer a:hover {
            color: var(--black);
            border-color: var(--black);
        }

/* ===== BUTTONS ===== */
.btn-fill-out {
    background-color: var(--bg-navyblue);
    color: var(--white);
    position: relative;
    z-index: 1;
    border-width: 1px;
    border-style: solid;
    border-color: var(--bg-navyblue);
    border-image: initial;
    overflow: hidden;
}

    .btn-fill-out:hover {
        color: var(--primary-dark);
    }

.btn {
    cursor: pointer;
    line-height: normal;
    text-transform: capitalize;
    border-width: 1px;
    transition: 0.3s ease-in-out;
}

.btn-bg {
    background-color: var(--btn-bg-navyblue);
    color: #fff;
}

    .btn-bg:hover {
        background-color: var(--btn-bg-navyblue);
        color: #fff;
    }

/* ===== CATEGORY ITEMS ===== */
.cat-item {
    width: 100% !important;
    border: 2px #aaa5a5 solid;
    text-align: center;
    padding: 14px;
    border-radius: 0.25rem;
}

.checkbox-list-container {
    max-height: 250px;
    overflow: overlay;
    border: 1px solid #ebebeb;
    padding: 10px;
    background-color: #ebebeb;
}

    .checkbox-list-container li {
        margin: 0px 0px 10px 10px;
        display: flex;
    }

    .checkbox-list-container label {
        margin: 0px 0px 10px 10px;
    }

/* ===== FORM ELEMENTS ===== */
.form-check-input, .custome-checkbox {
    position: absolute;
    margin-top: .3rem;
    margin-left: 0rem;
}

    .form-check-input label {
        padding-left: 5px;
    }

    .custome-checkbox label {
        padding-left: 5px;
    }

/* ===== FLEX CONTAINER ===== */
.containerflex {
    display: flex;
    flex-wrap: wrap;
}

    .containerflex div {
        background-color: #f1f1f1;
        margin: 10px;
        padding: 10px;
        text-align: center;
    }

    .containerflex .items:hover {
        transform: scale(1.04);
    }

    .containerflex img {
        max-width: 370px;
        width: 100%;
    }

.img-responsive {
    width: 100%;
    height: auto;
}

/* ===== PADDING UTILITIES (Mobile Default) ===== */
.pl-4, .px-4 {
    padding-left: 0.1rem !important;
}

.pb-4, .py-4 {
    padding-bottom: 0.1rem !important;
}

.pr-4, .px-4 {
    padding-right: 0.1rem !important;
}

/* ===== BODY PADDING (Mobile) ===== */
body {
    padding: 10px;
}

/* ── Section heading ── */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    text-align: center;
}

.section-sub {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 36px;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── DESKTOP: single inline row (all cards in one row) ── */
.category-grid {
    display: flex; /* inline / single row on desktop */
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
    max-width: 1280px;
}

/* ── Each category card ── */
.cat-card {
    position: relative;
    flex: 1 1 0; /* equal width, no wrapping on desktop */
    min-width: 0;
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    /* card height – aspect-ratio keeps it proportional */
    aspect-ratio: 3 / 4;
}

    /* ── Image fills card ── */
    .cat-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform var(--transition);
    }

    /* ── Zoom image on hover ── */
    .cat-card:hover img {
        transform: scale(1.07);
    }

    /* ── Gradient overlay (bottom) ── */
    .cat-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.08) 55%, transparent 100% );
        pointer-events: none;
    }

/* ── Label at bottom ── */
.cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px 18px;
}

    .cat-label h3 {
        font-family: 'DM Sans', sans-serif;
        font-weight: 500;
        font-size: clamp(0.85rem, 1.2vw, 1.05rem);
        color: #fff;
        line-height: 1.2;
    }

    .cat-label span {
        font-size: 0.78rem;
        color: var(--white);
        margin-top: 3px;
        display: block;
        letter-spacing: 0.03em;
    }

/* ── Hover accent bar ── */
.cat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.cat-card:hover::before {
    transform: scaleX(1);
}
