/* =========================================================
   SHANKH NAAD
   HEADER + NAVIGATION + FOOTER
   RESPONSIVE CSS
   ========================================================= */

:root {
    --maroon-dark: #3a0e0e;
    --maroon: #4a1414;
    --gold: #c8963e;
    --gold-light: #e0b06a;
    --cream: #faf7f2;
    --text-dark: #222;
    --text-light: #f5ede0;
    --border: #e3ddd5;
}


/* =========================================================
   GLOBAL
   ========================================================= */

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: var(--text-dark);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}


/* =========================================================
   TOP STRIP
   ========================================================= */

.top-strip {
    width: 100%;
    background: var(--maroon-dark);
    color: var(--text-light);
    font-size: 13px;
    padding: 7px 0;
}

.top-strip-inner {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* Social */

.social-icons {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 150px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 15px;
    transition: .2s ease;
}

.social-icons a:hover {
    color: var(--gold-light);
}


/* Delivery */

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

.delivery-msg {
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: .2px;
}

.delivery-msg i {
    color: var(--gold-light);
    margin-right: 4px;
}

.arrow-btn {
    width: 27px;
    height: 27px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
}

.arrow-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}


/* Language */

.lang-select {
    min-width: 150px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}


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

.main-header {
    width: 100%;
    background: #fff;
    padding: 15px 0;
}

.main-header-inner {
    min-height: 70px;
    display: grid;
    grid-template-columns: 180px minmax(280px, 420px) auto;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* Logo */

.brand-logo {
    display: flex;
    align-items: center;
    width: max-content;
}

.logo-img {
    display: block;
    width: auto;
    height: 55px;
    object-fit: contain;
}


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

.search-wrap {
    width: 100%;
    min-width: 0;
}

.search-wrap .input-group {
    width: 100%;
    height: 48px;
    border: 1px solid #d8d8d8;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.search-wrap .form-control {
    height: 48px;
    min-width: 0;
    border: none;
    box-shadow: none;
    padding: 0 20px;
    font-size: 14px;
}

.search-wrap .form-control:focus {
    border: none;
    box-shadow: none;
}

.search-wrap .form-control::placeholder {
    color: #888;
}


/* Search button */

.search-wrap .btn-search {
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 0;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 14px;
}

.search-wrap .btn-search:hover {
    background: #000;
    color: #fff;
}


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

.header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    white-space: nowrap;
}

.icon-link {
    color: var(--maroon-dark);
    font-size: 21px;
    display: flex;
    align-items: center;
    transition: .2s ease;
}

.icon-link:hover {
    color: var(--gold);
}


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

.cart-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 7px 16px;
    border: 1px solid #d8d8d8;
    border-radius: 50px;
    color: #222;
    background: #fff;
    transition: .2s ease;
}

.cart-pill:hover {
    border-color: var(--gold);
    color: #222;
}

.cart-pill-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--maroon-dark);
    font-size: 20px;
}

.cart-badge {
    position: absolute;
    top: -9px;
    right: -10px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 50%;
    background: var(--maroon-dark);
    color: #fff;
    font-size: 10px;
    line-height: 17px;
    text-align: center;
    font-weight: 600;
}

.cart-divider {
    width: 1px;
    height: 20px;
    background: #d2d2d2;
}

.cart-price {
    color: #222;
    font-size: 14px;
    font-weight: 500;
}


/* =========================================================
   SIGN IN
   ========================================================= */

.btn-signin {
    min-height: 42px;
    padding: 8px 22px;
    border: none;
    border-radius: 50px;
    background: var(--maroon-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .4px;
    white-space: nowrap;
    transition: .2s ease;
}

.btn-signin:hover {
    background: var(--maroon);
    color: #fff;
}


/* =========================================================
   NAVIGATION
   ========================================================= */
.main-nav {
    width: 100%;
    background: #fff;
    border-top: 1px solid #f0ece7;
    border-bottom: 1px solid #f0ece7;
    position: relative;
    z-index: 1000;
}

#header-placeholder,
.main-header {
    position: relative;
    z-index: 1000;
}

.main-nav-container{
    display:flex;
    align-items:center;
    gap:35px;
}
.main-nav-container .logo-img{
    height:55px;
    width:auto;
    display:block;
}







.main-nav .container {
    position: relative;
}

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

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-link {
    position: relative;
    padding: 10px 17px !important;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: .2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--maroon-dark);
}


/* Active underline */

.main-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 2px;
    height: 2px;
    border-radius: 10px;
    background: var(--maroon-dark);
}


/* Dropdown */

.main-nav .dropdown-menu {
    min-width: 160px;
    margin-top: 0;
    padding: 7px 0;
    border: 1px solid #e5ddd3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    z-index: 2000;
}
.main-nav .dropdown-item {
    padding: 9px 16px;
    color: #333;
    font-size: 13px;
}

.main-nav .dropdown-item:hover {
    background: #faf2e7;
    color: var(--maroon-dark);
}


/* Mobile toggle */

.nav-toggle {
    display: none;
}


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

.site-footer {
    margin-top: 0;
    /* background: var(--maroon-dark); */
    color: var(--text-light);
}

.footer-top {
    padding: 55px 0 40px;
}

.footer-heading {
    margin: 0 0 18px;
    color: var(--gold-light);
    font-size: 16px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #e9dfd2;
    font-size: 13px;
    transition: .2s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 3px;
}


/* Footer bottom */

.footer-bottom {
    min-height: 90px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    width: auto;
    height: 45px;
    object-fit: contain;
    background: #fff;
    padding: 3px 7px;
}
/* 
.footer-copy {
    margin: 0;
    color: #d8cdc0;
    font-size: 12px;
    text-align: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: .2s ease;
} */

/* =========================================================
   FOOTER BOTTOM - CENTERED DESIGN
   ========================================================= */

.footer-bottom {
    width: 100%;
    min-height: 145px;
    padding: 18px 0 15px;

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

    gap: 7px;

    border-top: 1px solid #eee;
    text-align: center;

    background: #fff;
}


/* Footer Logo */

.footer-logo {
    display: block;

    width: auto;
    height: 48px;

    object-fit: contain;

    background: transparent;
    padding: 0;

    margin: 0 auto;
}


/* Copyright */

.footer-copy {
    margin: 0;

    color: #333;

    font-size: 10px;
    line-height: 1.4;

    text-align: center;

    font-weight: 400;
}


/* Social Icons */

.footer-social {
    display: flex;

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

    gap: 10px;

    margin-top: 2px;
}


/* Social Circle */

.footer-social a {
    width: 22px;
    height: 22px;

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

    border: 1px solid #ddd;
    border-radius: 50%;

    background: #fff;

    color: #333;

    font-size: 10px;

    transition: all .2s ease;
}


/* Hover */

.footer-social a:hover {
    background: #3a0e0e;
    border-color: #3a0e0e;
    color: #fff;
}




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

@media (max-width: 576px) {

    .footer-bottom {
        min-height: 125px;
        padding: 15px 0 12px;
        gap: 5px;
    }

    .footer-logo {
        height: 38px;
    }

    .footer-copy {
        font-size: 8px;
    }

    .footer-social {
        gap: 7px;
        margin-top: 1px;
    }

    .footer-social a {
        width: 19px;
        height: 19px;
        font-size: 8px;
    }
}


.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .main-header-inner {
        grid-template-columns: 160px minmax(240px, 360px) auto;
        gap: 18px;
    }

    .logo-img {
        height: 50px;
    }

    .header-icons {
        gap: 12px;
    }

    .main-nav .nav-link {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

     .main-nav-container{
    justify-content:space-between;
    gap:0;
}

.main-nav-container .logo-img{
    height:48px;
}
















    /* TOP */
    .social-icons {
        min-width: auto;
    }

    .lang-select {
        min-width: auto;
    }


    /* HEADER */

    .main-header {
        padding: 14px 0;
    }

    .main-header-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo actions"
            "search search";
        gap: 12px 18px;
    }

    .brand-logo {
        grid-area: logo;
    }

    .header-icons {
        grid-area: actions;
    }

    .search-wrap {
        grid-area: search;
        max-width: none;
    }


    /* NAV */

    .nav-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        padding: 0;
        border: none;
        background: transparent;
        color: var(--maroon-dark);
        font-size: 25px;
        cursor: pointer;
    }

    .nav-toggle:focus {
        outline: none;
    }

    .main-nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 5px 0 10px;
    }

    .main-nav-list.show {
        display: flex;
    }

    .main-nav .nav-item {
        width: 100%;
        text-align: center;
    }

    .main-nav .nav-link {
        display: block;
        width: 100%;
        padding: 11px 15px !important;
        border-bottom: 1px solid #f1ebe4;
    }

    .main-nav .nav-link.active::after {
        display: none;
    }

    .main-nav .dropdown-menu {
        position: static !important;
        width: 100%;
        margin: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: #faf6f0;
        text-align: center;
    }

}


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

@media (max-width: 767px) {

    .top-strip {
        padding: 6px 0;
    }

    .top-strip-inner {
        justify-content: center;
    }

    .social-icons,
    .lang-select {
        display: none;
    }

    .delivery-area {
        width: 100%;
        flex: none;
    }

    .delivery-msg {
        font-size: 11px;
    }


    /* Header */

    .main-header {
        padding: 11px 0;
    }

    .main-header-inner {
        grid-template-columns: 1fr auto;
        gap: 9px 10px;
    }

    .logo-img {
        height: 42px;
        max-width: 135px;
    }

    .header-icons {
        gap: 7px;
    }

    .icon-link {
        font-size: 19px;
    }

    .cart-pill {
        min-height: 39px;
        padding: 5px 10px;
        gap: 6px;
    }

    .cart-pill-icon {
        font-size: 18px;
    }

    .cart-price {
        font-size: 12px;
    }

    .cart-divider {
        height: 17px;
    }

    .btn-signin {
        min-height: 37px;
        padding: 6px 12px;
        font-size: 11px;
    }


    /* Search */

    .search-wrap .input-group {
        height: 44px;
    }

    .search-wrap .form-control {
        height: 44px;
        padding: 0 14px;
        font-size: 12px;
    }

    .search-wrap .btn-search {
        height: 44px;
        padding: 0 15px;
        font-size: 12px;
    }


    /* Footer */

    .footer-top {
        padding: 40px 0 25px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 22px 0;
    }

}


/* =========================================================
   425px
   ========================================================= */

@media (max-width: 425px) {

    .top-strip-inner {
        gap: 5px;
    }

    .delivery-msg {
        font-size: 10px;
    }

    .arrow-btn {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }


    .main-header-inner {
        grid-template-columns: 1fr auto;
        gap: 7px;
    }

    .logo-img {
        height: 38px;
        max-width: 120px;
    }

    .header-icons {
        gap: 5px;
    }

    .icon-link {
        font-size: 17px;
    }

    .cart-pill {
        padding: 4px 8px;
        gap: 5px;
    }

    .cart-price {
        font-size: 11px;
    }

    .btn-signin {
        padding: 5px 9px;
        font-size: 10px;
    }


    .search-wrap .form-control {
        font-size: 11px;
    }

    .search-wrap .btn-search {
        padding: 0 11px;
        font-size: 11px;
    }


    .footer-heading {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 12px;
    }

}


/* =========================================================
   375px
   ========================================================= */

@media (max-width: 375px) {

    .delivery-msg {
        font-size: 9px;
    }

    .logo-img {
        height: 35px;
        max-width: 108px;
    }

    .header-icons {
        gap: 4px;
    }

    .icon-link {
        font-size: 16px;
    }

    .cart-pill {
        padding: 4px 7px;
    }

    .cart-price {
        font-size: 10px;
    }

    .btn-signin {
        padding: 5px 8px;
        font-size: 9px;
    }

    .search-wrap .btn-search {
        padding: 0 9px;
        font-size: 10px;
    }

}


/* =========================================================
   325px
   ========================================================= */

@media (max-width: 340px) {

    .main-header-inner {
        gap: 5px;
    }

    .logo-img {
        height: 31px;
        max-width: 96px;
    }

    .header-icons {
        gap: 3px;
    }

    .icon-link {
        font-size: 14px;
    }

    .cart-pill {
        min-height: 34px;
        padding: 3px 6px;
        gap: 4px;
    }

    .cart-pill-icon {
        font-size: 15px;
    }

    .cart-price {
        font-size: 9px;
    }

    .btn-signin {
        min-height: 33px;
        padding: 4px 7px;
        font-size: 8px;
    }

    .search-wrap .input-group,
    .search-wrap .form-control,
    .search-wrap .btn-search {
        height: 40px;
    }

    .search-wrap .form-control {
        padding: 0 10px;
        font-size: 10px;
    }

    .search-wrap .btn-search {
        padding: 0 8px;
        font-size: 9px;
    }

}


