```css
/* =========================================================
   Bindeshwari  Agarbatti DRY FRUITS
   MAIN STYLESHEET
========================================================= */

:root {
    --green: #052d24;
    --green-light: #0b4034;
    --dark-green: #031d18;

    --gold: #c6a15b;
    --gold-light: #e4c77e;

    --cream: #f8f3e8;
    --white: #ffffff;

    --text: #222222;
    --muted: #777777;

    --border: #e7e0d2;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: 'Poppins', sans-serif;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #200202;
    color: #eeeeee;
    font-size: 11px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(198, 161, 91, 0.25);
}

.top-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-item i {
    color: var(--gold);
    font-size: 15px;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    background: var(--green);
    padding: 15px 0;
    color: #ffffff;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ad8f14;
}

.brand-logo {
    width: 48px;
    height: 48px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: serif;
    font-size: 18px;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    line-height: 20px;
    font-weight: 600;
}

.brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    letter-spacing: 4px;
}


/* =========================================================
   SEARCH
========================================================= */

.search-box {
    background: #561C14;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 25px;

    display: flex;
    align-items: center;

    padding: 8px 15px;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;

    color: #ffffff;

    width: 100%;

    font-size: 12px;
}

.search-box input::placeholder {
    color: #aaaaaa;
}

.search-box i {
    color: #ffffff;
}


/* =========================================================
   HEADER ICONS
========================================================= */

.header-icons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.header-icon {
    color: #ffffff;
    position: relative;
    font-size: 19px;

    transition: 0.3s;
}

.header-icon:hover {
    color: var(--gold-light);
}

.cart-count {
    position: absolute;

    top: -9px;
    right: -10px;

    background: var(--gold);
    color: #111111;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    font-size: 12px;
font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar-custom {
    background: #561C14;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    border-bottom: 1px solid rgba(198, 161, 91, 0.18);
}

.navbar-custom a {
    color: #dddddd;

    font-size: 12px;

    padding: 14px 18px !important;

    transition: 0.3s;
}

.navbar-custom a:hover {
    color: goldenrod;
}

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    min-height: 530px;

    /*background:
        radial-gradient(
            circle at 75% 45%,
            rgba(198, 161, 91, 0.18),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #031f19 0%,
            #07362b 50%,
            #0a4033 100%
        );*/
        background-image:url('../assets/image/background-desktop.png');

    color: #ffffff;

    position: relative;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(198, 161, 91, 0.18);

    border-radius: 50%;

    right: 5%;
    top: 30px;
}

.hero-content {
    padding: 90px 0;

    position: relative;

    z-index: 2;
}

.hero-small {
    color: var(--gold-light);

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 11px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(50px, 6vw, 80px);

    line-height: 0.85;

    font-weight: 600;

    color: #f1d18b;

    max-width: 550px;
}

.hero-description {
    color: #d5ddd9;

    font-size: 14px;

    max-width: 430px;

    margin: 25px 0;

    line-height: 1.8;
}
/*background-mobile--*/
@media (max-width: 767px) {

    .hero {

        background-image: url('../assets/image/background-mobile.png');

        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;

        position: relative;
    }

    .hero-content {
        margin-top: 390px;
        margin-left: 30px;
    }

    #desktopcnt {
        display: none;
    }

}

/* =========================================================
   GOLD BUTTON
========================================================= */

.gold-btn {
    background-color: #c6a15b;
    color: #052d24;
    border: 1px solid #c6a15b;
    padding: 13px 28px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.gold-btn:hover {
    background-color: #e4c77e;
    border-color: #e4c77e;
    color: #052d24;
    transform: translateY(-2px);
}

/* =========================================================
   HERO PRODUCT
========================================================= */

.hero-product {
    position: relative;

    height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.product-pack {
    width: 190px;
    height: 290px;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            #183f34,
            #05231d
        );

    border: 1px solid rgba(198, 161, 91, 0.5);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    color: var(--gold-light);

    position: absolute;
}

.product-pack:nth-child(1) {
    transform: rotate(-7deg) translateX(-110px);
}

.product-pack:nth-child(2) {
    transform: rotate(7deg) translateX(110px);
}

.pack-logo {
    border: 1px solid var(--gold);

    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.pack-title {
    font-family: 'Cormorant Garamond', serif;

    font-size: 24px;

    text-align: center;
}

.pack-product {
    font-size: 11px;

    letter-spacing: 2px;

    margin-top: 5px;
}

.nut-bowl {
    position: absolute;

    bottom: 20px;

    width: 250px;
    height: 90px;

    background:
        radial-gradient(
            ellipse,
            #d3a566,
            #724522
        );

    border-radius: 50%;

    box-shadow:
        0 20px 30px rgba(0, 0, 0, 0.4);
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    background: #ffffff;

    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.08);

    padding: 18px 0;

    position: relative;

    z-index: 5;
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 10px;

    justify-content: center;

    border-right: 1px solid #dddddd;
}

.trust-item:last-child {
    border: none;
}

.trust-item i {
    color: var(--gold);

    font-size: 24px;
}

.trust-item strong {
    display: block;

    font-size: 11px;
}

.trust-item span {
    display: block;

    color: #777777;

    font-size: 9px;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section {
    padding: 70px 0;
}

.section-title {
    color: #3e1140;

    font-size: 42px;

    font-weight: 600;
}

.section-subtitle {
    color: #888888;

    font-size: 12px;

    max-width: 500px;

    margin: auto;
}

.gold-line {
    width: 70px;

    height: 2px;

    background: var(--gold);

    margin: 15px auto 20px;
}


/* =========================================================
   COLLECTION
========================================================= */

.category-card {
    position: relative;

    height: 180px;

    border-radius: 8px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #85542c,
            #d6a45e
        );

    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);   
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
/* 1st - Silver */
.row > div:nth-child(1) .category-card::before {
    background-image: url("../assets/image/silver.jpeg");
}


/* 2nd - Gold */
.row > div:nth-child(2) .category-card::before {
    background-image: url("../assets/image/gold.png");
}


/* 3rd - Diamond */
.row > div:nth-child(3) .category-card::before {
    background-image: url("../assets/image/diamond.png");
}


/* 4th - Platinum */
.row > div:nth-child(4) .category-card::before {
    background-image: url("../assets/image/platinum.jpeg");
}


.category-name {
    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    padding: 12px;

    background: rgba(86, 28, 20);

    color: #ffffff;

    text-align: center;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
}

#collection {
    background-color: #f5f0e6;
}
/* =========================================================
   PRODUCTS SECTION
========================================================= */
/*
.products-section {
    background: var(--cream);
}
*/
#products {
    background-image: url("../assets/image/best-seller-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    height:100%
}

.product-card {
    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 8px;

    overflow: hidden;

    transition: 0.3s;

    position: relative;

    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.1);
}


/* =========================================================
   WISHLIST
========================================================= */

.wishlist {
    position: absolute;

    right: 12px;
    top: 12px;

    background: #ffffff;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    border: none;

    z-index: 2;

    color: #999999;

    transition: 0.3s;
}

.wishlist:hover {
    color: #b33a3a;

    transform: scale(1.1);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
    height: 230px;

    background:
        linear-gradient(
            135deg,
            #e8ddc8,
            #faf7ef
        );

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;
}

.fake-pack {
    width: 115px;
    height: 175px;

    background:
        linear-gradient(
            145deg,
            #1a4c3e,
            #06261e
        );

    border-radius: 7px;

    box-shadow:
        0 12px 20px rgba(0, 0, 0, 0.25);

    color: var(--gold-light);

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 15px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.product-info {
    padding: 15px;
}

.product-title {
    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 500;
}

.rating {
    color: #d29d2c;

    font-size: 11px;

    margin: 5px 0;
}

.rating span {
    color: #888888;

    margin-left: 4px;
}

.price {
    font-weight: 600;

    font-size: 16px;
}

.old-price {
    color: #aaaaaa;

    text-decoration: line-through;

    font-size: 11px;

    margin-left: 5px;
}


/* =========================================================
   ADD CART BUTTON
========================================================= */

.add-cart {
    background: var(--green);

    color: #ffffff;

    border: none;

    width: 38px;
    height: 38px;

    border-radius: 6px;

    transition: 0.3s;
}

.add-cart:hover {
    background: var(--gold);

    color: #111111;
}


/* =========================================================
   GIFT BANNER
========================================================= */

.gift-banner {
  background: radial-gradient(
    circle at 75% 50%,
    rgba(168, 85, 247, 0.22),
    transparent 30%
), #2b0a3d;

    padding: 70px;

    border-radius: 10px;

    color: #ffffff;

    overflow: hidden;

    position: relative;
}

.gift-banner h2 {
    color: var(--gold-light);

    font-size: 50px;

    max-width: 500px;
}

.gift-box {
    width: 270px;
    height: 190px;

    background:
        linear-gradient(
            145deg,
            #161b17,
            #30332b
        );

    border: 1px solid var(--gold);

    border-radius: 10px;

    transform: rotate(-7deg);

    display: flex;

    justify-content: center;

    align-items: center;

    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;

    color: var(--gold-light);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4);
}
/* =========================================================
   special combo offer section
========================================================= */

#offers {
    background-color: #f5f0e6;
}

.product-card {
    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 8px;

    overflow: hidden;

    transition: 0.3s;

    position: relative;

    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   index page gifting section
========================================================= */

#gifting {
    background-image: url("../assets/image/best-seller-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    height:100%
}

.product-card {
    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 8px;

    overflow: hidden;

    transition: 0.3s;

    position: relative;

    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   the Bindeshwari  Agarbatti promise sectino
========================================================= */

#wellness {
    background-image: url("../assets/image/special-combo-offers1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    height:100%
}

.product-card {
    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 8px;

    overflow: hidden;

    transition: 0.3s;

    position: relative;

    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   testimonial section
========================================================= */

#testimonial {
    background-color: #f5f0e6;

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-card {
    text-align: center;

    padding: 25px 15px;
}

.why-icon {
    width: 65px;
    height: 65px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    color: var(--gold);

    font-size: 25px;
}

.why-card h5 {
    margin-top: 15px;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    font-weight: 600;
}

.why-card p {
    color: #888888;

    font-size: 11px;
}


/* =========================================================
   REVIEWS
========================================================= */

.review-section {
    background: var(--cream);
}

.review-card {
    background: #3e1140;

    padding: 30px;

    border-radius: 8px;

    border: 1px solid #eeeeee;

    height: 100%;
}

.review-stars {
    color: #c69a42;

    margin-bottom: 15px;
}

.review-text {
    color: #666666;

    font-size: 13px;

    line-height: 1.8;
}

.review-user {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;
}

.avatar {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #0a3b30;

    color: var(--gold-light);

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: serif;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    background: var(--green);

    padding: 55px 20px;

    text-align: center;

    color: #ffffff;
}

.newsletter h2 {
    color: var(--gold-light);

    font-size: 40px;
}

.newsletter-form {
    max-width: 550px;

    margin: 25px auto 0;

    display: flex;

    background: #ffffff;

    padding: 5px;

    border-radius: 4px;
}

.newsletter-form input {
    border: none;

    outline: none;

    padding: 12px;

    flex: 1;
}

.newsletter-form input:focus {
    box-shadow: none;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background-image:url('../assets/image/best-seller-bg.png') !important;

    color: #aaaaaa;

    padding: 60px 0 20px;
}

.footer h4 {
    color: var(--gold-light);

    font-size: 20px;

    margin-bottom: 20px;
}

.footer p,
.footer li,
.footer a {
    font-size: 11px;

    color: #aaaaaa;

    line-height: 2;
}

.footer ul {
    list-style: none;

    padding: 0;
}

.footer a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    margin-top: 30px;

    padding-top: 20px;

    font-size: 10px;
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {

    .top-bar {
        display: none;
    }

    .search-box {
        display: none;
    }

    .hero-content {
        padding: 60px 20px 30px;

        text-align: center;
    }

    .hero h1 {
        margin: auto;
    }

    .hero-description {
        margin: 20px auto;
    }

    .hero-product {
        height: 350px;
    }

    .trust-item {
        border: none;

        margin: 8px 0;
    }

    .gift-banner {
        padding: 40px 25px;

        text-align: center;
    }

    .gift-banner h2 {
        font-size: 38px;

        margin: auto;
    }

    .gift-box {
        margin: 35px auto 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .brand-name {
        font-size: 22px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: 50px;
    }

    .product-pack {
        width: 140px;

        height: 220px;
    }

    .product-pack:nth-child(1) {
        transform:
            rotate(-7deg)
            translateX(-70px);
    }

    .product-pack:nth-child(2) {
        transform:
            rotate(7deg)
            translateX(70px);
    }

    .category-card {
        height: 150px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 35px;
    }

    .newsletter-form {
        flex-direction: column;

        gap: 5px;
    }

    .newsletter-form .gold-btn {
        width: 100%;
    }

    .gift-box {
        width: 220px;
        height: 150px;
    }

    .top-item {
        justify-content: flex-start;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 43px;
    }

    .product-pack {
        width: 125px;
        height: 200px;
    }

    .product-pack:nth-child(1) {
        transform:
            rotate(-7deg)
            translateX(-60px);
    }

    .product-pack:nth-child(2) {
        transform:
            rotate(7deg)
            translateX(60px);
    }

    .pack-title {
        font-size: 18px;
    }

    .pack-product {
        font-size: 8px;
    }

    .section-title {
        font-size: 31px;
    }
}
}
#contact {
    background-image: url("../assets/image/contact.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#newsletter{
         background-color: #844d04;
}