@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Poppins:wght@500;600;700;800&display=swap');

:root {
    --rd-red: #DC143C;
    --rd-navy: #003893;
    --rd-gold: #D4AF37;
    --rd-body: #263247;
    --rd-muted: #5c6678;
    --rd-border: #e8edf5;
    --rd-shadow: 0 18px 45px rgba(0, 56, 147, 0.14);
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    color: var(--rd-body);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
button,
.navbar-nav .nav-link {
    font-family: "Poppins", sans-serif;
}

/* =====================
   TOP HEADER
===================== */

.top_header {
    font-size: 14px;
    background-color: var(--rd-red) !important;
}

.top_header p {
    margin: 8px 0;
    text-align: center;
    font-weight: 500;
}

/* =====================
   LOGO
===================== */

.logo {
    width: 210px;
    padding: 10px 0;
}


/* =====================
   NAVBAR
===================== */

.bg-navbar {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.rd_nav .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.rd_nav .container {
    min-height: 48px;
}

.navbar-toggler {
    margin: 6px 0;
    border: 0;
    box-shadow: none !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 56, 147, 0.08);
}

.navbar-nav .nav-link {
    color: var(--rd-navy);
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
    padding: 14px 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--rd-red);
}

.navbar-nav .dropdown-menu {
    border-radius: 12px;
    border: 1px solid var(--rd-border);
    box-shadow: var(--rd-shadow);
    padding: 8px 0;
}

.navbar-nav .dropdown-item {
    font-size: 13px;
    padding: 8px 16px;
    color: var(--rd-body);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: rgba(220, 20, 60, 0.08);
    color: var(--rd-red);
}



/* =====================
   SEARCH
===================== */

.form-control {
    border-radius: 30px;
    padding: 14px 20px;
    min-height: 50px;
    border-color: var(--rd-border);
}

.site-search-input::placeholder {
    color: #596275;
    opacity: 1;
}

.header-icons {
    color: var(--rd-navy);
    gap: 18px;
}

.header-icons i {
    color: var(--rd-navy);
    font-size: 25px;
}

.header-icons p {
    color: var(--rd-navy);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
}

.btn-primary {
    border-radius: 30px;
}

/* =====================
   HERO SECTION
===================== */

.btn-hero {
    display: inline-block;
    min-height: 48px;
    padding: 13px 26px;
    background-color: var(--rd-red);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    margin-top: 0;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: var(--rd-red);
    box-shadow: 0 14px 28px rgba(220, 20, 60, 0.24);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--rd-gold);
    color: var(--rd-navy);
}

.btn-hero:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-hero-secondary:hover {
    color: var(--rd-navy);
}

.hero-section.nepali-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 82px 0 72px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.84) 42%, rgba(255,255,255,0.62) 100%),
        url("../assets/himalayan-hero.svg") center/cover no-repeat;
    overflow: hidden;
}

.hero-copy {
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    color: var(--rd-red);
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.16);
    border-radius: 999px;
    padding: 8px 14px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-copy h1 {
    color: var(--rd-navy);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-copy p {
    color: var(--rd-muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-products {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    gap: 14px;
    align-items: end;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--rd-shadow);
    backdrop-filter: blur(6px);
}

.hero-product {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(0, 56, 147, 0.08);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 12px 24px rgba(0, 56, 147, 0.1);
}

.hero-product-main {
    grid-column: span 2;
    grid-row: span 2;
}

.carousel-caption {

    left: 8%;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: left;
    width: 40%;
}

.carousel-caption h1 {

    font-size: 45px;
    font-weight: 700;
}

.carousel-caption p {

    font-size: 18px;
    margin-top: 10px;
}

.carousel-inner img {
    height: 550px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0;
}

.hero-carousel-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-carousel-section .carousel-item {
    min-height: 520px;
}

.hero-carousel-section .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(6, 24, 48, 0.72) 0%, rgba(6, 24, 48, 0.42) 42%, rgba(6, 24, 48, 0.04) 100%);
    pointer-events: none;
}

.hero-carousel-section .carousel-inner img {
    height: 520px;
    object-fit: cover;
}

.hero-carousel-caption {
    z-index: 2;
    left: 8%;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: min(560px, 84vw);
    padding: 0;
    text-align: left;
}

.hero-carousel-caption h1 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-carousel-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 24px;
}

.hero-carousel-section .carousel-indicators {
    z-index: 3;
    margin-bottom: 24px;
}

.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
    z-index: 3;
    width: 7%;
}

/* =====================
   SECTION TITLES
===================== */

.category-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.category-title h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--rd-navy);
}

.category-title::before,
.category-title::after {
    content: "";
    width: 120px;
    height: 40px;
    background: url("../assets/borderbefore.png") center no-repeat;
    background-size: contain;
}

.category-title::after {
    transform: scaleX(-1);
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}



/* =====================
   CATEGORY BOX
===================== */

.home_roundbox {
    transition: .3s;
}

.home_roundbox:hover {
    transform: translateY(-8px);
}

.category-img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 14px 34px rgba(0, 56, 147, 0.12);
    transition: .3s;
}

.home_roundbox:hover .category-img {
    border-color: var(--rd-gold);
}

.home_roundbox p {
    font-weight: 600;
    color: var(--rd-navy);
}

/* =====================
   PRODUCT CARD
===================== */

.product_box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s;
    height: 100%;
}

.product_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.product_image {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
}

.product_image img {
    max-height: 220px;
    object-fit: contain;
}

.product_title h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.product_price p {
    color: #dc3545;
    font-size: 20px;
    font-weight: 700;
}

.product_button .btn {
    width: 100%;
    border-radius: 8px;
}
/* =====================
BEST SELLER SLIDER
===================== */


.best-slider-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}


.best-slider{

    overflow:hidden;
    scroll-behavior:smooth;

}


.best-slider .product-card{

    min-width:220px;

}



/* RECENT PRODUCT SLIDER */

.slider-wrapper{

position:relative;

}


.product-slider{

overflow:hidden;
scroll-behavior:smooth;

}


.slider-btn{

border:none;
color:#dc3545;
width:40px;
height:40px;
border-radius:50%;
position:absolute;
z-index:5;
top:50%;
transform:translateY(-50%);
display:flex;
align-items:center;
justify-content:center;

}


.slider-btn.left{

left:-20px;

}