/* ===== Hero Carousel ===== */
/* .hero-carousel{ position:relative; }
.hero-carousel .carousel-item{ height:480px; }
.hero-carousel .carousel-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-carousel .carousel-indicators{ bottom:16px; }
/* .hero-carousel .carousel-indicators [data-bs-target]{
  width:9px; height:9px; border-radius:50%;
  background-color:var(--maroon-dark);
  opacity:.35; margin:0 5px;
} */
 /* .hero-carousel .carousel-indicators [data-bs-target]{
  width:9px; height:9px; border-radius:50%;
  background-color:#fff;
  opacity:.5; margin:0 5px;
}
.hero-carousel .carousel-indicators .active{ opacity:1; }
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next{ width:5%; opacity:0; }

@media (max-width:767px){
  .hero-carousel .carousel-item{ height:260px; }
} */ */

/* =========================
   HERO CAROUSEL
========================= */

/* =========================================================
   HERO CAROUSEL - RESPONSIVE
========================================================= */

.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    width: 100%;
    height: auto;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================================
   LAPTOP / DESKTOP
========================================================= */

@media (min-width: 992px) {

    .hero-carousel .carousel-item img {
        width: 100%;
        height: auto;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .hero-carousel .carousel-item img {
        width: 100%;
        height: auto;
    }

}


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

@media (max-width: 767px) {

    .hero-carousel {
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }

    .hero-carousel .carousel-inner {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-item,
    .hero-carousel .carousel-item.active {
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-carousel .carousel-item img {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: block !important;
        object-fit: contain !important;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .hero-carousel {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-inner {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-item,
    .hero-carousel .carousel-item.active,
    .hero-carousel .carousel-item-next,
    .hero-carousel .carousel-item-prev {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-item img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

}

/* ===== Our Collection ===== */
/* =========================================================
   OUR COLLECTION
   ========================================================= */

.collection-section {
    width: 100%;
    padding: 50px 0 60px;
    background: #fff;
}


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

.collection-header {
    position: relative;

    width: 100%;

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

    margin-bottom: 30px;
}


/* Title */

.collection-section .section-title {
    margin: 0;

    text-align: center;

    font-size: 1.6rem;
    line-height: 1.3;

    font-weight: 800;

    color: var(--maroon);

    letter-spacing: .3px;
}


/* View All */

.collection-header .btn-view-all {
    position: absolute;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    border: 1.5px solid #222;

    color: #222;
    background: #fff;

    border-radius: 30px;

    padding: 9px 26px;

    font-weight: 500;
    font-size: .9rem;

    white-space: nowrap;

    transition: all .2s ease;
}


.collection-header .btn-view-all:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}


/* =========================================================
   COLLECTION GRID
   ========================================================= */

.collection-grid {
    margin-left: -8px;
    margin-right: -8px;

    row-gap: 16px;
}

.collection-grid > div {
    padding-left: 8px;
    padding-right: 8px;
}


/* Second row */

.collection-grid-second {
    margin-top: 16px;
}


/* =========================================================
   CATEGORY CARD
   ========================================================= */

.category-card {
    position: relative;

    display: block;

    width: 100%;
    height: 350px;

    overflow: hidden;

    border-radius: 14px;

    text-decoration: none;

    background: #eee;
}


/* Image */

.category-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}


/* Hover image */

.category-card:hover img {
    transform: scale(1.06);
}


/* Dark gradient */

.category-card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 40%,
            rgba(0,0,0,.75) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CARD CAPTION
   ========================================================= */

.category-card .card-caption {
    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 14px;

    z-index: 2;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 10px;
}


/* Card title */

.category-card .card-caption h3 {
    margin: 0;

    color: #fff;

    font-size: 1rem;

    font-weight: 700;

    line-height: 1.25;
}


/* Explore */

.category-card .card-caption .explore-tag {
    display: block;

    margin-top: 4px;

    color: #eee;

    font-size: .68rem;

    letter-spacing: 1px;

    font-weight: 500;
}


/* Arrow */

.category-card .card-caption .arrow-circle {
    width: 30px;
    height: 30px;

    min-width: 30px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(255,255,255,.15);

    border: 1px solid rgba(255,255,255,.5);

    color: #fff;

    font-size: .9rem;

    transition: all .25s ease;
}


/* Arrow hover */

.category-card:hover .arrow-circle {
    background: #fff;
    color: var(--maroon);
}


/* =========================================================
   TABLET
   768px - 991px
   ========================================================= */

@media (max-width: 991px) {

    .collection-section {
        padding: 45px 0 50px;
    }


    .collection-section .section-title {
        font-size: 1.5rem;
    }


    .collection-header {
        margin-bottom: 25px;
    }


    .collection-header .btn-view-all {
        padding: 8px 20px;
        font-size: .85rem;
    }


    .category-card {
        height: 280px;
    }


    .category-card .card-caption {
        left: 14px;
        right: 14px;
        bottom: 13px;
    }

}


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

@media (max-width: 767px) {

    .collection-section {
        padding: 40px 0 45px;
    }


    /* Header */

    .collection-header {
        margin-bottom: 22px;
    }


    .collection-section .section-title {
        font-size: 1.35rem;
    }


    .collection-header .btn-view-all {
        padding: 7px 16px;
        font-size: .78rem;
    }


    /* Cards */

    .collection-grid {
        row-gap: 12px;

        margin-left: -6px;
        margin-right: -6px;
    }


    .collection-grid > div {
        padding-left: 6px;
        padding-right: 6px;
    }


    .collection-grid-second {
        margin-top: 12px;
    }


    .category-card {
        height: 230px;

        border-radius: 11px;
    }


    .category-card .card-caption {
        left: 11px;
        right: 11px;
        bottom: 11px;

        gap: 6px;
    }


    .category-card .card-caption h3 {
        font-size: .82rem;
    }


    .category-card .card-caption .explore-tag {
        font-size: .58rem;
        margin-top: 3px;
    }


    .category-card .card-caption .arrow-circle {
        width: 26px;
        height: 26px;
        min-width: 26px;

        font-size: .75rem;
    }


    .desktop-break {
        display: none;
    }

}


/* =========================================================
   425px
   ========================================================= */

@media (max-width: 425px) {

    .collection-section {
        padding: 35px 0 40px;
    }


    .collection-section .section-title {
        font-size: 1.2rem;
    }


    .collection-header {
        margin-bottom: 20px;
    }


    .collection-header .btn-view-all {
        padding: 6px 13px;
        font-size: .7rem;
    }


    .category-card {
        height: 200px;

        border-radius: 10px;
    }


    .category-card .card-caption {
        left: 9px;
        right: 9px;
        bottom: 9px;
    }


    .category-card .card-caption h3 {
        font-size: .72rem;
    }


    .category-card .card-caption .explore-tag {
        font-size: .52rem;
        letter-spacing: .7px;
    }


    .category-card .card-caption .arrow-circle {
        width: 23px;
        height: 23px;
        min-width: 23px;

        font-size: .65rem;
    }

}


/* =========================================================
   375px
   ========================================================= */

@media (max-width: 375px) {

    .collection-section {
        padding: 30px 0 35px;
    }


    .collection-section .section-title {
        font-size: 1.1rem;
    }


    .collection-header .btn-view-all {
        padding: 5px 11px;
        font-size: .65rem;
    }


    .category-card {
        height: 175px;
    }


    .category-card .card-caption {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }


    .category-card .card-caption h3 {
        font-size: .65rem;
    }


    .category-card .card-caption .explore-tag {
        font-size: .48rem;
    }


    .category-card .card-caption .arrow-circle {
        width: 21px;
        height: 21px;
        min-width: 21px;

        font-size: .58rem;
    }

}


/* =========================================================
   325px
   ========================================================= */

@media (max-width: 340px) {

    .collection-section {
        padding: 28px 0 32px;
    }


    .collection-section .section-title {
        font-size: 1rem;
    }


    .collection-header {
        margin-bottom: 17px;
    }


    .collection-header .btn-view-all {
        padding: 5px 9px;
        font-size: .6rem;
    }


    .collection-grid {
        row-gap: 9px;

        margin-left: -4px;
        margin-right: -4px;
    }


    .collection-grid > div {
        padding-left: 4px;
        padding-right: 4px;
    }


    .collection-grid-second {
        margin-top: 9px;
    }


    .category-card {
        height: 155px;

        border-radius: 8px;
    }


    .category-card .card-caption {
        left: 7px;
        right: 7px;
        bottom: 7px;

        gap: 4px;
    }


    .category-card .card-caption h3 {
        font-size: .58rem;
    }


    .category-card .card-caption .explore-tag {
        font-size: .42rem;
        letter-spacing: .5px;
    }


    .category-card .card-caption .arrow-circle {
        width: 19px;
        height: 19px;
        min-width: 19px;

        font-size: .52rem;
    }

}




/* ===== Testimonial ===== */
.testimonial-section{
  padding:20px 0 40px;
}
.testimonial-card{
  background:#fdf3e7;
  border-radius:20px;
  padding:50px 40px 36px;
  text-align:center;
  width:100%;
  margin:0 auto;
}
/* 
.testimonial-card{
  background:#fdf3e7;
  border-radius:20px;
  padding:50px 40px 36px;
  text-align:center;
  max-width:800px;
  margin:0 auto;
} */
.quote-mark{
  display:inline-block;
  font-size:2.4rem;
  color:var(--maroon-dark);
  line-height:1;
  margin-bottom:10px;
}
.testimonial-text{
  font-size:1rem;
  color:#4a3f35;
  line-height:1.8;
  max-width:600px;
  margin:0 auto 20px;
}
.testimonial-name{
  color:var(--gold);
  font-weight:700;
  font-size:.95rem;
  letter-spacing:.5px;
  margin-bottom:2px;
}
.testimonial-loc{
  color:#555;
  font-size:.85rem;
  margin-bottom:20px;
}
.testimonial-nav{
  display:flex;
  justify-content:center;
  gap:14px;
}
.t-nav-btn{
  width:36px;
  height:36px;
  border-radius:50%;
  border:1.5px solid #c9b8a3;
  background:transparent;
  color:var(--maroon-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.9rem;
  transition:.2s;
}
.t-nav-btn:hover{
  background:var(--maroon-dark);
  color:#fff;
  border-color:var(--maroon-dark);
}

/* ===== Books CTA Banner ===== */
.cta-banner-section{
  padding:0 0 50px;
}
.cta-banner{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  min-height:280px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cta-bg-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}
.cta-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:560px;
  padding:20px;
}
.cta-content h2{
  font-size:1.7rem;
  font-weight:800;
  color:#1a1a1a;
  margin-bottom:14px;
}
.cta-content p{
  font-size:.9rem;
  color:#333;
  line-height:1.6;
  margin-bottom:22px;
}
.btn-shop-collection{
  display:inline-block;
  background:var(--maroon-dark);
  color:#fff;
  border-radius:30px;
  padding:12px 30px;
  font-size:.9rem;
  font-weight:500;
  text-decoration:none;
  letter-spacing:.3px;
}
.btn-shop-collection:hover{
  background:var(--maroon);
  color:#fff;
}

@media (max-width:576px){
  .testimonial-card{ padding:36px 20px 28px; }
  .cta-banner{ min-height:340px; }
}










/* ===== Footer ===== */
.site-footer{
  padding:0 0 40px;
}

.footer-top{
  background:#fdf3e7;
  border-radius:20px;
  padding:40px;
}
.footer-heading{
  font-size:.95rem;
  font-weight:700;
  color:#1a1a1a;
  margin-bottom:16px;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:10px;
}
.footer-links a{
  color:#6b6b6b;
  font-size:.88rem;
  text-decoration:none;
  transition:.2s;
}
.footer-links a:hover{
  color:var(--maroon-dark);
}

.footer-bottom{
  text-align:center;
  padding:36px 0 10px;
}
.footer-logo{
  height:48px;
  width:auto;
  object-fit:contain;
  margin-bottom:18px;
}
.footer-copy{
  font-size:.85rem;
  color:#555;
  margin-bottom:16px;
}
.footer-social{
  display:flex;
  justify-content:center;
  gap:14px;
}
.footer-social a{
  width:32px;
  height:32px;
  border-radius:50%;
  border:1px solid #ddd;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#333;
  font-size:.85rem;
  text-decoration:none;
  transition:.2s;
}
.footer-social a:hover{
  background:var(--maroon-dark);
  color:#fff;
  border-color:var(--maroon-dark);
}

@media (max-width:576px){
  .footer-top{ padding:28px 20px; }
}

















body {
    background-color: #fcf8f2;
    font-family: 'Inter', sans-serif;
}

.section-title {
    color: #702f10;
    font-weight: 700;
}

.section-subtitle {
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.book-card {
    background: #fff;
    border-radius: 25px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

/* Yellow Top Section - Khachya बाजूla curve kaadhun straight kela ahe */
.card-top-bg {
    border-radius: 25px 25px 0 0; 
    background-color: #FEEBBF;
    padding: 25px 20px 35px 20px;
    position: relative;
    text-align: center;
}

.badge-seller {
    background-color: #fae19c;
    color: #5c4000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.wishlist-btn {
    background: #ffffff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 10;
}

.wishlist-btn:hover, 
.wishlist-btn.active {
    background-color: #ffe0e0;
    color: #dc3545;
}

.book-img {
    max-height: 180px;
    object-fit: contain;
    margin: 15px 0 10px 0;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.15));
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #d1b899;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
}

.dot.active {
    width: 16px;
    border-radius: 4px;
    background-color: #333;
}

/* White Bottom Overlap Section & Handle Bar */
.card-body {
    background: #ffffff;
    padding: 20px;
    position: relative;
    border-radius: 30px 30px 0 0;
    margin-top: -25px;
    z-index: 3;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.02);
}

.card-handle-bar {
    width: 90px;
    height: 6px;
    border-radius: 56px;
    background: var(--Black-200, #D1D1D1);
    margin: 0 auto 15px auto;
}

.price-tag {
    background-color: #f1f1f1;
    color: #222;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.book-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
    margin-top: 10px;
    margin-bottom: 2px;
}

.book-part {
    color: #B0B0B0;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.btn-cart {
    display: flex;
    width: 100%;
    max-width: 346px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 39px;
    background: #422607;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: background 0.2s;
}

.btn-cart:hover {
    background-color: #2d1b08;
    color: #fff;
}

.btn-view-more {
    display: flex;
    width: auto;
    margin: 0 auto;
    padding: 12px 80px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 39px;
    border: 1px solid #000000;
    background: transparent;
    color: #000000;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-view-more:hover {
    background: #000000;
    color: #fff;
}












.wishlist-btn {
    background: #ffffff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;

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

    position: absolute;
    top: 15px;
    right: 15px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

    cursor: pointer;
    z-index: 10;

    padding: 0;
    transition: all 0.2s ease;
}

/* Heart */
.heart-icon {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: #333333;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: all 0.2s ease;
}

/* Hover */
.wishlist-btn:hover {
    transform: scale(1.05);
}

.wishlist-btn:hover .heart-icon {
    stroke: #702f10;
}

/* Active / selected heart */
.wishlist-btn.active {
    background: #ffffff;
}

.wishlist-btn.active .heart-icon {
    fill: #702f10;
    stroke: #702f10;
}



.price-tag {
    background-color: #f1f1f1;
    color: #222;
    font-weight: 600;
    font-size: 16px;
    padding: 7px 14px;
    border-radius: 20px;
    display: inline-block;
    line-height: 1;
}











/* ================= FORM CSS ONLY ================= */

form {
    width: 100%;
}

/* Form row - First Name / Last Name */
.form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.form-row .field {
    flex: 1;
}

/* Individual field */
.field {
    width: 100%;
    margin-bottom: 14px;
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 6px;
}

/* Input */
.field input {
    width: 100%;
    height: 44px;
    padding: 12px 14px;

    border: 1px solid #e6e3de;
    border-radius: 10px;

    background: #f2f0ee;
    color: #1c1c1c;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;

    outline: none;
    transition: 0.2s ease;
}

.field input::placeholder {
    color: #a9a49c;
}

/* Input focus */
.field input:focus {
    border-color: #c9973f;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 151, 63, 0.12);
}

/* Password wrapper */
.pw-wrap {
    position: relative;
    width: 100%;
}

.pw-wrap input {
    padding-right: 42px;
}

/* Eye icon */
.pw-wrap .eye {
    position: absolute;
    right: 14px;
    top: 50%;

    transform: translateY(-50%);

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

    cursor: pointer;
    user-select: none;
}

/* Password hint */
.hint {
    font-size: 11px;
    color: #8a8a8a;
    margin-top: 6px;
}

/* Error message */
.error-msg {
    color: #c0392b;
    font-size: 12px;
    min-height: 16px;
    margin-top: 4px;
    margin-bottom: 4px;
}

/* Google button */
.google-btn {
    width: 100%;
    height: 46px;

    padding: 13px;

    border-radius: 999px;
    border: 1px solid #e6e3de;

    background: #fff;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;

    color: #3c3c3c;

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

    gap: 10px;

    cursor: pointer;
    transition: 0.2s ease;
}

.google-btn:hover {
    background: #faf8f5;
    border-color: #d8d2ca;
}

.google-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* OR divider */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 18px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eae7e2;
}

.divider span {
    font-size: 12px;
    color: #8a8a8a;
}

/* Main submit button */
.signup-btn {
    width: 100%;
    height: 46px;

    padding: 14px;
    margin-top: 8px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #5a3a1e,
        #2e1c0d
    );

    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.3px;

    cursor: pointer;
    transition: 0.2s ease;
}

.signup-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.signup-btn:active {
    transform: translateY(0);
}

/* Login / Signup bottom text */
.login-line {
    text-align: center;

    font-size: 12.5px;
    color: #8a8a8a;

    margin-top: 16px;
}

.login-line a {
    color: #b5651d;
    font-weight: 600;

    text-decoration: none;
}

.login-line a:hover {
    text-decoration: underline;
}


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

@media (max-width: 500px) {

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .form-row .field {
        margin-bottom: 14px;
    }

    .field input {
        height: 44px;
    }

    .google-btn,
    .signup-btn {
        height: 45px;
    }
}
/* ================= EBOOK CARDS ================= */

/* =========================================================
   E-BOOK SECTION
   ========================================================= */

.ebook-section {
    padding: 10px 0 50px;
}


/* =========================================================
   E-BOOK CARD
   ========================================================= */

.ebook-card {
    width: 100%;

    background: #FEFAE9;

    border: 1px solid #e2e0d8;
    border-radius: 12px;

    padding: 14px 12px 12px;

    text-align: center;

    min-height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* Hover */

.ebook-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}


/* =========================================================
   IMAGE BOX
   ========================================================= */

.ebook-image-box {
    width: 70%;

    height: 180px;

    display: flex;

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

    overflow: hidden;

    margin-bottom: 8px;
}


/* Book Image */

.ebook-image-box img {
    width: auto;

    height: 130px;

    max-width: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 6px 6px rgba(0, 0, 0, .15)
        );

    transition: transform .3s ease;
}


/* Image hover */

.ebook-card:hover .ebook-image-box img {
    transform: scale(1.03);
}


/* =========================================================
   BOOK TITLE
   ========================================================= */

.ebook-card h3 {
    margin: 0 0 2px;

    color: #000;

    font-size: 13px;

    line-height: 1.3;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   PART
   ========================================================= */

.ebook-card p {
    margin: 0;

    color: #333;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 400;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .ebook-section {
        padding: 10px 0 40px;
    }

    .ebook-card {
        min-height: 195px;

        padding: 13px 10px 11px;
    }

    .ebook-image-box {
        height: 130px;
    }

    .ebook-image-box img {
        height: 125px;
    }

}


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

@media (max-width: 767px) {

    .ebook-section {
        padding: 5px 0 35px;
    }

    .ebook-card {
        min-height: 190px;

        padding: 12px 9px 10px;

        border-radius: 11px;
    }

    .ebook-image-box {
        height: 125px;

        margin-bottom: 7px;
    }

    .ebook-image-box img {
        height: 120px;
    }

    .ebook-card h3 {
        font-size: 12px;
    }

    .ebook-card p {
        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE - 425px
   ========================================================= */

@media (max-width: 425px) {

    .ebook-section {
        padding: 5px 0 30px;
    }

    .ebook-card {
        min-height: 180px;

        padding: 10px 7px 9px;

        border-radius: 10px;
    }

    .ebook-image-box {
        height: 115px;

        margin-bottom: 6px;
    }

    .ebook-image-box img {
        height: 110px;
    }

    .ebook-card h3 {
        font-size: 11px;
    }

    .ebook-card p {
        font-size: 9px;
    }

}


/* =========================================================
   VERY SMALL MOBILE - 375px / 325px
   ========================================================= */

@media (max-width: 375px) {

    .ebook-card {
        min-height: 165px;

        padding: 8px 6px;
    }

    .ebook-image-box {
        height: 105px;

        margin-bottom: 5px;
    }

    .ebook-image-box img {
        height: 100px;
    }

    .ebook-card h3 {
        font-size: 14px;
    }

    .ebook-card p {
        font-size: 11px;
    }

}



/* 
.ebook-section {
    padding: 20px 0 50px;
}

.ebook-card {
    background-color: #FEFAE9;
    border-radius: 20px;
    padding: 30px 20px 28px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.ebook-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    overflow: hidden;
    margin-bottom: 18px;
}

.ebook-image-box img {
    max-height: 220px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.15));
}

.ebook-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.ebook-card p {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .ebook-image-box {
        height: 200px;
    }
    .ebook-image-box img {
        max-height: 180px;
    }
} */
/* ================= MEDIA SECTION ================= */

.media-message-section {
    padding: 40px 0 60px;
}

.media-section-title {
    color: #702f10;
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ---- Big banner ---- */
.media-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.media-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.media-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: .2s;
}

.media-play-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.media-banner-logo {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
}

.media-banner-logo img {
    height: 26px;
    width: auto;
    display: block;
}

/* ---- List header ---- */
.media-list-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.media-list-header i {
    color: #702f10;
    font-size: 1rem;
}

.media-list-header h3 {
    color: #702f10;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.media-count {
    color: #999;
    font-size: .85rem;
}

/* ---- Video list items ---- */
.media-video-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 6px;
}

.media-video-item:hover {
    background: #fdf3e7;
}

.media-video-item.active {
    background: #fdf3e7;
}

.media-thumb {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.media-video-info h4 {
    font-size: .95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.media-duration {
    font-size: .8rem;
    color: #888;
}

@media (max-width: 576px) {
    .media-thumb {
        width: 70px;
        height: 48px;
    }
    .media-play-btn {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}
/* ================= CART PILL ================= */

.cart-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #d5d5d5;
    border-radius: 67px;
    padding: 10px 18px;
}

.cart-pill-icon {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: var(--maroon-dark);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--maroon);
    color: #fff;
    font-size: .6rem;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 8px;
    min-width: 16px;
    text-align: center;
    line-height: 1.3;
}

.cart-divider {
    width: 1px;
    height: 18px;
    background: #c7c7c7;
}

.cart-price {
    font-weight: 500;
    font-size: .95rem;
    color: #222;
}








/* ================= RESPONSIVE — ALL DEVICES ================= */

html, body {
    overflow-x: hidden;
}

/* ---- Mobile nav toggle ---- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--maroon-dark);
    margin: 0 auto 6px;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }
    .main-nav .container {
        display: flex;
        flex-direction: column;
    }
    .main-nav .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .main-nav .nav.show {
        display: flex;
    }
    .main-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid #f0e9df;
    }
    .main-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        box-shadow: none;
        text-align: center;
        background: #faf6ef;
    }
}

/* ---- Header icons / cart pill on small screens ---- */
@media (max-width: 576px) {
    .header-icons {
        flex-wrap: wrap;
        gap: 12px;
    }
    .cart-pill {
        padding: 8px 12px;
        gap: 6px;
    }
    .cart-price {
        font-size: .85rem;
    }
    .btn-signin {
        padding: 8px 20px;
        font-size: .85rem;
    }
}

/* ---- Top strip on very small screens ---- */
@media (max-width: 480px) {
    .top-strip .delivery-msg {
        font-size: .7rem;
        text-align: center;
    }
    .top-strip .container {
        flex-direction: column;
        gap: 4px;
    }
}

/* ---- Section side padding on small screens ---- */
@media (max-width: 576px) {
    .collection-section,
    .ebook-section,
    .media-message-section {
        padding-left: 4px;
        padding-right: 4px;
    }
    .section-title,
    .collection-section .section-title {
        font-size: 1.3rem;
    }
}













/* aboutt page */


/* =========================================
   GLOBAL
========================================= */

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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    color: #333333;
}


/* =========================================
   MAIN PAGE
========================================= */

.about-page {
    width: 100%;
    max-width: 747px;
    min-height: 848px;

    margin: 0 auto;
    padding: 18px 35px 36px 35px;

    background: #ffffff;
}


/* =========================================
   ABOUT US TITLE
========================================= */

.about-title {
    text-align: center;

    margin: 0 0 26px 0;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;

    color: #a83d13;
}


/* =========================================
   MAIN CREAM CONTAINER
========================================= */

.about-container {
    width: 100%;

    padding: 28px 27px 28px 27px;

    background: #fff8ed;

    border-radius: 13px;
}


/* =========================================
   COMMON SECTION
========================================= */

.about-section {
    width: 100%;

    display: flex;
    align-items: stretch;

    background: transparent;

    border-radius: 0;

    overflow: visible;
}


/* =========================================
   COMMON IMAGE
========================================= */

.about-image {
    flex: 0 0 225px;

    width: 225px;
    height: 166px;

    overflow: hidden;

    border: none !important;
    border-radius: 16px;

    box-shadow: none !important;
    outline: none !important;

    background: transparent;
}

.about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   CONTENT
========================================= */

.about-content {
    flex: 1;

    padding: 18px 22px;
}

.about-content h2 {
    margin: 0 0 8px 0;

    color: #a83d13;

    font-size: 17px;
    line-height: 1.2;

    font-weight: 700;
}

.about-content p {
    margin: 0 0 13px 0;

    color: #3d3d3d;

    font-size: 10.5px;
    line-height: 1.42;

    font-weight: 400;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content .welcome-text {
    margin-bottom: 0;

    font-size: 11px;
    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   SECTION 1 - WHO WE ARE
========================================= */

.section-one {
    position: relative !important;

    height: 166px !important;

    padding: 0 !important;
    margin: 0 !important;

    align-items: stretch !important;

    overflow: visible !important;

    background: transparent !important;

    z-index: 1;
}


/* White background card behind section 1 */

.section-one::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 15px;
    right: 0;

    background: #ffffff;

    border-radius: 12px;

    z-index: -1;
}


/* Section 1 image */

.section-one .about-image {
    width: 225px !important;
    height: 166px !important;

    flex: 0 0 225px;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;
    border-radius: 16px !important;

    overflow: hidden !important;

    box-shadow: none !important;
    outline: none !important;

    background: transparent;
}

.section-one .about-image img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center !important;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    border-radius: 16px !important;
}


/* Section 1 content */

.section-one .about-content {
    padding-left: 24px;

    position: relative;
    z-index: 2;

    background: #ffffff;

    border-radius: 0;
}


/* =========================================
   SECTION 2 - WHAT WE OFFER
========================================= */

.section-two {
    position: relative !important;

    min-height: 259px;

    background: transparent !important;

    overflow: visible !important;
}


/* White card behind section 2 */

.section-two::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 0;
    right: 80px;

    background: #ffffff;

    border-radius: 3px;

    z-index: 0;
}


/* Section 2 content */

.section-two .about-content {
    position: relative !important;

    z-index: 2 !important;

    padding: 19px 18px 19px 34px;
}


/* Section 2 image */

.section-two .about-image {
    position: relative !important;

    z-index: 3 !important;

    flex: 0 0 225px !important;

    width: 225px !important;
    height: 290px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;
    border-radius: 18px !important;

    overflow: hidden !important;

    background: transparent !important;

    box-shadow: none !important;
    outline: none !important;

    box-sizing: border-box !important;
}


/*
   IMPORTANT:
   Image already contains its own yellow border,
   so CSS border is NOT added here.
*/

.section-two .about-image img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: fill !important;
    object-position: center !important;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    border-radius: 18px !important;
}


/* =========================================
   SECTION 3 - OUR MISSION
========================================= */

.section-three {
    position: relative !important;

    min-height: 166px;

    background: transparent !important;

    overflow: visible !important;
}


/* White card behind section 3 */

.section-three::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 9px;
    right: 0;

    background: #ffffff;

    border-radius: 4px;

    z-index: 0;
}