.slider-btn.right{

right:-20px;

}

/*
.slider-btn:hover{

background:#b02a37;

} */

/* =====================
  Recent products
===================== */

.product_box{
    background:#fff;
    border:1px solid #eee;
    border-radius:8px;
    overflow:hidden;
    transition:.3s;
    height:100%;
}

.product_box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0, 0, 0, 0.12);
}

.recent_image {
    height:300px;
    width:100%;
    display:flex;
    border-radius:4px;
    justify-content:center;
    align-items:center;
    background:#fafafa;
    overflow:hidden;
}

.recent_image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product_title h2{
    font-size:18px;
    font-weight:600;
    margin-top:15px;
    text-align:center;
}

.product_price p{
    color: #666;
    font-size:20px;
    font-weight:500;
    font-size:large;
    text-align:center;
}

 .old-price {
    position: relative;
    display: inline-block;
}

.old-price::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px solid currentColor;
}

.product_button .btn{
    width:100%;
    border-radius:8px;
}

.col-auto text-center::before
.col-auto text-center::after
{
    content: "";
    width: 200px;
    height: 50px;
    background: url("../assets/borderbefore.png") no-repeat center;
    background-size: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

}
/* Product slider */

.slider-wrapper{
    position:relative;
}


/* Product slider */

.product-slider{
    display:flex;
    gap:20px;
    overflow:hidden;
    scroll-behavior:smooth;
}


.product-slider .col-md-3{
    flex:0 0 25%;
}

/* Transparent arrows on image */

/* .slider-btn{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    z-index:10;

    width:40px;
    height:40px;

    border-radius:50%;
    border:none;

    background:rgba(0,0,0,0.3);

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

} */
 .slider-btn{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    z-index:10;

    width:35px;
    height:50px;

    border:none;

    background:transparent;

    color:white;

    font-size:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

}

/* .slider-btn:hover{

    background:transparent;
    /* color:#dc3545;

} */

/* arrow positions */

.slider-btn.left{

    left:10px;

}


.slider-btn.right{

    right:10px;

}
/* new section */
.feature-bar i{
    font-size: 28px;
    margin-right: 12px;
    color: #dc3545;
}

.feature-bar .title{
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.feature-bar .desc{
    font-size: 11px;
    color: #777;
}

/* vertical line between items */
.feature-item{
    position: relative;
    padding: 10px 15px;
}

/* divider line */
.feature-item:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #b98b8b;
}

/* =====================
   FEATURED COLLECTION
===================== */

.card {
    border: none;
    overflow: hidden;
    border-radius: 15px;
}

.card img {
    transition: .4s;
}

.card:hover img {
    transform: scale(1.05);
}

.card-img-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

/* =====================
   FOOTER
===================== */

/*
Footer */
.footer {
      width: 100%;
      max-width: none;
      background: #0a2566;
      color: #fff;
      margin-top: 0;
      overflow: hidden;
}

/* Top Footer */
.footer-top {
      padding: 40px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


 .mail-logo {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    padding: 15px;
}
.footer-top h3 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 10px;
}

.footer-top p {
      margin-bottom: 0;
}

/* Middle Footer */

.footer-middle {
      padding: 60px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
      width: 220px;
      max-width: 100%;
}

.footer-middle h4 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 20px;
}

/* Footer Links */


.footer-links{
    list-style:none;
    padding-left:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links li:hover{
    color:#ff4d4d;
    cursor:pointer;
}
/* Social Icons */

.social-svg {
      margin-top: 15px;
}

.social-svg span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.1);
      background: #fff;
      border-radius: 50%;
      margin-right: 10px;
      cursor: pointer;
      transition: 0.3s;
}

.social-svg span:hover {
      background: grey;
}

.social-svg img {
      width: 20px;
      height: 20px;
}

/* Bottom Footer */

.footer-bottom {
      padding: 20px 0;
      font-size: 14px;
}

/* Payment Icons */

.payment-icons span {
      display: inline-block;
      background: #fff;
      color: #000;
      padding: 8px 12px;
      margin-left: 8px;
      border-radius: 4px;
      font-weight: 600;
}
.payment-icons span:hover {
      background: #b02a37;
      color: #fff;
}






/* =====================
   MOBILE
===================== */

@media(max-width:768px) {

    .carousel-item img {
        height: 350px;
    }

    .carousel-caption h5 {
        font-size: 28px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .category-title::before,
    .category-title::after {
        display: none;
    }

    .category-img {
        width: 120px;
        height: 120px;
    }

    .footer {
        text-align: center;
    }

    .payment-icons {
        margin-top: 15px;
    }
}




.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    height: 350px;
    object-fit: cover;
    transition: 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-img-overlay {
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
}

.card-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card .btn {
    border-radius: 30px;
    padding: 10px 24px;
}

/* =====================
   PRODUCT CARD & BUTTONS
   ===================== */
.product-card {
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1) !important;
}

.product-img-wrap {
    height: 200px;
}

.product-img {
    max-height: 140px;
    object-fit: contain;
}

.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 18px rgba(220, 53, 69, 0.22);
}

.btn-nf-red {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    border-color: #dc3545;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 8px 18px rgba(220, 53, 69, 0.16);
}

.btn-nf-red:hover {
    background: linear-gradient(135deg, #b02a37 0%, #921f2b 100%);
    border-color: #b02a37;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(176, 42, 55, 0.24);
}

/* cart button */

/* Header links (Account, Wishlist, Cart) */
.header-icon-link {
    text-decoration: none;
    color: #222;
}

.header-icon-link:hover {
    text-decoration: none;
    color: #dc3545;
}

.header-icon-link:visited {
    color: #222;
}

.header-icon-link i,
.header-icon-link p {
    color: inherit;
}




/* =====================
   HOME BLOG SECTION
===================== */

.blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.blog-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #dc3545;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.blog-meta i {
    color: #dc3545;
    margin-right: 4px;
}

.blog-title {
    font-size: 19px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    transition: .3s;
}

.blog-card:hover .blog-title {
    color: #dc3545;
}

.blog-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-btn {
    font-size: 14px;
    font-weight: 600;
    color: #dc3545;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
    align-self: flex-start;
}

.blog-btn:hover {
    gap: 10px;
    color: #b02a37;
}



/* ==================================
   MOBILE RESPONSIVE DESIGN
================================== */

@media (max-width: 768px) {

    /* Top Header */
    .top_header .row {
        text-align: center;
    }

    .top_header p {
        margin: 5px 0;
        font-size: 12px;
    }

    /* Header */
    .logo {
        width: 140px;
        margin: 0 auto 15px;
    }

    .header .col-md-3,
    .header .col-md-6 {
        margin-bottom: 15px;
    }

    .header-icons {
        justify-content: space-around !important;
        margin-top: 10px;
    }

    .header-icons i {
        font-size: 22px;
    }

    .header-icons p {
        font-size: 12px;
        margin-bottom: 0;
    }

    /* Search */
    .form-control {
        padding: 10px 15px;
    }

    /* Hero Section */
    .carousel-inner img {
        height: 300px;
    }

    .carousel-caption {
        width: 90%;
        left: 5%;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 24px;
    }

    .carousel-caption p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .btn-hero {
        padding: 10px 18px;
        font-size: 13px;
    }

    /* Section Titles */
    .category-title {
        margin-bottom: 25px;
    }

    .category-title h3 {
        font-size: 24px;
    }

    .category-title::before,
    .category-title::after {
        display: none;
    }

    /* Categories */
    .home_roundbox {
        margin-bottom: 20px;
    }

    .category-img {
        width: 110px;
        height: 110px;
    }

    /* Best Seller Slider */
    .best-slider .product-card {
        min-width: 180px;
    }

    /* Recent Products Slider */
    .product-slider .col-md-3 {
        flex: 0 0 80%;
    }

    .recent_image {
        height: 220px;
    }

    .product_title h2 {
        font-size: 16px;
    }

    .product_price p {
        font-size: 16px;
    }

    /* Slider Arrows */
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }

    .slider-btn.left {
        left: 0;
    }

    .slider-btn.right {
        right: 0;
    }

    /* Feature Bar */
    .feature-item {
        justify-content: center;
        text-align: center;
    }

    .feature-item::after {
        display: none;
    }

    .feature-bar i {
        margin-right: 10px;
        font-size: 24px;
    }

    /* Featured Collections */
    .card img {
        height: 250px;
    }

    .card-title {
        font-size: 22px;
    }

    /* Blog */
    .blog-img-wrap {
        height: 200px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }

    .footer {
        text-align: center;
    }

    .footer-top h3 {
        margin-top: 15px;
    }

    .footer-logo {
        width: 160px;
        margin-bottom: 15px;
    }

    .social-svg {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-middle .col-md-3 {
        margin-bottom: 30px;
    }

    .payment-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}



/* ===== SHOP PAGE STYLES ===== */

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

:root {
    --primary-color: #DC3444;
    --secondary-color: #F7931E;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f9f9f9;
}

/* ===== SIDEBAR FILTERS ===== */
.sidebar {
    margin-left: -20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-group {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #dc3545;
    display: inline-block;
    padding-bottom: 10px;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
    margin-left: -20px;
}

.category-list a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
    margin-left: 5px;
}

.category-list i {
    margin-right: 8px;
    font-size: 12px;
}

/* Price Filter */
.price-filter {
    display: flex;
    flex-direction: column;
}

.price-range {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    margin-bottom: 10px;
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

.price-display {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

.btn-filter {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background-color: #0A2566;
}

/* Color & Size & Brand Filters */
.color-filter,
.size-filter,
.brand-filter {
    display: flex;
    flex-direction: column;
}

.color-filter label,
.size-filter label,
.brand-filter label {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.color-filter input,
.size-filter input,
.brand-filter input {
    margin-right: 8px;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

/* ===== SHOP SECTION ===== */
.shop-section {
    background-color: #fff;
    padding: 30px 0;
}

/* Filter Bar */

.filter-bar {
    background: #f8f9fa;
    padding: 16px 24px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Quick Filter */

.quick-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--primary-color);
    color: white;

    padding: 10px 18px;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
    transition: all .25s ease;
}

.quick-filter:hover {
    transform: translateY(-1px);
    background: #0A2566;
}

.quick-filter i {
    font-size: 15px;
}

/* Sort By */

.sort-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sort-by label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin: 0;
}

.sort-by .form-select {
    width: 420px;
    height: 42px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 14px;

    box-shadow: none;
}

.sort-by .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Showing Text */

.showing-text {
    text-align: right;

    font-size: 14px;
    color: #666;

    margin-bottom: 0;
}




/* ===== PRODUCTS GRID ===== */
.products-grid {
    margin-bottom: 50px;
}

.product-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color) !important;
    background-color: #fff !important;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.product-card:hover {
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12) !important;
    transform: translateY(-6px);
    border-color: var(--primary-color) !important;
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eceff4;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Bootstrap Badge Customization */
.badge {
    font-size: 11px;
    font-weight: 600;
    padding: 0.4rem 0.8rem !important;
}

.badge.bg-warning {
    background-color: #FF6B35 !important;
}

.badge.bg-danger {
    background-color: #FF5252 !important;
}

.badge.bg-success {
    background-color: #4CAF50 !important;
}

.badge.bg-info {
    background-color: #FF9800 !important;
}

/* Product Info */
.product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h6 {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 28px;
}