/* Section 3 content */

.section-three .about-content {
    position: relative !important;

    z-index: 2 !important;

    padding-left: 22px;
}


/* Section 3 image */

.section-three .about-image {
    position: relative !important;

    z-index: 3 !important;
}


/* =========================================
   DIVIDER
========================================= */

.divider {
    width: 100%;
    height: 1px;

    background: #e99a50;

    margin: 22px 0;
}


/* =========================================
   STRONG TEXT
========================================= */

.about-content strong {
    font-weight: 700;
    color: #333333;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 700px) {

    .about-page {
        max-width: 100%;

        padding-left: 20px;
        padding-right: 20px;
    }

    .about-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


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

@media (max-width: 576px) {

    .about-page {
        padding: 18px 15px 25px 15px;

        border-left: 0;
        border-right: 0;
    }

    .about-title {
        font-size: 22px;

        margin-bottom: 22px;
    }

    .about-container {
        padding: 18px 15px;

        border-radius: 12px;
    }

    .about-section {
        flex-direction: column;

        align-items: stretch;
    }

    .about-image {
        flex: none;

        width: 100%;
        height: 190px;

        border-radius: 14px;
    }

    .about-content {
        padding: 18px !important;
    }

    .section-one,
    .section-two,
    .section-three {
        min-height: auto;
    }

    .section-two .about-image {
        order: 2;
    }

    .section-two .about-content {
        order: 1;
    }

    .divider {
        margin: 18px 0;
    }
}


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

@media (max-width: 400px) {

    .about-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-container {
        padding: 14px 10px;
    }

    .about-image {
        height: 175px;
    }

    .about-content {
        padding: 15px !important;
    }

    .about-content h2 {
        font-size: 16px;
    }

    .about-content p {
        font-size: 10px;
        line-height: 1.45;
    }
}









/* =====================================================
   ABOUT PAGE - CTA BANNER SAME WIDTH
===================================================== */

.about-page {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 12px 36px;
    background: #ffffff;
}


/* About main container */

.about-page .about-container {
    width: 100%;
    padding: 28px;
    background: #fff8ed;
    border-radius: 13px;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .about-page {
        max-width: 1320px;
    }

}


/* =====================================================
   DESKTOP / LAPTOP
===================================================== */

@media (min-width: 1200px) and (max-width: 1399px) {

    .about-page {
        max-width: 1140px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 992px) and (max-width: 1199px) {

    .about-page {
        max-width: 960px;
        padding-left: 15px;
        padding-right: 15px;
    }

}


/* =====================================================
   SMALL TABLET
===================================================== */

@media (min-width: 768px) and (max-width: 991px) {

    .about-page {
        max-width: 720px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .about-page .about-container {
        padding: 22px;
    }

}


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

@media (max-width: 767px) {

    .about-page {
        width: 100%;
        max-width: 100%;
        padding: 15px 10px 30px;
    }

    .about-page .about-container {
        padding: 15px;
        border-radius: 10px;
    }

}


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

@media (max-width: 480px) {

    .about-page {
        padding-left: 8px;
        padding-right: 8px;
    }

    .about-page .about-container {
        padding: 12px;
    }

}







/* =====================================================
   ABOUT CONTENT - LARGER & BETTER PROPORTION
===================================================== */


/* ---------- Common Section ---------- */

.about-section {
    width: 100%;
}


/* ---------- Images ---------- */

.about-image {
    flex: 0 0 260px !important;
    width: 260px !important;
    height: 195px !important;
}

.about-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}


/* =====================================================
   SECTION 1 - WHO WE ARE
===================================================== */

.section-one {
    height: 195px !important;
    min-height: 195px !important;
}

.section-one .about-image {
    width: 260px !important;
    height: 195px !important;
    flex: 0 0 260px !important;
}

.section-one .about-content {
    padding: 20px 28px !important;
}


/* =====================================================
   SECTION 2 - WHAT WE OFFER
===================================================== */

.section-two {
    min-height: 300px !important;
}

.section-two .about-image {
    width: 260px !important;
    height: 300px !important;
    flex: 0 0 260px !important;
}

.section-two .about-content {
    padding: 25px 30px 25px 38px !important;
}


/* =====================================================
   SECTION 3 - OUR MISSION
===================================================== */

.section-three {
    min-height: 195px !important;
}

.section-three .about-image {
    width: 260px !important;
    height: 195px !important;
    flex: 0 0 260px !important;
}

.section-three .about-content {
    padding: 22px 28px !important;
}


/* =====================================================
   HEADINGS
===================================================== */

.about-content h2 {
    font-size: 19px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
}


/* =====================================================
   TEXT
===================================================== */

.about-content p {
    font-size: 12px !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
}

.about-content .welcome-text {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
}


/* =====================================================
   DIVIDER
===================================================== */

.divider {
    margin: 20px 0 !important;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .about-image {
        flex: 0 0 230px !important;
        width: 230px !important;
    }

    .section-one,
    .section-three {
        height: 185px !important;
        min-height: 185px !important;
    }

    .section-one .about-image,
    .section-three .about-image {
        width: 230px !important;
        height: 185px !important;
    }

    .section-two {
        min-height: 270px !important;
    }

    .section-two .about-image {
        width: 230px !important;
        height: 270px !important;
    }

    .about-content p {
        font-size: 11.5px !important;
    }

}


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

@media (max-width: 576px) {

    .about-section {
        flex-direction: column !important;
        min-height: auto !important;
        height: auto !important;
    }


    .about-image,
    .section-one .about-image,
    .section-two .about-image,
    .section-three .about-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 220px !important;
        flex: none !important;
    }


    .about-content,
    .section-one .about-content,
    .section-two .about-content,
    .section-three .about-content {
        width: 100% !important;
        padding: 20px !important;
    }


    .about-content h2 {
        font-size: 18px !important;
    }


    .about-content p {
        font-size: 12px !important;
        line-height: 1.55 !important;
    }


    .about-content .welcome-text {
        font-size: 12.5px !important;
    }


    /* What We Offer image below text */

    .section-two .about-image {
        order: 2 !important;
    }

    .section-two .about-content {
        order: 1 !important;
    }

}


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

@media (max-width: 400px) {

    .about-image,
    .section-one .about-image,
    .section-two .about-image,
    .section-three .about-image {
        height: 190px !important;
    }


    .about-content,
    .section-one .about-content,
    .section-two .about-content,
    .section-three .about-content {
        padding: 17px !important;
    }


    .about-content h2 {
        font-size: 17px !important;
    }


    .about-content p {
        font-size: 11.5px !important;
        line-height: 1.5 !important;
    }

}


/* =====================================================
   WHAT WE OFFER - MOBILE FIX
===================================================== */

@media (max-width: 576px) {

    /* Section full width */
    .section-two {
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;

        display: flex !important;
        flex-direction: column !important;

        overflow: visible !important;
        position: relative !important;
    }


    /* White background should cover FULL section */
    .section-two::before {
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;
        height: 100% !important;

        border-radius: 10px !important;
    }


    /* Text area */
    .section-two .about-content {
        width: 100% !important;
        max-width: 100% !important;

        padding: 20px 18px !important;

        position: relative !important;
        z-index: 5 !important;

        box-sizing: border-box !important;
    }


    /* Heading */
    .section-two .about-content h2 {
        width: 100% !important;

        font-size: 18px !important;
        line-height: 1.3 !important;

        margin: 0 0 12px 0 !important;
    }


    /* Paragraph */
    .section-two .about-content p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 12px !important;
        line-height: 1.55 !important;

        margin: 0 0 14px 0 !important;

        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }


    /* Image below text */
    .section-two .about-image {
        width: 100% !important;
        max-width: 100% !important;

        height: 220px !important;

        flex: none !important;

        order: 2 !important;

        margin: 0 !important;
    }


    .section-two .about-image img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }

}


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