/* Rating */
.rating {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.rating i {
    font-size: 12px;
    color: #FFB800;
}

/* Price */
.price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.original-price {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== PAGINATION ===== */
.pagination-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.page-item {
    list-style: none;
}

.page-link {
    color: var(--text-dark);
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .col-lg-3 {
        flex: 0 0 calc(33.333% - 12px);
    }

    .col-lg-2 {
        flex: 0 0 25%;
    }

    .col-lg-10 {
        flex: 0 0 75%;
    }
}

@media (max-width: 768px) {
    .sidebar {
        margin-bottom: 30px;
    }

    .col-md-3 {
        flex: 0 0 calc(50% - 8px);
    }

    .col-md-4 {
        flex: 0 0 calc(50% - 8px);
    }

    .col-md-9 {
        flex: 0 0 100%;
    }

    .filter-bar {
        padding: 10px;
    }

    .filter-bar .row {
        flex-direction: column;
        gap: 15px;
    }

    .sort-by,
    .quick-filter {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .col-sm-6 {
        flex: 0 0 calc(50% - 8px);
    }

    .product-image {
        height: 200px;
    }

    .product-card {
        margin-bottom: 15px;
    }

    .sidebar {
        display: none;
    }

    .shop-section .col-lg-10 {
        flex: 0 0 100%;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .page-link {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* ===== UTILITY CLASSES ===== */
.g-4 > * {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-top: calc(var(--bs-gutter-y) * -1);
}

.g-4 > * {
    margin-top: var(--bs-gutter-y);
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.container{
    width:90%;
}
.product_image{
    width: 463px;
    height: 455px;
    object-fit:cover;
    border:1px solid #040000dd;
    padding:0px;

}
.star{
    color: #ffb400;
}
.maintext{
    font-size: 30px;
}
.money{
    font-size: 25px;
    font-weight: 700;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link
 {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-danger);
}
.product_image img {
    max-height: 466px;
    object-fit: contain;
    border-radius: 5px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.checkout-page{
    background:#fff;

}


.checkout-section{
    padding:50px 0;
}


.checkout-box{

    background:white;

    padding:30px;

    border-radius:15px;

    border:1px solid #eee;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}



.checkout-box h3{

    font-size:20px;

    font-weight:600;

}




.checkout-product{

    display:flex;

    gap:20px;

    align-items:center;

}



.checkout-product img{

    width:80px;

    height:80px;

    object-fit:cover;

    border-radius:10px;

}




.checkout-box label{

    font-size:14px;

    margin-bottom:8px;

}




.checkout-box input,
.checkout-box select{

    height:45px;

    border-radius:8px;

}


.summary-row{

    display:flex;

    justify-content:space-between;

    font-size:16px;

    margin:15px 0;

}


.total{

    font-size:20px;

    font-weight:700;

    color:#dc3545;

}



.header-icon-link{
    text-decoration: none;
    color: inherit;
}

.header-icon-link:hover{
    text-decoration: none;
    color:#dc3545;
}

body.cart-page {
	background: #fff;
}

.cart-section {
	padding-top: 36px;
	padding-bottom: 56px;
}

.cart-panel,
.cart-summary-panel {
	background: #f6f7fb;
	border-radius: 18px;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
	border: 1px solid #eceef4;
	overflow: hidden;
}

.cart-table {
	min-width: 1080px;
	margin-bottom: 0;
}

.cart-table thead th {
	padding: 26px 18px;
	font-size: 18px;
	font-weight: 600;
	color: #343a40;
	background: #fff;
	border-color: #e7eaf0;
}

.cart-table tbody td {
	padding: 24px 18px;
	border-color: #e7eaf0;
	vertical-align: middle;
}

.cart-actions-head {
	width: 210px;
}

.btn-clear-cart,
.btn-apply-coupon,
.btn-checkout,
.btn-back-shopping {
	border-radius: 8px;
	font-weight: 500;
	border: 0;
	background: #dc3545; /* site red */
	color: #fff;
	transition: 0.15s ease;
}

.btn-clear-cart {
	padding: 12px 24px;
	font-size: 16px;
}

.btn-clear-cart:hover,
.btn-apply-coupon:hover,
.btn-checkout:hover,
.btn-back-shopping:hover {
	background: #b02a37; /* darker red */
	color: #fff;
	transform: translateY(-1px);
}

.cart-product {
	display: flex;
	align-items: center;
	gap: 22px;
}

.cart-product-image {
	flex: 0 0 78px;
	width: 78px;
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #fafafa;
	border: 1px solid #edf0f4;
	overflow: hidden;
}

.cart-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-product-info h5 {
	font-size: 15px;
	font-weight: 500;
	color: #343a40;
	margin-bottom: 12px;
	max-width: 520px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cart-product-info p {
	font-size: 10px;
	color: #343a40;
	margin-bottom: 4px;
}

.cart-money {
	font-size: 14px;
	color: #495057;
	font-weight: 500;
}

.quantity-group {
	display: inline-flex;
	align-items: center;
	border: 1px solid #dde2ea;
	border-radius: 0;
	overflow: hidden;
	background: #fff;
}

.quantity-group button {
	width: 62px;
	height: 58px;
	border: 0;
	background: #fff;
	color: #9098a6;
	font-size: 20px;
	line-height: 1;
	border-right: 1px solid #dde2ea;
	border-left: 1px solid #dde2ea;
}

.quantity-group button:first-child {
	border-left: 0;
}

.quantity-group button:last-child {
	border-right: 0;
}

.quantity-group span {
	width: 70px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #7c8694;
	border-left: 1px solid #dde2ea;
	border-right: 1px solid #dde2ea;
}

.btn-remove-item {
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ff5a3c;
	font-size: 19px;
}

.cart-summary-panel {
	padding: 34px 30px 36px;
}

.summary-box {
	border: 1px solid #e7eaf0;
	border-radius: 14px;
	overflow: hidden;
	background: #f6f7fb;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.summary-table {
	margin-bottom: 0;
}

.summary-table th,
.summary-table td {
	padding: 18px 20px;
	font-size: 17px;
	border-color: #e7eaf0;
	background: #fff;
}

.summary-table th {
	font-weight: 600;
	color: #343a40;
}

.summary-table td {
	text-align: right;
	font-weight: 500;
	color: #495057;
}

.summary-total-row th,
.summary-total-row td {
	font-size: 18px;
	font-weight: 700;
	background: #fff8f1;
}

.coupon-feedback {
	min-height: 24px;
	font-size: 14px;
}

.cart-empty-message {
	padding: 18px 0;
	color: #7c8694;
}

.cart-empty-message i {
	display: block;
	font-size: 42px;
	margin-bottom: 10px;
	color: #ff7600;
}

.cart-empty-message p {
	font-size: 18px;
	font-weight: 600;
	color: #343a40;
	margin-bottom: 4px;
}

.cart-empty-message a {
	color: #ff7600;
	font-weight: 600;
	text-decoration: none;
}

.cart-empty-message a:hover {
	text-decoration: underline;
}

.coupon-row {
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
}

.coupon-input {
	width: min(340px, 100%);
	border-radius: 6px;
	border: 1px solid #dfe4eb;
	padding: 14px 18px;
	box-shadow: none;
}

.coupon-input::placeholder {
	color: #8f96a3;
}

.btn-apply-coupon,
.btn-checkout,
.btn-back-shopping {
	padding: 14px 26px;
	font-size: 16px;
}

.btn-back-shopping {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.subtotal-line {
	font-size: 20px;
	color: #7c7c7c;
	margin-bottom: 0;
}

.subtotal-line span {
	color: #343a40;
	font-weight: 500;
}

.cart-checkout-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.btn-checkout {
	margin-top: 0;
}

@media (max-width: 991.98px) {
	.cart-checkout-wrap {
		align-items: flex-start;
		margin-top: 8px;
	}

	.cart-summary-panel {
		padding: 28px 22px 30px;
	}
}

@media (max-width: 767.98px) {
	.cart-section {
		padding-top: 24px;
		padding-bottom: 40px;
	}

	.cart-product {
		gap: 14px;
	}

	.cart-product-info h5 {
		font-size: 17px;
		max-width: 260px;
	}

	.cart-product-info p,
	.cart-money,
	.subtotal-line {
		font-size: 15px;
	}

	.btn-clear-cart,
	.btn-apply-coupon,
	.btn-checkout,
	.btn-back-shopping {
		width: 100%;
		justify-content: center;
	}

	.coupon-row {
		gap: 12px;
	}

	.coupon-input {
		width: 100%;
	}

	.summary-table th,
	.summary-table td {
		font-size: 16px;
	}

	.summary-total-row th,
	.summary-total-row td {
		font-size: 17px;
	}
}
/* =====================
   SIMPLE SINGLE BLOG
===================== */

/* Breadcrumb & Meta in Hero */
.blog-breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.blog-breadcrumb span {
    color: #fff;
}

.blog-breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
}

.blog-breadcrumb span:last-child {
    color: #dc3545;
    font-weight: 500;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 14px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta i {
    color: #dc3545;
}

/* Simple Thumbnail (Fixes the too big image issue) */
.simple-blog-thumbnail {
    max-width: 750px;
    margin: 0 auto 30px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.simple-blog-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.4s ease;
}

.simple-blog-thumbnail:hover img {
    transform: scale(1.03);
}

/* Simple Post Content */
.simple-post-content {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.simple-post-content p {
    margin-bottom: 20px;
}

.simple-post-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #222;
}

.simple-post-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.simple-post-content ul li {
    margin-bottom: 10px;
}

/* Custom Blockquote */
.simple-blockquote {
    background: #f9f9f9;
    border-left: 4px solid #dc3545;
    padding: 25px 30px;
    margin: 30px 0;
    position: relative;
    border-radius: 0 10px 10px 0;
}

.simple-blockquote i {
    color: #dc3545;
    font-size: 40px;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.2;
}

.simple-blockquote p {
    font-size: 18px;
    font-style: italic;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Post Footer (Tags & Share) */
.post-tags .tag-item, .post-share .share-icon {
    background: #f4f4f4;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-left: 5px;
    transition: .3s;
    display: inline-block;
}

.post-tags .tag-item:hover, .post-share .share-icon:hover {
    background: #dc3545;
    color: #fff;
}

/* Author Box */
.simple-author-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: .3s;
}

.simple-author-box:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.simple-author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dc3545;
    flex-shrink: 0;
}

.simple-author-box h5 {
    margin-bottom: 5px;
    color: #222;
    font-weight: 700;
}

.simple-author-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    .simple-author-box {
        flex-direction: column;
        text-align: center;
    }
    .simple-blog-thumbnail img {
        height: 250px;
    }
}




/* =====================
   SIMPLE SINGLE BLOG
===================== */




/* Responsive adjustments */
@media (max-width: 768px) {
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }

    .simple-author-box {
        flex-direction: column;
        text-align: center;
    }

    .simple-blog-thumbnail img {
        height: 250px;
    }
}
/* =====================
   PAGE HERO SECTION
===================== */

.page-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/hero_banner.png') center center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
}

.page-hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-hero-section p {
    font-size: 18px;
    opacity: 0.9;
}

/* =====================
   BLOG CARDS
===================== */

.blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.blog-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #dc3545;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.blog-meta i {
    color: #dc3545;
    margin-right: 4px;
}

.blog-title {
    font-size: 19px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    transition: .3s;
}

.blog-card:hover .blog-title {
    color: #dc3545;
}

.blog-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-btn {
    font-size: 14px;
    font-weight: 600;
    color: #dc3545;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
}

.blog-btn:hover {
    gap: 10px;
    color: #b02a37;
}

/* =====================
   PAGINATION
===================== */

.custom-pagination .page-item .page-link {
    border: 1px solid #dee2e6;
    color: #333;
    border-radius: 8px;
    margin: 0 4px;
    padding: 8px 14px;
    transition: .3s;
}

.custom-pagination .page-item .page-link:hover {
    background-color: #f8f9fa;
}

.custom-pagination .page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

/* =====================
   BLOG SIDEBAR
===================== */

.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dc3545;
    display: inline-block;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #444;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f4f4f4;
    transition: .3s;
}

.sidebar-categories li a:hover {
    color: #dc3545;
    padding-left: 5px;
}

.sidebar-categories li a span {
    background: #f4f4f4;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    color: #666;
}

.recent-post {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f4f4f4;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.recent-post span {
    font-size: 12px;
    color: #888;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tags a {
    text-decoration: none;
    background: #f4f4f4;
    color: #555;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    transition: .3s;
}

.sidebar-tags a:hover {
    background: #dc3545;
    color: #fff;
}

/* =====================
   CLIENT POLISH PASS
===================== */

.btn-danger,
.bg-danger,
.text-danger {
    --bs-danger-rgb: 220, 20, 60;
}

.btn-danger {
    background-color: var(--rd-red);
    border-color: var(--rd-red);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    min-height: 44px;
}

.btn-danger:hover {
    background-color: #b81032;
    border-color: #b81032;
}

.text-danger {
    color: var(--rd-red) !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 56, 147, 0.08);
    transition: box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 34px rgba(0, 56, 147, 0.14);
}

.header {
    padding: 10px 0;
    transition: padding 0.2s ease;
}

.logo {
    width: 220px;
    padding: 12px 0;
    transition: width 0.2s ease, padding 0.2s ease;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.site-search-input {
    min-height: 54px;
    border-color: var(--rd-border);
    box-shadow: 0 8px 22px rgba(0, 56, 147, 0.06);
}

.site-search-input::placeholder {
    color: #4f5b70;
    opacity: 1;
}

.header-icons {
    gap: 18px;
    color: var(--rd-navy);
}

.header-icons > div,
.header-icon-link {
    color: var(--rd-navy);
}

.header-icons i {
    color: var(--rd-navy);
    font-size: 26px;
}

.header-icons p {
    color: var(--rd-navy);
    font-weight: 600;
    margin-bottom: 0;
}

.site-header.is-scrolled .top_header {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
    transform: translateY(-100%);
    transition: max-height 0.2s ease, opacity 0.2s ease, padding 0.2s ease, transform 0.2s ease;
}

.site-header.is-scrolled .header {
    padding-top: 6px;
    padding-bottom: 6px;
}

.site-header.is-scrolled .logo {
    width: 180px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.site-header.is-scrolled .header-icons i {
    font-size: 22px;
}

.site-header.is-scrolled .header-icons p {
    font-size: 12px;
}

.site-header.is-scrolled .navbar-nav .nav-link {
    padding-top: 8px;
    padding-bottom: 8px;
}

.header-count-link,
.header-count-link:hover {
    text-decoration: none;
}

.header-count-icon {
    position: relative;
    display: inline-flex;
}

.header-count-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--rd-red);
    color: #fff;
    font-size: 11px;
    line-height: 20px;
    font-weight: 700;
}

.navbar-nav {
    width: 100%;
    justify-content: center;
    gap: 0;
}

.navbar-nav .nav-link {
    color: var(--rd-navy);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 11px;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--rd-red);
}

.hero-section.nepali-hero {
    min-height: 620px;
    padding: 82px 0 72px;
}

.category-img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    background: #fff;
}

.product-card {
    min-height: 372px;
    border-color: var(--rd-border) !important;
    position: relative;
}

.product-img-wrap {
    height: 190px;
}

.product-img {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
}

.btn-nf-red {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--rd-red), #a90f2f);
    border-color: var(--rd-red);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(220, 20, 60, 0.2);
}

.badge-sale {
    background: linear-gradient(135deg, var(--rd-red), #a90f2f);
}

.wishlist-form {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.wishlist-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--rd-border);
    border-radius: 999px;
    background: #fff;
    color: var(--rd-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0, 56, 147, 0.12);
}

.wishlist-toggle.active {
    background: var(--rd-red);
    color: #fff;
    border-color: var(--rd-red);
}

.store-alert {
    border-radius: 10px;
}

.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.cart-product-cell img,
.checkout-product-row img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border: 1px solid var(--rd-border);
    border-radius: 8px;
    background: #fff;
    padding: 6px;
}

.cart-quantity-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-input {
    width: 76px;
    min-height: 38px;
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
}

.checkout-product-row {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.checkout-product-row p {
    margin-bottom: 2px;
    font-weight: 700;
}

.checkout-product-row span {
    color: var(--rd-muted);
    font-size: 13px;
}

a,
.footer-links li:hover {
    color: inherit;
}

@media (max-width: 991.98px) {
    .hero-section.nepali-hero {
        min-height: auto;
        padding: 56px 0 46px;
    }

    .hero-copy {
        text-align: center;
        margin: 0 auto;
    }

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-products {
        grid-template-columns: repeat(4, minmax(66px, 1fr));
        gap: 10px;
        padding: 14px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .top_header {
        display: none;
    }

    .header {
        padding: 8px 0 10px;
    }

    .logo {
        width: 210px;
        margin: 0 auto 12px;
        padding: 14px 0;
    }

    .site-search-input {
        min-height: 52px;
    }

    .header-icons {
        margin-top: 12px;
    }

    .header-icons i {
        font-size: 25px;
    }

    .navbar-nav .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 12px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
        min-height: 50px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-carousel-section .carousel-item,
    .hero-carousel-section .carousel-inner img {
        height: 420px;
        min-height: 420px;
    }

    .hero-carousel-section .carousel-item::before {
        background: linear-gradient(180deg, rgba(6, 24, 48, 0.7) 0%, rgba(6, 24, 48, 0.38) 100%);
    }

    .hero-carousel-caption {
        left: 6%;
        width: 88%;
        text-align: left;
    }







    

    .hero-carousel-caption h1 {
        font-size: 32px;
    }

    .hero-carousel-caption p {
        font-size: 15px;
        margin-bottom: 18px;
    }

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

    .hero-product-main {
        grid-column: span 1;
        grid-row: span 1;
    }

    .category-img {
        width: 145px;
        height: 145px;
    }

    .home_category {
        margin-top: 32px !important;
    }

    .product-card {
        min-height: 350px;
    }

    .product-img-wrap {
        height: 170px;
    }
}

@media (max-width: 420px) {
    .logo {
        width: 195px;
    }

    .hero-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-img {
        width: 132px;
        height: 132px;
    }
}

/* =====================
   REFERENCE STYLE HEADER
===================== */

/* =====================
   TOP HEADER
===================== */

.top_header {
    font-size: 14px;
}

.top_header p {
    margin: 8px 0;
    text-align: center;
    font-weight: 500;
}

/* =====================
   LOGO
===================== */

.logo {
    width: 180px;
}

.logo img {
    width: 120%;
}

/* =====================
   HEADER
===================== */

.header {
    padding: 10px 0 8px;
}

.header .input-group {
    width: 100%;
    height: 65px;
}

.header .input-group .form-control {
    border-radius: 30px 0 0 30px;
    padding: 12px 20px;
    box-shadow: none;
}

.header .input-group .btn {
    border-radius: 0 30px 30px 0;
    min-width: 58px;
}

.header-icons {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    gap: 10px;
}

.header-icons > div {
    min-width: 70px;
}

.header-icon-link {
    color: var(--rd-body);
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.header-icon-link:hover {
    color: var(--rd-red);
}

.header-icon-link i {
    font-size: 24px;
}

.header-icon-link p {
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 500;
}

/* =====================
   NAVBAR
===================== */

.bg-navbar {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.rd_nav .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.rd_nav .container {
    min-height: 42px;
}

.navbar-toggler {
    margin: 6px 0;
    border: 0;
    box-shadow: none !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 56, 147, 0.08);
}

.navbar-nav .nav-link {
    color: var(--rd-navy);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
    padding: 14px 10px;
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--rd-red);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.navbar-nav .dropdown-menu {
    border-radius: 12px;
    border: 1px solid var(--rd-border);
    box-shadow: var(--rd-shadow);
    padding: 8px 0;
}

.navbar-nav .dropdown-item {
    font-size: 13px;
    padding: 8px 16px;
    color: var(--rd-body);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: rgba(220, 20, 60, 0.08);
    color: var(--rd-red);
}

.site-header.is-scrolled .top_header {
    display: none;
}

.site-header.is-scrolled .header {
    padding: 6px 0 6px;
}

.site-header.is-scrolled .logo {
    width: 146px;
}

.site-header.is-scrolled .rd_nav .container {
    min-height: 38px;
}

.site-header.is-scrolled .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (max-width: 991.98px) {
    body {
        overflow-x: hidden;
    }

    .top_header {
        display: none;
    }

    .header {
        padding: 12px 0 16px;
    }

    .header .row {
        row-gap: 12px;
    }

    .header .logo {
        width: 144px;
        margin: 0 auto;
    }

    .header .col-md-6,
    .header .col-md-3 {
        width: 100%;
    }

    .header-icons {
        justify-content: center !important;
        gap: 18px;
        flex-wrap: wrap;
    }

    .header-icons > div {
        min-width: 70px;
    }

    .header-icons i {
        font-size: 22px;
    }

    .header-icons p {
        font-size: 12px;
        margin-bottom: 0;
    }

    .rd_nav .navbar {
        padding: 8px 0;
    }

    .rd_nav .navbar-nav {
        padding: 10px 0;
        gap: 4px;
    }

    .rd_nav .navbar-nav .nav-link {
        padding: 10px 14px;
    }
}


.header-icon-link.dropdown-toggle::after {
    display: none !important;
}







/* ==========================
   USER DASHBOARD
========================== */

body{
    background:#ffffff;
}

/* Dashboard Section */

.dashboard{
    background:#ffffff;
    padding:35px 0;
}

/* Sidebar */

.list-group{
    border-radius:5px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.list-group-item{
    background:#f6f7f9 !important;
    border:1px solid #e9ecef !important;
    color:#495057 !important;
    font-weight:500;
    font-size:14px;
    padding:12px 16px;
    transition:.3s;
}

.list-group-item i{
    margin-right:8px;
    font-size:15px;
}

/* Active */

.list-group-item.active{
    background:#dc3545 !important;
    border-color:#dc3545 !important;
    color:#fff !important;
}

.list-group-item.active i{
    color:#fff !important;
}

/* Hover */

.list-group-item:hover{
    background:#eceff3 !important;
    color:#dc3545 !important;
}

.list-group-item.active:hover{
    background:#dc3545 !important;
    color:#fff !important;
}

/* Cards */

.card{
    background:#f6f7f9;
    border:none;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 12px rgba(0,0,0,.12);
}

.card-body{
    padding:18px;
}

/* Welcome */

.card h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:8px;
}

.card p{
    color:#7c8694;
    font-size:14px;
    margin-bottom:0;
}

/* Icons */

.card i{
    font-size:38px;
    color:#dc3545;
}

/* Numbers */

.card h3{
    font-size:24px;
    font-weight:600;
    margin-top:5px;
}

.card h5{
    margin-top:12px;
    margin-bottom:5px;
    font-size:17px;
    font-weight:600;
}

/* Account Card */

.card-header{
    background:#dc3545 !important;
    color:#fff !important;
    border:none;
    padding:12px 18px;
    font-size:16px;
    font-weight:600;
}

/* Account Details */

.card strong{
    font-size:14px;
}

.card .card-body p{
    font-size:14px;
}

/* Button */

.btn-danger{
    border-radius:25px;
    padding:8px 22px;
    font-size:14px;
}































/* ==========================
      LOGIN PAGE
========================== */

.login-page{
    background:#ffffff;
    padding:70px 0;
    min-height:80vh;
    display:flex;
    align-items:center;
}

.login-card{
    background:#f6f7f9;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.login-card h2{
    font-weight:700;
    margin-bottom:10px;
    color:#222;
}

.login-card p{
    color:#7c8694;
    margin-bottom:0;
}

.login-card label{
    font-weight:600;
    margin-bottom:8px;
}

.login-card .input-group-text{
    background:#fff;
    border-right:none;
    border-radius:8px 0 0 8px;
}

.login-card .form-control{
    border-left:none;
    height:50px;
    border-radius:0 8px 8px 0;
}

.login-card .form-control:focus{
    box-shadow:none;
    border-color:#ced4da;
}

.login-card .btn-danger{
    border-radius:8px;
    font-weight:600;
    height:50px;
}

.google-btn{
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    border-radius:8px;
    transition:.3s;
}

.google-btn:hover{
    background:#f8f9fa;
    border-color:#ced4da;
}

.divider{
    text-align:center;
    position:relative;
}

.divider::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    width:42%;
    height:1px;
    background:#ddd;
}

.divider::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    width:42%;
    height:1px;
    background:#ddd;
}

.divider span{
    background:#f6f7f9;
    padding:0 15px;
    color:#888;
    font-size:14px;
}

.forgot-password{
    text-decoration:none;
    color:#dc3545;
    font-size:15px;
    font-weight:500;
}

.forgot-password:hover{
    color:#bb2d3b;
}

.register-link{
    color:#dc3545;
    font-weight:600;
    text-decoration:none;
}

.register-link:hover{
    color:#bb2d3b;
}

.login-card .invalid-feedback{
    display:block;
}







/* User dropdown only */


.header-icon-link + .dropdown-menu .dropdown-item{
    padding: 6px 14px;
    font-size: 12px;
    
}









/* ==========================
   FILTER BAR
========================== */

.filter-bar{
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    padding:18px 24px;
    margin-bottom:30px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.filter-bar label{
    font-weight:600;
    color:#333;
    margin-bottom:0;
}

.filter-bar .form-select{
    min-width:180px;
    border-radius:8px;
    border:1px solid #ddd;
    padding:.45rem 2rem .45rem .75rem;
    transition:.3s;
}

.filter-bar .form-select:focus{
    border-color:#dc3545;
    box-shadow:0 0 0 .15rem rgba(220,53,69,.15);
}

.filter-bar .btn-danger{
    border-radius:8px;
    padding:8px 18px;
    font-weight:600;
}

.filter-bar .btn-danger i{
    margin-right:5px;
}

/* ==========================
   PRODUCT CARD
========================== */

.product-card{
    transition:.3s;
    overflow:hidden;
    position:relative;
    border:1px solid #eee !important;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.product-img-wrap{
    height:180px;
    overflow:hidden;
}

.product-img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.3s;
}

.product-card:hover .product-img{
    transform:scale(1.08);
}

.badge-sale{
    position:absolute;
    top:12px;
    left:12px;
    background:#dc3545;
    color:#fff;
    padding:5px 10px;
    font-size:12px;
    border-radius:20px;
    font-weight:600;
    z-index:2;
}

/* ==========================
   PRODUCT TITLE
========================== */

.product-card p{
    margin-bottom:8px;
}

.product-card a{
    text-decoration:none;
}

.product-card a:hover{
    color:#dc3545 !important;
}

/* ==========================
   PRICE
========================== */

.text-danger{
    font-size:18px;
}

.text-decoration-line-through{
    font-size:14px;
}

/* ==========================
   BUTTON
========================== */

.btn-nf-red{
    background:#dc3545;
    color:#fff;
    border:none;
    transition:.3s;
}

.btn-nf-red:hover{
    background:#b02a37;
    color:#fff;
}






/* =========================================
   CART PAGE
========================================= */

.cart-page {
    background: #ffffff;
    min-height: 70vh;
}


/* =========================================
   MAIN CART BOXES
========================================= */

.cart-card,
.coupon-card,
.checkout-card,
.order-summary,
.checkout-action-card {
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}


/* =========================================
   CART HEADER
========================================= */

.cart-card-header,
.checkout-header {
    padding: 20px;
    background: #f1f2f3;
    border-bottom: 1px solid #e5e5e5;
}


/* =========================================
   CART ITEMS
========================================= */

.cart-items {
    padding: 10px 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.cart-item:last-child {
    border-bottom: none;
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.cart-product-image {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================
   PRODUCT DETAILS
========================================= */

.cart-product-details {
    flex: 1;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    color: #dc3545;
    font-weight: 600;
}


/* =========================================
   SUBTOTAL
========================================= */

.cart-item-subtotal {
    min-width: 100px;
    text-align: right;
}


/* =========================================
   QUANTITY BOX
========================================= */

.quantity-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
}

.quantity-btn {
    border: none;
    background: #f1f2f3;
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
}

.quantity-btn:hover {
    background: #dc3545;
    color: white;
}

.quantity-input {
    width: 45px;
    height: 32px;
    border: none;
    text-align: center;
    outline: none;
    background: #ffffff;
}


/* =========================================
   REMOVE BUTTON
========================================= */

.cart-remove-btn {
    border: none;
    background: transparent;
    color: #dc3545;
    font-size: 18px;
    cursor: pointer;
}

.cart-remove-btn:hover {
    color: #a71d2a;
}


/* =========================================
   COUPON
========================================= */

.coupon-card {
    padding: 20px;
}


/* =========================================
   ORDER SUMMARY
========================================= */

.order-summary {
    padding: 25px;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-weight: 700;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.summary-total strong {
    color: #dc3545;
}


/* =========================================
   CHECKOUT
========================================= */

.checkout-card {
    overflow: hidden;
}

.checkout-action-card {
    padding: 25px;
}

.checkout-action-card h5 {
    font-weight: 700;
}


/* =========================================
   EMPTY CART
========================================= */

.empty-cart {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 60px 20px;
    border: 1px solid #e5e5e5;
}

.empty-cart-icon {
    font-size: 70px;
    color: #dc3545;
}







/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .cart-item {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cart-product-image {
        width: 90px;
        height: 90px;
    }

    .cart-product-details {
        min-width: calc(100% - 110px);
    }

    .cart-item-subtotal {
        text-align: left;
        min-width: auto;
    }

    .cart-remove-btn {
        margin-left: auto;
    }

    .order-summary {
        position: static;
    }

}





.footer-links a {
    text-decoration: none !important;
}











/* MOBILE */

@media (max-width: 768px) {

    .cart-item {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cart-product-image {
        width: 85px;
        height: 85px;
    }

    .cart-product-details {
        min-width: calc(100% - 110px);
    }

    .cart-item-subtotal {
        text-align: left;
        margin-left: 100px;
    }

    .cart-remove-btn {
        margin-left: auto;
    }

    .order-summary {
        position: static;
    }

}










/* Header Cart Dropdown */

.dropdown-menu {
    z-index: 9999;
}


.cart-scroll {

    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden;

}


/* scrollbar */

.cart-scroll::-webkit-scrollbar {

    width: 5px;

}


.cart-scroll::-webkit-scrollbar-track {

    background: #f1f1f1;

}


.cart-scroll::-webkit-scrollbar-thumb {

    background: #dc3545;
    border-radius: 10px;

}


/* keep View All visible */

.cart-footer {

    background: #fff;
    padding-top: 10px;

}











.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-link:hover {
    color: inherit;
}

.product-link .data-img-wrap {
    cursor: pointer;
}

.product-link .data-img {
    transition: transform 0.3s ease;
}

.product-link:hover .data-img {
    transform: scale(1.05);
}









.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: #e9163d;
    color: #fff;
}

.btn-hero-primary:hover {
    background: #c81032;
    color: #fff;
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-hero-secondary:hover {
    background: #fff;
    color: #e9163d;
}






.information-content h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}


.information-content h3{
    color:#8b0000;
    margin-top:30px;
}


.information-content p{
    line-height:1.8;
    font-size:16px;
    color:#555;
}


.information-content ul{
    padding-left:20px;
}


.information-content li{
    margin-bottom:10px;
}












/* ==========================
   PAGINATION
========================== */

.pagination{
    gap:8px;
}

.page-link{
    border-radius:8px !important;
    border:none;
    color:#dc3545;
    padding:8px 14px;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.page-item.active .page-link{
    background:#dc3545;
    border-color:#dc3545;
}

.page-link:hover{
    background:#dc3545;
    color:#fff;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

    .filter-bar{
        padding:15px;
    }

    .filter-bar .row{
        gap:15px;
    }

    .filter-bar .form-select{
        width:100% !important;
        min-width:100%;
    }

    .filter-bar .btn{
        width:100%;
    }

}