@media (max-width: 400px) {

    .section-two .about-content {
        padding: 18px 15px !important;
    }

    .section-two .about-content h2 {
        font-size: 17px !important;
        margin-bottom: 10px !important;
    }

    .section-two .about-content p {
        font-size: 11.5px !important;
        line-height: 1.5 !important;
    }

    .section-two .about-image {
        height: 190px !important;
    }

}


/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 350px) {

    .section-two .about-content {
        padding: 17px 13px !important;
    }

    .section-two .about-content h2 {
        font-size: 16px !important;
    }

    .section-two .about-content p {
        font-size: 11px !important;
        line-height: 1.48 !important;
    }

    .section-two .about-image {
        height: 175px !important;
    }

}










/* new shop css */


/* =====================================================
   BODY
===================================================== */

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Arial, sans-serif;
    color: #111111;
}


/* =====================================================
   SHOP SECTION
===================================================== */

.shop-section {
    width: 100%;
    padding: 30px 15px 50px;
}


/* =====================================================
   SHOP TITLE
===================================================== */

.shop-title {
    margin: 0 0 25px;
    text-align: center;

    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;

    color: #A63810;
}


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

.product-card {
    width: 100%;
    max-width: 100px;

    margin: 0 auto;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


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

.product-image-area {
    position: relative;

    width: 100%;
    height: 245px;

    overflow: hidden;

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

    background: #fffbea;
}


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

.product-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =====================================================
   BEST SELLER
===================================================== */

.best-seller {
    position: absolute;

    top: 10px;
    left: 10px;

    z-index: 10;

    padding: 5px 8px;

    border-radius: 20px;

  background: rgba(255, 197, 179, 0.25);

    color: rgba(0, 0, 0, 0.8);


    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;
}


/* =====================================================
   WISHLIST
===================================================== */
.wishlist-btn {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 15px;   /* Top pasun khali sarakavnyasathi */
    margin-right: 15px;  /* Right pasun aat madhe sarakavnyasathi */
    z-index: 10;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wishlist-btn svg {
    width: 21px;
    height: 21px;
    display: block;
    flex-shrink: 0;
}

.wishlist-btn svg path {
    stroke: #000000;
}

.wishlist-btn.active svg path {
    fill: #ff3366 !important;
    stroke: none !important;
}

.wishlist-btn.active svg {
    transform: scale(1.1);
}
/* =====================================================
   SLIDER DOTS
===================================================== */

.slider-dots {
    position: absolute;
    bottom: 19px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 20;

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

    gap: 5px;

    width: max-content;
    height: 7px;
}


/* =====================================================
   DOT
===================================================== */

.dot {
    width: 6.25px;
    height: 6.25px;

    min-width: 6.25px;
    min-height: 6.25px;

    aspect-ratio: 1 / 1;

    display: block;

    border-radius: 50%;

    background: rgba(191, 189, 189, 0.5);

    padding: 0;
    margin: 0;
}


/* =====================================================
   ACTIVE DOT
===================================================== */

.dot.active {
    background: #111111;
}

/* =====================================================
   PRODUCT CONTENT
===================================================== */

.product-content {
    position: relative;

    z-index: 2;

    background: #ffffff;

    border-radius: 20px 20px 24px 24px;

    padding: 15px 14px 16px;

    margin-top: -15px;

    min-height: 0;
}


/* =====================================================
   GREY SLIDER LINE
===================================================== */
.drag-line {
    width: 90px;
    height: 6px;

    background: #D1D1D1;

    border-radius: 56px;

    margin: 0 auto 14px auto;
}

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

.price-row {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 12px;
}


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

.price {
    display: inline-flex;

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

    min-width: 77px;

    padding: 7px 10px;

    border-radius: 100px;

    background: #eeeeee;

    color: #222222;

    font-size: 20px;

    font-weight: 500;

    line-height: 1;
}


/* =====================================================
   COURIER
===================================================== */

.courier {
    font-size: 15px;

    color: #A63810;

    white-space: nowrap;
}


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

.product-title {
    margin: 0;
    color: #111111;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

/* =====================================================
   PRODUCT SUBTITLE
===================================================== */

.product-subtitle {
    margin: 3px 0 14px;

    color: #a5a5a5;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.2;
}


/* =====================================================
   EMPTY SPACE
===================================================== */

.empty-space {
    height: 10px;
}


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

.product-buttons {
    display: flex;

    width: 100%;

    gap: 7px;
}


/* =====================================================
   BUTTONS
===================================================== */

.view-btn,
.cart-btn {
    display: flex;

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

    gap: 5px;

    flex: 1 0 0;

    border-radius: 30px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: normal;

    cursor: pointer;

    white-space: nowrap;

    box-sizing: border-box;

    transition: all 0.2s ease;
}


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

.view-btn {
    background: transparent;

    border: 1.5px solid #422607;

    color: #422607;

    font-weight: 600;

    padding: 9px 10px;
}


.view-btn:hover {
    background: #422607;

    color: #ffffff;
}


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

.cart-btn {
    background: #422607;

    border: 1.5px solid #422607;

    color: #ffffff;

    font-weight: 500;

    padding: 9px 9px;
}


.cart-btn:hover {
    background: #2e1a05;

    color: #ffffff;
}


.cart-btn svg {
    width: 17px !important;
    height: 17px !important;

    flex-shrink: 0;

    display: block;

    stroke: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 768px) {

    .shop-section {
        padding: 40px 15px 60px;
    }

    .shop-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .product-card {
        max-width: 330px;
    }

    .product-image-area {
        height: 270px;
    }

    .product-content {
        padding: 18px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-subtitle {
        font-size: 14px;
    }

    .view-btn,
    .cart-btn {
        font-size: 15px;
    }
}


/* =====================================================
   SMALL MOBILE
   SECOND IMAGE SARKHA
===================================================== */

@media (max-width: 400px) {

    .shop-section {
        padding: 20px 10px 35px;
    }


    .shop-title {
        font-size: 24px;

        margin-bottom: 20px;
    }


    /* Main card */
    .product-card {
        width: 100%;

        max-width: 100px;

        border-radius: 20px;
    }


    /* Image area */
    .product-image-area {
        height: 225px;
    }


    /* Best Seller */
    .best-seller {
        top: 8px;
        left: 9px;

        padding: 4px 7px;

        font-size: 10px;
    }


    /* Heart */
    .wishlist-btn {
        top: 7px;
        right: 7px;

        width: 31px;
        height: 31px;
    }


    .wishlist-btn svg {
        width: 19px;
        height: 19px;
    }


    /* Dots */
    .slider-dots {
        bottom: 6px;

        gap: 4px;
    }


    .dot {
        width: 5px;
        height: 5px;

        min-width: 5px;
        min-height: 5px;
    }


    /* White content */
    .product-content {
        padding: 12px 12px 14px;

        margin-top: -18px;

        border-radius: 18px 18px 22px 22px;
    }


    /* Grey line */
    .drag-line {
        width: 58px;
        height: 4px;

        margin: 0 auto 12px auto;
    }


    /* Price */
    .price-row {
        gap: 5px;

        margin-bottom: 11px;
    }


    .price {
        min-width: 60px;

        padding: 6px 9px;

        font-size: 12px;
    }


    .courier {
        font-size: 10px;
    }


    /* Title */
    .product-title {
        font-size: 18px;

        line-height: 1.2;
    }


    /* Subtitle */
    .product-subtitle {
        margin: 3px 0 13px;

        font-size: 13px;
    }


    /* Buttons */
    .product-buttons {
        gap: 6px;
    }


    .view-btn,
    .cart-btn {
        font-size: 12px;

        padding: 8px 8px;

        border-radius: 28px;
    }


    .cart-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
}
















/* =====================================================
   GLOBAL
===================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background: #ffffff;
    font-family: Arial, sans-serif;
    color: #111111;
}


/* =====================================================
   PRODUCT DETAIL CONTAINER
===================================================== */

.detail-container {
    width: calc(100% - 100px);
    max-width: 1180px;

    margin: 45px auto;

    display: flex;
    align-items: flex-start;

    gap: 32px;

    background: #ffffff;

    padding: 0;
}

/* =====================================================
   IMAGE SECTION
===================================================== */

.image-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
}


/* =====================================================
   MAIN IMAGE CONTAINER - part.png
===================================================== */

.main-preview {
    width: 372px;
    height: 436px;

    background: #fff9e8;

    border: 1px solid #e2e2e2;
    border-radius: 12px;

    padding: 0;

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

    overflow: hidden;
}

.main-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}


/* =====================================================
   MAIN IMAGE - part.png
===================================================== */


/* .main-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
} */
/* =====================================================
   THUMBNAILS CONTAINER
===================================================== */

.thumbnails {
    width: 134px;
     height: 436px;

    display: flex;
    flex-direction: column;

    gap: 17px;

    /* ONLY SCROLLING */
    /* height: 436px;
      max-height: 436px; */
    overflow-y: auto;
    overflow-x: hidden;

    /* scrollbar hide */
      flex-shrink: 0;
    scrollbar-width: none;
}

.thumbnails::-webkit-scrollbar {
    display: none;
}
/* =====================================================
   THUMBNAIL CONTAINER - part1/part2/part3
===================================================== */

.thumb {
    width: 134px;
    height: 134px;
       min-height: 134px;
    flex: 0 0 134px;

    padding: 0;

    background: #ffffff;

    border: 1px solid #e2e2e2;

    border-radius: 14px;

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

    overflow: hidden;

    cursor: pointer;

    transition: 0.2s ease;
}


/* =====================================================
   THUMBNAIL IMAGES
   part1.png / part2.png / part3.png
===================================================== */

.thumb img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    display: block;

    margin: 0;
}


/* =====================================================
   ACTIVE THUMBNAIL
===================================================== */

.thumb.active {
    border: 2px ;

    background: #ffffff;
}


/* =====================================================
   THUMBNAIL HOVER
===================================================== */

.thumb:hover {
    border-color: #f39a20;
}
/* =====================================================
   RIGHT DETAILS SECTION
===================================================== */

.details-section {
    flex: 1;

    min-width: 0;

    padding-top: 0;

    position: relative;
}


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

.wishlist-btn {
    position: absolute;

    top: 0;
    right: 0;

    width: 40px;
    height: 40px;

    border: none;

    border-radius: 50%;



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

    cursor: pointer;

    transition: 0.2s ease;
}


.wishlist-btn:hover {
    background: #eeeeee;

    transform: scale(1.05);
}


/* Wishlist Active */

.wishlist-btn.wishlist-active svg {
    fill: #ff3366 !important;
}


/* =====================================================
   PRODUCT HEADING
===================================================== */

.product-heading {
    margin: 0;

    padding-right: 55px;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.25;

    color: #111111;
}


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

.price-detail {
    margin-top: 13px;

    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap: 8px;
}


/* Current Price */

.current-price {
    font-size: 30px;

    line-height: 1;

    font-weight: 700;

    color: #c62828;
}


/* Old Price */

.old-price {
    font-size: 17px;

    color: #777777;

    text-decoration: line-through;
}


/* Discount */

.discount {
    font-size: 13px;

    color: #199447;

    font-weight: 600;
}


/* Inclusive */

.inclusive {
    font-size: 12px;

    color: #444444;
}


/* =====================================================
   RATING
===================================================== */

.rating {
    margin-top: 10px;

    display: flex;

    align-items: center;

    gap: 7px;
}


.stars {
    color: #ffb000;

    font-size: 19px;

    letter-spacing: 1px;
}


.rating-num {
    color: #111111;

    font-size: 15px;

    font-weight: 600;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.description {
    max-width: 570px;

    margin-top: 14px;

    margin-bottom: 14px;

    font-size: 14px;

    color: #222222;

    line-height: 1.45;
}


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

.quantity-box {
    margin-top: 8px;
}


.quantity-box label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 700;

    color: #111111;
}


/* =====================================================
   QUANTITY SELECTOR
===================================================== */

.qty-selector {
    width: 124px;
    height: 40px;

    display: flex;

    align-items: center;

    border: 1px solid #cfcfcf;

    border-radius: 22px;

    overflow: hidden;

    background: #ffffff;
}


/* Quantity Buttons */

.qty-btn {
    width: 40px;
    height: 100%;

    padding: 0;

    border: none;

    background: #f7f7f7;

    color: #222222;

    font-size: 19px;

    cursor: pointer;

    display: flex;

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

    transition: background 0.2s ease;
}


.qty-btn:hover {
    background: #ededed;
}


/* Quantity Input */

.qty-selector input {
    width: 44px;
    height: 100%;

    padding: 0;

    border: none;

    outline: none;

    background: #ffffff;

    color: #111111;

    text-align: center;

    font-size: 15px;

    font-weight: 600;
}


/* =====================================================
   STOCK ALERT
===================================================== */

.stock-alert {
    margin-top: 31px;

    margin-bottom: 8px;

    font-size: 13px;

    color: #d52f24;

    font-weight: 500;
}


/* =====================================================
   STOCK BAR
===================================================== */

.stock-bar {
    width: 100%;

    max-width: 575px;

    height: 4px;

    background: #dddddd;

    border-radius: 3px;

    position: relative;

    overflow: hidden;

    margin-bottom: 19px;
}


.stock-bar::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 75%;
    height: 100%;

    background: #b83b20;

    border-radius: 3px;
}


/* =====================================================
   ACTION BUTTONS
===================================================== */

.action-buttons {
    display: flex;

    gap: 16px;

    width: 100%;

    max-width: 575px;
}


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

.btn-add-cart,
.btn-buy-now {
    height: 43px;

    flex: 1;

    border-radius: 24px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


/* =====================================================
   ADD TO CART
===================================================== */

.btn-add-cart {
    background: #ffffff;

    color: #3b220c;

    border: 1.5px solid #3b220c;
}


.btn-add-cart:hover {
    background: #fffaf4;

    transform: translateY(-1px);
}


/* =====================================================
   BUY NOW
===================================================== */

.btn-buy-now {
    background: #3b220c;

    color: #ffffff;

    border: 1.5px solid #3b220c;
}


.btn-buy-now:hover {
    background: #271607;

    transform: translateY(-1px);
}


/* =====================================================
   CART ICON
===================================================== */

.cart-icon {
    margin-right: 7px;

    font-size: 14px;
}


/* =====================================================
   TABLET - 1100px
===================================================== */

@media (max-width: 1100px) {

    .detail-container {
        width: calc(100% - 50px);

        gap: 25px;
    }


    .main-preview {
        width: 340px;

        height: 410px;
    }


    .thumbnails {
        width: 115px;
    }


    .thumb {
        width: 115px;

        height: 115px;
    }


    .product-heading {
        font-size: 22px;
    }


    .current-price {
        font-size: 28px;
    }
}


/* =====================================================
   TABLET - 900px
===================================================== */

@media (max-width: 900px) {

    .detail-container {
        width: calc(100% - 30px);

        gap: 20px;
    }


    .main-preview {
        width: 310px;

        height: 390px;

        padding: 18px;
    }


    .main-preview img {
        width: 90%;

        height: 90%;
    }


    .thumbnails {
        width: 95px;

        gap: 12px;
    }


    .thumb {
        width: 95px;

        height: 105px;
    }


    .product-heading {
        font-size: 21px;
    }


    .description {
        font-size: 13px;
    }


    .action-buttons {
        gap: 10px;
    }
}


/* =====================================================
   MOBILE - 700px
===================================================== */

@media (max-width: 700px) {

    .detail-container {
        width: calc(100% - 24px);

        margin: 25px auto;

        flex-direction: column;

        gap: 25px;
    }


    /* Image Section */

    .image-section {
        width: 100%;

        justify-content: center;

        gap: 10px;
    }


    .main-preview {
        width: calc(100% - 110px);

        height: 390px;

        padding: 15px;

        background: #ffffff;
    }


    .main-preview img {
        width: 90%;

        height: 90%;
    }


    /* Thumbnails */

    .thumbnails {
        width: 100px;

        gap: 10px;
    }


    .thumb {
        width: 100px;

        height: 120px;

        padding: 7px;

        background: #ffffff;
    }


    /* Details */

    .details-section {
        width: 100%;
    }


    .product-heading {
        font-size: 21px;

        padding-right: 45px;
    }


    .current-price {
        font-size: 28px;
    }


    .old-price {
        font-size: 16px;
    }


    .description {
        max-width: 100%;

        font-size: 13px;
    }


    .stock-bar {
        max-width: 100%;
    }


    .action-buttons {
        max-width: 100%;
    }
}


/* =====================================================
   MOBILE - 450px
===================================================== */

@media (max-width: 450px) {

    .detail-container {
        width: calc(100% - 20px);

        margin: 20px auto;
    }


    /* Image Section */

    .image-section {
        flex-direction: column;

        align-items: center;

        width: 100%;
    }


    /* Main Image */

    .main-preview {
        width: 100%;

        height: 400px;

        padding: 15px;

        background: #ffffff;
    }


    .main-preview img {
        width: 88%;

        height: 88%;
    }


    /* Horizontal Thumbnails */

    .thumbnails {
        width: 100%;

        flex-direction: row;

        justify-content: center;

        gap: 10px;
    }


    .thumb {
        width: 85px;

        height: 85px;

        background: #ffffff;
    }


    /* Wishlist */

    .wishlist-btn {
        width: 36px;

        height: 36px;
    }


    /* Heading */

    .product-heading {
        font-size: 20px;

        padding-right: 42px;
    }


    /* Price */

    .current-price {
        font-size: 26px;
    }


    .price-detail {
        gap: 6px;
    }


    /* Rating */

    .rating {
        margin-top: 8px;
    }


    /* Description */

    .description {
        font-size: 13px;

        line-height: 1.5;
    }


    /* Buttons */

    .action-buttons {
        gap: 8px;
    }


    .btn-add-cart,
    .btn-buy-now {
        height: 42px;

        font-size: 12px;
    }
}


/* =====================================================
   EXTRA SMALL MOBILE - 360px
===================================================== */

@media (max-width: 360px) {

    .main-preview {
        height: 350px;
    }


    .main-preview img {
        width: 88%;

        height: 88%;
    }


    .thumb {
        width: 75px;

        height: 75px;
    }


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


    .current-price {
        font-size: 24px;
    }


    .btn-add-cart,
    .btn-buy-now {
        font-size: 11px;
    }
}











/* offline center */

/* Background and Global Styles */
body {
    background-color: #fcf8f5;
    font-family: 'Poppins', sans-serif;
}

/* Section Heading Styling */
.section-title {
    color: #A63810;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
}

/* Main Card Container */
.center-card {
    display: flex;
    padding: 24px 28px !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 12px;
    border: 1px solid #FFD7C8 !important;
    background-color: #FFF8ED !important;
}

/* Wrapper */
.center-details-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Location Title (Bangalore) */
.location-title {
    color: #A63810;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    padding-left: 0;
    gap: 12px;
    margin-bottom: 16px !important;
}

/* Email & Phone Alignment */
.email-info, .contact-info {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding-left: 36px; /* इमेल आणि फोन नंबर टेक्स्ट एकाच रेषेत ठेवण्यासाठी */
    gap: 10px;
}

/* Fixed SVG Icon Size */
.location-icon, .contact-svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* Address Text (इमेल आणि फोनच्या टेक्स्टच्या खाली सरळ मॅच होण्यासाठी) */
/* Address Text (इमेल आणि कॉन्टॅक्टच्या टेक्स्टच्या अगदी खाली एका सरळ रेषेत) */
.address-text {
    color: #575757;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding-left: 34px; /* इमेल आणि कॉन्टॅक्टच्या टेक्स्टच्या सरळ खाली अलाइन करण्यासाठी */
    margin-top: 6px !important;
    margin-bottom: 0 !important;
}

/* Map Container Wrapper */
.map-container-wrapper {
    width: 100%;
    height: 371px;
    border-radius: 13px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .center-card {
        padding: 16px !important;
    }

    .map-container-wrapper {
        height: 250px;
    }
}














/* TEMPORARILY HIDE MAIN HEADER
   Search + Wishlist + Cart + Sign In
   नंतर पुन्हा हवे असल्यास display:block करा
*/
.main-header {
    display: none !important;
}









/* =========================================================
   MOBILE HERO - REMOVE EXTRA BLANK SPACE
========================================================= */

@media (max-width: 767px) {

    .hero-carousel {
        height: auto !important;
        overflow: hidden;
    }

    .hero-carousel .carousel-inner {
        height: auto !important;
    }

    .hero-carousel .carousel-item {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-item img {
        width: 100%;
        height: auto !important;
        display: block;
        object-fit: contain;
    }

}








/* FINAL MOBILE HERO FIX */

@media (max-width: 480px) {

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-carousel .carousel-item.active,
    .hero-carousel .carousel-item-next,
    .hero-carousel .carousel-item-prev {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-item img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

}
















/* =========================================================
   MOBILE HERO - REMOVE EXTRA HEIGHT
========================================================= */

@media (max-width: 767px) {

    .hero-carousel.hero-bordered {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .hero-carousel.hero-bordered .carousel-inner {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel.hero-bordered .carousel-item {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel.hero-bordered .carousel-item img {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: block !important;
        object-fit: contain !important;
    }

}









/* =========================================================
   FINAL MOBILE HERO FIX
========================================================= */

@media (max-width: 767px) {

    .hero-carousel {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-inner {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-item {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-item.active {
        height: auto !important;
    }

    .hero-carousel .carousel-item img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    .hero-bordered::after {
        inset: 10px;
    }

}






/* =========================================================
   HERO CAROUSEL - MOBILE RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .hero-carousel {
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden;
    }

    .hero-carousel .carousel-inner {
        height: auto !important;
        overflow: hidden;
    }

    .hero-carousel .carousel-item {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-item img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }

}






/* =========================================================
   FINAL HERO CAROUSEL FIX
========================================================= */

.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

/* IMPORTANT:
   Carousel ची height image च्या proportion प्रमाणे */
.hero-carousel .carousel-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 2.2 / 1;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 100% !important;
    min-height: 0 !important;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


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

@media (max-width: 767px) {

    .hero-carousel {
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .hero-carousel .carousel-inner {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 2.2 / 1 !important;
        overflow: hidden !important;
    }

    .hero-carousel .carousel-item {
        height: 100% !important;
        min-height: 0 !important;
    }

    .hero-carousel .carousel-item img {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
    }

}



/* =====================================================
   BODY
===================================================== */

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Arial, sans-serif;
    color: #111111;
}


/* =====================================================
   SHOP SECTION
===================================================== */

.shop-section {
    width: 100%;
    padding: 30px 15px 50px;
}


/* =====================================================
   SHOP TITLE
===================================================== */

.shop-title {
    margin: 0 0 25px;
    text-align: center;

    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;

    color: #A63810;
}


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

.product-card {
    width: 100%;
    max-width: 100px;

    margin: 0 auto;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


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

.product-image-area {
    position: relative;

    width: 100%;
    height: 245px;

    overflow: hidden;

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

    background: #fffbea;
}


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

.product-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =====================================================
   BEST SELLER
===================================================== */

.best-seller {
    position: absolute;

    top: 10px;
    left: 10px;

    z-index: 10;

    padding: 5px 8px;

    border-radius: 20px;

  background: rgba(255, 197, 179, 0.25);

    color: rgba(0, 0, 0, 0.8);


    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;
}


/* =====================================================
   WISHLIST
===================================================== */
.wishlist-btn {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 15px;   /* Top pasun khali sarakavnyasathi */
    margin-right: 15px;  /* Right pasun aat madhe sarakavnyasathi */
    z-index: 10;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wishlist-btn svg {
    width: 21px;
    height: 21px;
    display: block;
    flex-shrink: 0;
}

.wishlist-btn svg path {
    stroke: #000000;
}

.wishlist-btn.active svg path {
    fill: #ff3366 !important;
    stroke: none !important;
}

.wishlist-btn.active svg {
    transform: scale(1.1);
}
/* =====================================================
   SLIDER DOTS
===================================================== */

.slider-dots {
    position: absolute;
    bottom: 19px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 20;

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

    gap: 5px;

    width: max-content;
    height: 7px;
}


/* =====================================================
   DOT
===================================================== */

.dot {
    width: 6.25px;
    height: 6.25px;

    min-width: 6.25px;
    min-height: 6.25px;

    aspect-ratio: 1 / 1;

    display: block;

    border-radius: 50%;

    background: rgba(191, 189, 189, 0.5);

    padding: 0;
    margin: 0;
}


/* =====================================================
   ACTIVE DOT
===================================================== */

.dot.active {
    background: #111111;
}

/* =====================================================
   PRODUCT CONTENT
===================================================== */

.product-content {
    position: relative;

    z-index: 2;

    background: #ffffff;

    border-radius: 20px 20px 24px 24px;

    padding: 15px 14px 16px;

    margin-top: -15px;

    min-height: 0;
}


/* =====================================================
   GREY SLIDER LINE
===================================================== */
.drag-line {
    width: 90px;
    height: 6px;

    background: #D1D1D1;

    border-radius: 56px;

    margin: 0 auto 14px auto;
}

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

.price-row {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 12px;
}


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

.price {
    display: inline-flex;

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

    min-width: 77px;

    padding: 7px 10px;

    border-radius: 100px;

    background: #eeeeee;

    color: #222222;

    font-size: 20px;

    font-weight: 500;

    line-height: 1;
}


/* =====================================================
   COURIER
===================================================== */

.courier {
    font-size: 15px;

    color: #A63810;

    white-space: nowrap;
}


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

.product-title {
    margin: 0;
    color: #111111;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

/* =====================================================
   PRODUCT SUBTITLE
===================================================== */

.product-subtitle {
    margin: 3px 0 14px;

    color: #a5a5a5;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.2;
}


/* =====================================================
   EMPTY SPACE
===================================================== */

.empty-space {
    height: 10px;
}


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

.product-buttons {
    display: flex;

    width: 100%;

    gap: 7px;
}


/* =====================================================
   BUTTONS
===================================================== */

.view-btn,
.cart-btn {
    display: flex;

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

    gap: 5px;

    flex: 1 0 0;

    border-radius: 30px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: normal;

    cursor: pointer;

    white-space: nowrap;

    box-sizing: border-box;

    transition: all 0.2s ease;
}


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

.view-btn {
    background: transparent;

    border: 1.5px solid #422607;

    color: #422607;

    font-weight: 600;

    padding: 9px 10px;
}


.view-btn:hover {
    background: #422607;

    color: #ffffff;
}


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

.cart-btn {
    background: #422607;

    border: 1.5px solid #422607;

    color: #ffffff;

    font-weight: 500;

    padding: 9px 9px;
}


.cart-btn:hover {
    background: #2e1a05;

    color: #ffffff;
}


.cart-btn svg {
    width: 17px !important;
    height: 17px !important;

    flex-shrink: 0;

    display: block;

    stroke: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 768px) {

    .shop-section {
        padding: 40px 15px 60px;
    }

    .shop-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .product-card {
        max-width: 330px;
    }

    .product-image-area {
        height: 270px;
    }

    .product-content {
        padding: 18px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-subtitle {
        font-size: 14px;
    }

    .view-btn,
    .cart-btn {
        font-size: 15px;
    }
}


/* =====================================================
   SMALL MOBILE
   SECOND IMAGE SARKHA
===================================================== */

@media (max-width: 400px) {

    .shop-section {
        padding: 20px 10px 35px;
    }


    .shop-title {
        font-size: 24px;

        margin-bottom: 20px;
    }


    /* Main card */
    .product-card {
        width: 100%;

        max-width: 270px;

        border-radius: 20px;
    }


    /* Image area */
    .product-image-area {
        height: 225px;
    }


    /* Best Seller */
    .best-seller {
        top: 8px;
        left: 9px;

        padding: 4px 7px;

        font-size: 10px;
    }


    /* Heart */
    .wishlist-btn {
        top: 7px;
        right: 7px;

        width: 31px;
        height: 31px;
    }


    .wishlist-btn svg {
        width: 19px;
        height: 19px;
    }


    /* Dots */
    .slider-dots {
        bottom: 6px;

        gap: 4px;
    }


    .dot {
        width: 5px;
        height: 5px;

        min-width: 5px;
        min-height: 5px;
    }


    /* White content */
    .product-content {
        padding: 12px 12px 14px;

        margin-top: -18px;

        border-radius: 18px 18px 22px 22px;
    }


    /* Grey line */
    .drag-line {
        width: 58px;
        height: 4px;

        margin: 0 auto 12px auto;
    }


    /* Price */
    .price-row {
        gap: 5px;

        margin-bottom: 11px;
    }


    .price {
        min-width: 60px;

        padding: 6px 9px;

        font-size: 12px;
    }


    .courier {
        font-size: 10px;
    }


    /* Title */
    .product-title {
        font-size: 18px;

        line-height: 1.2;
    }


    /* Subtitle */
    .product-subtitle {
        margin: 3px 0 13px;

        font-size: 13px;
    }


    /* Buttons */
    .product-buttons {
        gap: 6px;
    }


    .view-btn,
    .cart-btn {
        font-size: 12px;

        padding: 8px 8px;

        border-radius: 28px;
    }


    .cart-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
}


/* ===== SHOP CARD FULL WIDTH FIX ===== */
.product-card {
    max-width: 100% !important;
}













/* =====================================================
   GLOBAL
===================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background: #ffffff;
    font-family: Arial, sans-serif;
    color: #111111;
}


/* =====================================================
   PRODUCT DETAIL CONTAINER
===================================================== */

.detail-container {
    width: calc(100% - 100px);
    max-width: 1180px;

    margin: 45px auto;

    display: flex;
    align-items: flex-start;

    gap: 32px;

    background: #ffffff;

    padding: 0;
}

/* =====================================================
   IMAGE SECTION
===================================================== */

.image-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
}


/* =====================================================
   MAIN IMAGE CONTAINER - part.png
===================================================== */

.main-preview {
    width: 372px;
    height: 436px;

    background: #ffffff;

    border: 1px solid #e2e2e2;
    border-radius: 12px;

    padding: 0;

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

    overflow: hidden;
}


/* =====================================================
   MAIN IMAGE - part.png
===================================================== */

.main-preview img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    display: block;

    margin: 0;
}
/* =====================================================
   THUMBNAILS CONTAINER
===================================================== */

.thumbnails {
    width: 134px;

    display: flex;
    flex-direction: column;

    gap: 17px;

    /* ONLY SCROLLING */
    height: 436px;
    overflow-y: auto;
    overflow-x: hidden;

    /* scrollbar hide */
    scrollbar-width: none;
}

.thumbnails::-webkit-scrollbar {
    display: none;
}
/* =====================================================
   THUMBNAIL CONTAINER - part1/part2/part3
===================================================== */

.thumb {
    width: 134px;
    height: 134px;
        flex-shrink: 0;

    padding: 0;

    background: #ffffff;

    border: 1px solid #e2e2e2;

    border-radius: 14px;

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

    overflow: hidden;

    cursor: pointer;

    transition: 0.2s ease;
}


/* =====================================================
   THUMBNAIL IMAGES
   part1.png / part2.png / part3.png
===================================================== */

.thumb img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    display: block;

    margin: 0;
}


/* =====================================================
   ACTIVE THUMBNAIL
===================================================== */

.thumb.active {
    border: 2px ;

    background: #ffffff;
}


/* =====================================================
   THUMBNAIL HOVER
===================================================== */

.thumb:hover {
    border-color: #f39a20;
}
/* =====================================================
   RIGHT DETAILS SECTION
===================================================== */

.details-section {
    flex: 1;

    min-width: 0;

    padding-top: 0;

    position: relative;
}


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

.wishlist-btn {
    position: absolute;

    top: 0;
    right: 0;

    width: 40px;
    height: 40px;

    border: none;

    border-radius: 50%;



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

    cursor: pointer;

    transition: 0.2s ease;
}


.wishlist-btn:hover {
    background: #eeeeee;

    transform: scale(1.05);
}


/* Wishlist Active */

.wishlist-btn.wishlist-active svg {
    fill: #ff3366 !important;
}


/* =====================================================
   PRODUCT HEADING
===================================================== */

.product-heading {
    margin: 0;

    padding-right: 55px;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.25; 
   color: #111111;
   .product-title {
    margin-bottom: 16px !important; /* Hya mule title ani view button madhye space yeil */
}
}



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

.price-detail {
    margin-top: 13px;

    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap: 8px;
}


/* Current Price */

.current-price {
    font-size: 30px;

    line-height: 1;

    font-weight: 700;

    color: #c62828;
}


/* Old Price */

.old-price {
    font-size: 17px;

    color: #777777;

    text-decoration: line-through;
}


/* Discount */

.discount {
    font-size: 13px;

    color: #199447;

    font-weight: 600;
}


/* Inclusive */

.inclusive {
    font-size: 12px;

    color: #444444;
}


/* =====================================================
   RATING
===================================================== */

.rating {
    margin-top: 10px;

    display: flex;

    align-items: center;

    gap: 7px;
}


.stars {
    color: #ffb000;

    font-size: 19px;

    letter-spacing: 1px;
}


.rating-num {
    color: #111111;

    font-size: 15px;

    font-weight: 600;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.description {
    max-width: 570px;

    margin-top: 14px;

    margin-bottom: 14px;

    font-size: 14px;

    color: #222222;

    line-height: 1.45;
}


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

.quantity-box {
    margin-top: 8px;
}


.quantity-box label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 700;

    color: #111111;
}


/* =====================================================
   QUANTITY SELECTOR
===================================================== */

.qty-selector {
    width: 124px;
    height: 40px;

    display: flex;

    align-items: center;

    border: 1px solid #cfcfcf;

    border-radius: 22px;

    overflow: hidden;

    background: #ffffff;
}


/* Quantity Buttons */

.qty-btn {
    width: 40px;
    height: 100%;

    padding: 0;

    border: none;

    background: #f7f7f7;

    color: #222222;

    font-size: 19px;

    cursor: pointer;

    display: flex;

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

    transition: background 0.2s ease;
}


.qty-btn:hover {
    background: #ededed;
}


/* Quantity Input */

.qty-selector input {
    width: 44px;
    height: 100%;

    padding: 0;

    border: none;

    outline: none;

    background: #ffffff;

    color: #111111;

    text-align: center;

    font-size: 15px;

    font-weight: 600;
}


/* =====================================================
   STOCK ALERT
===================================================== */

.stock-alert {
    margin-top: 31px;

    margin-bottom: 8px;

    font-size: 13px;

    color: #d52f24;

    font-weight: 500;
}


/* =====================================================
   STOCK BAR
===================================================== */

.stock-bar {
    width: 100%;

    max-width: 575px;

    height: 4px;

    background: #dddddd;

    border-radius: 3px;

    position: relative;

    overflow: hidden;

    margin-bottom: 19px;
}


.stock-bar::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 75%;
    height: 100%;

    background: #b83b20;

    border-radius: 3px;
}


/* =====================================================
   ACTION BUTTONS
===================================================== */

.action-buttons {
    display: flex;

    gap: 16px;

    width: 100%;

    max-width: 575px;
}


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

.btn-add-cart,
.btn-buy-now {
    height: 43px;

    flex: 1;

    border-radius: 24px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


/* =====================================================
   ADD TO CART
===================================================== */

.btn-add-cart {
    background: #ffffff;

    color: #3b220c;

    border: 1.5px solid #3b220c;
}


.btn-add-cart:hover {
    background: #fffaf4;

    transform: translateY(-1px);
}


/* =====================================================
   BUY NOW
===================================================== */

.btn-buy-now {
    background: #3b220c;

    color: #ffffff;

    border: 1.5px solid #3b220c;
}


.btn-buy-now:hover {
    background: #271607;

    transform: translateY(-1px);
}


/* =====================================================
   CART ICON
===================================================== */

.cart-icon {
    margin-right: 7px;

    font-size: 14px;
}


/* =====================================================
   TABLET - 1100px
===================================================== */

@media (max-width: 1100px) {

    .detail-container {
        width: calc(100% - 50px);

        gap: 25px;
    }


    .main-preview {
        width: 340px;

        height: 410px;
    }


    .thumbnails {
        width: 115px;
    }


    .thumb {
        width: 115px;

        height: 115px;
    }


    .product-heading {
        font-size: 22px;
    }


    .current-price {
        font-size: 28px;
    }
}


/* =====================================================
   TABLET - 900px
===================================================== */

@media (max-width: 900px) {

    .detail-container {
        width: calc(100% - 30px);

        gap: 20px;
    }


    .main-preview {
        width: 310px;

        height: 390px;

        padding: 18px;
    }


    .main-preview img {
        width: 90%;

        height: 90%;
    }


    .thumbnails {
        width: 95px;

        gap: 12px;
    }


    .thumb {
        width: 95px;

        height: 105px;
    }


    .product-heading {
        font-size: 21px;
    }


    .description {
        font-size: 13px;
    }


    .action-buttons {
        gap: 10px;
    }
}


/* =====================================================
   MOBILE - 700px
===================================================== */

@media (max-width: 700px) {

    .detail-container {
        width: calc(100% - 24px);

        margin: 25px auto;

        flex-direction: column;

        gap: 25px;
    }


    /* Image Section */

    .image-section {
        width: 100%;

        justify-content: center;

        gap: 10px;
    }


    .main-preview {
        width: calc(100% - 110px);

        height: 390px;

        padding: 15px;

        background: #ffffff;
    }


    .main-preview img {
        width: 90%;

        height: 90%;
    }


    /* Thumbnails */

    .thumbnails {
        width: 100px;

        gap: 10px;
    }


    .thumb {
        width: 100px;

        height: 120px;

        padding: 7px;

        background: #ffffff;
    }


    /* Details */

    .details-section {
        width: 100%;
    }


    .product-heading {
        font-size: 21px;

        padding-right: 45px;
    }


    .current-price {
        font-size: 28px;
    }


    .old-price {
        font-size: 16px;
    }


    .description {
        max-width: 100%;

        font-size: 13px;
    }


    .stock-bar {
        max-width: 100%;
    }


    .action-buttons {
        max-width: 100%;
    }
}


/* =====================================================
   MOBILE - 450px
===================================================== */

@media (max-width: 450px) {

    .detail-container {
        width: calc(100% - 20px);

        margin: 20px auto;
    }


    /* Image Section */

    .image-section {
        flex-direction: column;

        align-items: center;

        width: 100%;
    }


    /* Main Image */

    .main-preview {
        width: 100%;

        height: 400px;

        padding: 15px;

        background: #ffffff;
    }

.main-preview {
    width: 372px;
    height: 436px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 10px; /* <-- He add kar */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
    /* Horizontal Thumbnails */

    .thumbnails {
        width: 100%;

        flex-direction: row;

        justify-content: center;

        gap: 10px;
    }


    .thumb {
        width: 85px;

        height: 85px;

        background: #ffffff;
    }


    /* Wishlist */

    .wishlist-btn {
        width: 36px;

        height: 36px;
    }


    /* Heading */

    .product-heading {
        font-size: 20px;

        padding-right: 42px;
    }


    /* Price */

    .current-price {
        font-size: 26px;
    }


    .price-detail {
        gap: 6px;
    }


    /* Rating */

    .rating {
        margin-top: 8px;
    }


    /* Description */

    .description {
        font-size: 13px;

        line-height: 1.5;
    }


    /* Buttons */

    .action-buttons {
        gap: 8px;
    }


    .btn-add-cart,
    .btn-buy-now {
        height: 42px;

        font-size: 12px;
    }
}


/* =====================================================
   EXTRA SMALL MOBILE - 360px
===================================================== */

@media (max-width: 360px) {

    .main-preview {
        height: 350px;
    }


    .main-preview img {
        width: 88%;

        height: 88%;
    }


    .thumb {
        width: 75px;

        height: 75px;
    }


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


    .current-price {

        font-size: 24px;
    }


    .btn-add-cart,
    .btn-buy-now {
        font-size: 11px;
    }
}








/* =====================================================
   BOOTSTRAP ROW FIX FOR SIDE-BY-SIDE CARDS
===================================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

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

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}


























@media (min-width: 768px) {
    .footer-top .row {
        justify-content: center;
        column-gap: 90px;
        row-gap: 24px;
    }

    .footer-top .col-3 {
        flex: 0 0 auto;
        width: auto;
    }
}
/* ================================================ */

.product-title {
    margin-bottom: 16px !important;
}























@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

.product-title {
    margin-bottom: 16px !important;
}




/* =========================================================
   FINAL THUMBNAIL FIX
========================================================= */

.image-section .thumbnails {
    width: 134px !important;
    height: 436px !important;

    display: flex !important;
    flex-direction: column !important;

    gap: 17px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    flex-shrink: 0 !important;

    scrollbar-width: none;
}

.image-section .thumbnails::-webkit-scrollbar {
    display: none;
}


.image-section .thumbnails .thumb {
    width: 134px !important;
    height: 134px !important;

    min-width: 134px !important;
    max-width: 134px !important;

    min-height: 134px !important;
    max-height: 134px !important;

    flex: 0 0 134px !important;

    padding: 0 !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    display: block !important;

    overflow: hidden !important;

    border: 1px solid #e2e2e2 !important;
    border-radius: 14px !important;

    background: transparent !important;

    line-height: 0 !important;
}


.image-section .thumbnails .thumb img {
    width: 134px !important;
    height: 134px !important;

    min-width: 134px !important;
    min-height: 134px !important;

    max-width: 134px !important;
    max-height: 134px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: block !important;

    object-fit: fill !important;
    object-position: center !important;
}








.main-preview {
    width: 100% !important;
    height: 100% !important;

    min-height: 100% !important;

    background: #fff9e8 !important;

    border-radius: 35px !important;

    padding: 0 !important;

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

    overflow: hidden !important;
}

.main-preview img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
}





/* =====================================================
   FINAL GALLERY HEIGHT ALIGNMENT
===================================================== */

.image-section {
    display: flex !important;
    align-items: stretch !important;
    gap: 14px !important;
}


/* LEFT MAIN CONTAINER */
.main-preview {
    width: 372px !important;

    /* 3 thumbnails + 2 gaps */
    height: 436px !important;

    background: #fff9e8 !important;

    border: 1px solid #e2e2e2 !important;
    border-radius: 12px !important;

    padding: 0 !important;

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

    overflow: hidden !important;
}


/* RIGHT THUMBNAILS AREA */
.thumbnails {
    width: 134px !important;

    height: 436px !important;

    display: flex !important;
    flex-direction: column !important;

    gap: 17px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    flex-shrink: 0 !important;

    scrollbar-width: none !important;
}

.thumbnails::-webkit-scrollbar {
    display: none !important;
}


/* EACH THUMBNAIL */
.thumb {
    width: 134px !important;
    height: 134px !important;

    min-width: 134px !important;
    max-width: 134px !important;

    min-height: 134px !important;
    max-height: 134px !important;

    flex: 0 0 134px !important;

    padding: 0 !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 1px solid #e2e2e2 !important;
    border-radius: 14px !important;

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

    overflow: hidden !important;
}


/* THUMBNAIL IMAGE */
.thumb img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;
}








/* =====================================================
   RESET
===================================================== */

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


/* =====================================================
   HTML / BODY
===================================================== */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    width: 100%;

    background: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    color: #111111;
}


/* =====================================================
   COMMON CONTAINER
===================================================== */

.container-fluid {
    width: 100%;

    margin: 0 auto;

    padding-left: 0;
    padding-right: 0;
}


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

.home-section {
    width: 100%;
    max-width: 1545px;
    margin: 0 auto;
    padding: 60px 0 70px;
    background: #ffffff;
}


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

.home-header {
    width: 100%;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}


/* =====================================================
   HEADING
===================================================== */

.heading-area {
    min-width: 0;
}

.collection-small-title {
    margin: 0 0 4px;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 700;

    color: #111111;
}


.heading-area h1 {
    margin: 0;

    font-size: 30px;

    line-height: 1.08;

    font-weight: 700;

    color: #aa3b17;

    letter-spacing: -0.4px;
}


/* =====================================================
   VIEW ALL BUTTON
===================================================== */

.view-all-btn {
    width: 148px;

    min-width: 148px;

    height: 47px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #555555;

    border-radius: 50px;

    outline: none;

    background: #ffffff;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.view-all-btn:hover {
    background: #111111;

    border-color: #111111;

    color: #ffffff;
}


/* =====================================================
   COLLECTION CARD
===================================================== */

.collection-card {
    position: relative;

    width: 100%;

    height: 283px;

    overflow: hidden;

    border-radius: 20px;

    background: #f5ead6;

    transition: transform 0.25s ease;
}


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


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


.collection-card {
    position: relative;

    width: 100%;
    height: 283px;

    overflow: hidden;

    border-radius: 20px;

    background: #fff4dc;

    transition: transform 0.25s ease;
}

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


/* =====================================================
   FULL IMAGE - NO CROPPING
===================================================== */

.collection-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    background: #fff4dc;
}

/* =====================================================
   BOTTOM GRADIENT
===================================================== */

.card-gradient {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;

    min-height: 125px;

    padding: 55px 15px 14px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.12) 15%,
            rgba(0, 0, 0, 0.38) 32%,
            rgba(0, 0, 0, 0.70) 62%,
            rgba(0, 0, 0, 0.97) 100%
        );
}


/* =====================================================
   CARD CONTENT
===================================================== */

.card-content {
    min-width: 0;
}


.card-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.08;

    font-weight: 400;

    word-break: normal;
}


.card-content span {
    display: block;

    margin-top: 4px;

    color: #ffffff;

    font-size: 9px;

    line-height: 1;

    font-weight: 400;

    letter-spacing: 0.2px;
}


/* =====================================================
   CARD ARROW
===================================================== */

.card-arrow {
    flex-shrink: 0;

    margin-left: 10px;

    margin-bottom: 10px;

    color: #ffffff;

    font-size: 21px;

    line-height: 1;

    font-weight: 300;
}


/* =====================================================
   COLLECTION SECTION
===================================================== */

.collection-section {
    display: none;

    width: 100%;

    min-height: 100vh;

    padding: 45px 45px 65px;

    background: #ffffff;
}


/* =====================================================
   COLLECTION PAGE HEADER
===================================================== */

.collection-page-header {
    position: relative;

    width: 100%;

    margin-bottom: 35px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.collection-page-header h2 {
    margin: 0;

    color: #aa3b17;

    font-size: 30px;

    line-height: 1;

    font-weight: 700;

    text-align: center;
}


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

.back-btn {
    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    height: 42px;

    padding: 0 20px;

    border: 1px solid #555555;

    border-radius: 50px;

    background: #ffffff;

    color: #111111;

    font-size: 14px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.back-btn:hover {
    background: #111111;

    border-color: #111111;

    color: #ffffff;
}


/* =====================================================
   COLLECTION SECTION ROW
===================================================== */

.collection-section .row {
    row-gap: 18px;
}


/* =====================================================
   LARGE LAPTOP / DESKTOP
===================================================== */

@media (min-width: 1200px) {

    .home-section {
        padding-left: 45px;
        padding-right: 45px;
    }

    .collection-section {
        padding-left: 45px;
        padding-right: 45px;
    }

}


/* =====================================================
   LAPTOP
===================================================== */

@media (min-width: 992px) and (max-width: 1199px) {

    .home-section {
        padding: 50px 35px 60px;
    }

    .collection-section {
        padding: 40px 35px 60px;
    }

    .collection-card {
        height: 270px;
    }

    .heading-area h1 {
        font-size: 28px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 576px) and (max-width: 991px) {

    .home-section {
        padding: 45px 30px 55px;
    }

    .collection-section {
        padding: 40px 30px 55px;
    }

    .home-header {
        margin-bottom: 30px;
    }

    .heading-area h1 {
        font-size: 27px;
    }

    .collection-small-title {
        font-size: 16px;
    }

    .view-all-btn {
        width: 135px;

        min-width: 135px;

        height: 44px;

        font-size: 15px;
    }

    .collection-card {
        height: 285px;
    }

    .collection-page-header h2 {
        font-size: 28px;
    }

}


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

@media (max-width: 575px) {

    .home-section {
        padding: 32px 18px 45px;
    }

    .collection-section {
        padding: 30px 18px 45px;
    }


    /* HEADER */

    .home-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-bottom: 28px;
    }


    /* HEADING */

    .collection-small-title {
        margin-bottom: 5px;

        font-size: 15px;
    }


    .heading-area h1 {
        font-size: 24px;

        line-height: 1.08;

        letter-spacing: 0;
    }


    .desktop-break {
        display: none;
    }


    /* BUTTON */

    .view-all-btn {
        width: 115px;

        min-width: 115px;

        height: 42px;

        padding: 0 15px;

        font-size: 14px;
    }


    /* CARDS */

    .collection-card {
        height: 300px;

        border-radius: 18px;
    }


    .card-gradient {
        min-height: 120px;

        padding: 50px 14px 13px;
    }


    .card-content h3 {
        font-size: 15px;
    }


    .card-content span {
        font-size: 9px;
    }


    .card-arrow {
        font-size: 20px;

        margin-bottom: 9px;
    }


    /* COLLECTION HEADER */

    .collection-page-header {
        justify-content: center;

        padding-top: 5px;

        margin-bottom: 28px;
    }


    .collection-page-header h2 {
        font-size: 24px;

        line-height: 1.1;
    }


    .back-btn {
        position: static;

        transform: none;

        height: 38px;

        padding: 0 15px;

        font-size: 13px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .home-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .collection-section {
        padding-left: 14px;
        padding-right: 14px;
    }


    .heading-area h1 {
        font-size: 21px;
    }


    .collection-card {
        height: 270px;
    }


    .collection-page-header {
        gap: 12px;

        justify-content: space-between;
    }


    .collection-page-header h2 {
        font-size: 21px;
    }


    .back-btn {
        padding: 0 12px;

        font-size: 12px;
    }

}








/* =========================================================
   PAGE ENTRY + SCROLL ANIMATIONS
   Added without changing existing layout/images
   ========================================================= */

@keyframes shankhPageFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shankhNavFade {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Keep the navigation links on the right side */
.main-nav-list {
    margin-left: auto !important;
}

/* Smooth entrance for every normal page */
.page-content-animate {
    animation: shankhPageFadeUp .75s ease both;
}

/* Header navigation entrance */
.main-nav-list.page-nav-animate {
    animation: shankhNavFade .65s ease .15s both;
}

/* Cards/sections reveal when they enter the viewport */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .65s ease,
        transform .65s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Small stagger between cards */
.scroll-reveal[data-delay="1"] { transition-delay: .08s; }
.scroll-reveal[data-delay="2"] { transition-delay: .16s; }
.scroll-reveal[data-delay="3"] { transition-delay: .24s; }
.scroll-reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    .page-content-animate,
    .main-nav-list.page-nav-animate,
    .scroll-reveal {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}





.main-nav-container,
.main-nav .container,
.main-nav-list,
.main-nav .nav-item {
    position: relative;
    z-index: 1001;
    overflow: visible !important;
}

#storeMenu {
    z-index: 10000 !important;
}












html {
    overflow-y: scroll;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    overflow-x: hidden;
}
















/* =========================================
   MOBILE NAVBAR - LOGO LEFT / MENU RIGHT
========================================= */

@media (max-width: 768px) {

    .main-nav-container {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 70px !important;
    }

    /* LOGO - LEFT 10px */
    .main-nav .brand-logo {
        position: absolute !important;
        left: 10px !important;
        top: 50% !important;

        right: auto !important;
        margin: 0 !important;

        transform: translateY(-50%) !important;
    }

    /* HAMBURGER - RIGHT 10px */
    .main-nav .nav-toggle {
        position: absolute !important;
        right: 10px !important;
        top: 50% !important;

        left: auto !important;
        bottom: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        width: 40px !important;
        height: 40px !important;

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

        transform: translateY(-50%) !important;
    }

}












/* =========================================================
   MOBILE - HORIZONTAL PRODUCT THUMBNAILS
========================================================= */

@media (max-width: 450px) {

    .image-section .thumbnails {
        width: 100% !important;
        height: 85px !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        justify-content: flex-start !important;
        flex-shrink: 0 !important;
        scrollbar-width: none !important;
    }

    .image-section .thumbnails::-webkit-scrollbar {
        display: none !important;
    }

    .image-section .thumbnails .thumb {
        width: 85px !important;
        height: 85px !important;
        min-width: 85px !important;
        max-width: 85px !important;
        min-height: 85px !important;
        max-height: 85px !important;
        flex: 0 0 85px !important;
    }

    .image-section .thumbnails .thumb img {
        width: 85px !important;
        height: 85px !important;
        min-width: 85px !important;
        min-height: 85px !important;
        max-width: 85px !important;
        max-height: 85px !important;
    }
}