
    :root {
        --sr-red: #ED1B24;
        --sr-red-deep: #D9141B;
        --sr-orange: #F57222;
        --sr-amber: #F9A61A;
        --sr-ink: #57584A;
        --sr-night: #2A2B24;
        --sr-line: #EDE8E1;
        --sr-flame: linear-gradient(135deg, #F9A61A 0%, #F57222 48%, #ED1B24 100%);
        --sr-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
    }

    @media (prefers-reduced-motion: no-preference) {
        html {
            scroll-behavior: smooth;
        }
    }

    #services,
    #hampers,
    #products {
        scroll-margin-top: 90px;
    }


    /* ---------- Buttons ---------- */

    .sr-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        padding: .8rem 1.6rem;
        border: 2px solid transparent;
        border-radius: 999px;
        font-weight: 700;
        line-height: 1.2;
        text-decoration: none;
        transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
    }

    .sr-btn:hover {
        transform: translateY(-1px);
    }

    .sr-btn:focus-visible,
    .sr-tile-link:focus-visible {
        outline: 3px solid var(--sr-amber);
        outline-offset: 3px;
    }

    .sr-btn-flame {
        background: var(--sr-red-deep);
        color: #fff;
    }

    .sr-btn-flame:hover {
        background: #B90F15;
        color: #fff;
        box-shadow: 0 8px 18px rgba(217, 20, 27, .3);
    }

    .sr-btn-line {
        background: transparent;
        color: var(--sr-night);
        border-color: var(--sr-night);
    }

    .sr-btn-line:hover {
        background: var(--sr-night);
        color: #fff;
    }

    .sr-btn-gold {
        background: var(--sr-amber);
        color: var(--sr-night);
    }

    .sr-btn-gold:hover {
        background: #FFB733;
        color: var(--sr-night);
        box-shadow: 0 8px 18px rgba(249, 166, 26, .3);
    }

    .sr-btn-ghost-light {
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, .55);
    }

    .sr-btn-ghost-light:hover {
        background: #fff;
        color: var(--sr-night);
    }


    /* ---------- Hero ---------- */

    .sr-hero {
        position: relative;
        overflow: hidden;
        margin-bottom: clamp(3rem, 7vw, 5.5rem);
        padding: clamp(1.75rem, 5vw, 4rem);
        border: 1px solid var(--sr-line);
        border-radius: 28px;
        background:
            radial-gradient(60% 80% at 100% 0%, rgba(249, 166, 26, .22), transparent 70%),
            radial-gradient(50% 70% at 0% 100%, rgba(237, 27, 36, .07), transparent 70%),
            #fff;
    }

    .sr-hero-brand {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: var(--sr-ink);
    }

    .sr-hero-brand i {
        color: var(--sr-orange);
    }

    .sr-hero-title {
        margin: 0 0 1rem;
        font-family: var(--sr-display);
        font-weight: 400;
        font-size: clamp(2.3rem, 5.4vw, 4.1rem);
        line-height: 1.02;
        letter-spacing: -.01em;
        color: var(--sr-night);
    }

    .sr-hero-lead {
        max-width: 34rem;
        margin: 0 0 1.75rem;
        font-size: 1.1rem;
        color: var(--sr-ink);
    }

    .sr-hero-cta {
        display: flex;
        flex-wrap: wrap;
        gap: .75rem;
    }

    .sr-hero-points {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem 1.5rem;
        margin: 1.75rem 0 0;
        padding: 0;
        list-style: none;
        font-weight: 600;
        font-size: .95rem;
        color: var(--sr-ink);
    }

    .sr-hero-points i {
        margin-right: .35rem;
        color: var(--sr-orange);
    }

    .sr-hero-visual {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
    }

    /* the brush-burst behind the picture echoes the logo mark */
    .sr-hero-visual::before {
        content: "";
        position: absolute;
        inset: 2% 0 0 8%;
        background: var(--sr-flame);
        border-radius: 38% 62% 46% 54% / 52% 40% 60% 48%;
        transform: rotate(-8deg);
    }

    .sr-hero-img,
    .sr-hero-fallback {
        position: absolute;
        inset: 6% 8% 8% 0;
        width: 92%;
        height: 86%;
        border: 6px solid #fff;
        border-radius: 46% 54% 50% 50% / 52% 44% 56% 48%;
        box-shadow: 0 18px 40px rgba(42, 43, 36, .2);
    }

    .sr-hero-img {
        object-fit: cover;
    }

    .sr-hero-fallback {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        background: #fff;
        font-size: clamp(2rem, 6vw, 3.2rem);
        color: var(--sr-orange);
    }

    .sr-hero-fallback i:nth-child(1) {
        color: var(--sr-amber);
    }

    .sr-hero-fallback i:nth-child(3) {
        color: var(--sr-red);
    }

    /* one entrance moment, on page load only */
    @media (prefers-reduced-motion: no-preference) {
        .sr-hero-copy>* {
            animation: sr-rise .7s cubic-bezier(.2, .7, .2, 1) both;
        }

        .sr-hero-copy>*:nth-child(2) {
            animation-delay: .08s;
        }

        .sr-hero-copy>*:nth-child(3) {
            animation-delay: .16s;
        }

        .sr-hero-copy>*:nth-child(4) {
            animation-delay: .24s;
        }

        .sr-hero-copy>*:nth-child(5) {
            animation-delay: .32s;
        }

        .sr-hero-visual {
            animation: sr-rise .9s .2s cubic-bezier(.2, .7, .2, 1) both;
        }
    }

    @keyframes sr-rise {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }


    /* ---------- Section heading ---------- */

    .sr-section {
        margin-bottom: clamp(3rem, 7vw, 5.5rem);
    }

    .sr-head {
        max-width: 40rem;
        margin-bottom: 2rem;
    }

    .sr-head h2 {
        margin: 0 0 .5rem;
        font-family: var(--sr-display);
        font-weight: 800;
        font-size: clamp(1.9rem, 3.8vw, 2.7rem);
        line-height: 1.1;
        color: var(--sr-night);
    }

    .sr-head p {
        margin: 0;
        font-size: 1.05rem;
        color: var(--sr-ink);
    }


    /* ---------- Services mosaic ---------- */

    .sr-services {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1rem;
    }

    .sr-tile {
        position: relative;
        display: flex;
        align-items: flex-end;
        grid-column: span 12;
        min-height: 290px;
        overflow: hidden;
        isolation: isolate;
        border-radius: 22px;
        color: #fff;
        background: var(--sr-flame);
    }

    /* fallback colours when an image has not been added yet */
    .sr-tile:nth-child(2) {
        background: linear-gradient(135deg, #F57222, #F9A61A);
    }

    .sr-tile:nth-child(3) {
        background: linear-gradient(135deg, #ED1B24, #F57222);
    }

    .sr-tile:nth-child(4) {
        background: linear-gradient(135deg, #57584A, #2A2B24);
    }

    .sr-tile:nth-child(5) {
        background: linear-gradient(135deg, #F9A61A, #ED1B24);
    }

    @media (min-width: 768px) {
        .sr-tile {
            min-height: 350px;
        }

        .sr-tile:nth-child(1) {
            grid-column: span 7;
        }

        .sr-tile:nth-child(2) {
            grid-column: span 5;
        }

        .sr-tile:nth-child(n+3) {
            grid-column: span 4;
        }
    }

    .sr-tile-img {
        position: absolute;
        inset: 0;
        z-index: -2;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .sr-tile:hover .sr-tile-img {
        transform: scale(1.05);
    }

    .sr-tile::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(to top, rgba(30, 31, 25, .88) 0%, rgba(30, 31, 25, .5) 45%, rgba(30, 31, 25, 0) 78%);
    }

    .sr-tile-icon {
        position: absolute;
        top: 1.1rem;
        left: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .2);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        font-size: 1.2rem;
    }

    .sr-tile-body {
        width: 100%;
        padding: 1.5rem;
    }

    .sr-tile-body h3 {
        margin: 0 0 .35rem;
        font-family: var(--sr-display);
        font-weight: 700;
        font-size: 1.55rem;
        line-height: 1.15;
        color: #fff;
    }

    .sr-tile-body p {
        max-width: 30rem;
        margin: 0 0 .9rem;
        font-size: .98rem;
        color: rgba(255, 255, 255, .92);
    }

    .sr-tile-link {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding-bottom: 1px;
        border-bottom: 2px solid var(--sr-amber);
        font-weight: 700;
        color: #fff;
        text-decoration: none;
    }

    .sr-tile-link:hover {
        color: var(--sr-amber);
    }


    /* ---------- Hampers ---------- */

    .sr-hampers {
        position: relative;
        overflow: hidden;
        isolation: isolate;
        padding: clamp(1.75rem, 5vw, 3.5rem);
        border-radius: 28px;
        background: var(--sr-night);
        color: #fff;
    }

    /* logo-mark watermark */
    .sr-hampers::before {
        content: "";
        position: absolute;
        right: -6%;
        bottom: -16%;
        z-index: -1;
        width: min(50vw, 540px);
        aspect-ratio: 1 / 1;
        background: url('assets/img/srishti/logo-mark-watermark.png') no-repeat center / contain;
        opacity: .07;
        pointer-events: none;
    }

    .sr-hampers::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--sr-flame);
    }

    .sr-hampers .sr-head h2 {
        color: #fff;
    }

    .sr-hampers .sr-head p {
        color: rgba(255, 255, 255, .78);
    }

    .sr-hamper {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 1.75rem;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 22px;
        background: rgba(255, 255, 255, .06);
    }

    .sr-hamper.is-featured {
        border-color: var(--sr-amber);
        background: rgba(249, 166, 26, .1);
        box-shadow: 0 0 0 1px var(--sr-amber), 0 20px 40px rgba(0, 0, 0, .25);
    }

    @media (min-width: 992px) {
        .sr-hamper.is-featured {
            transform: translateY(-10px);
        }
    }

    .sr-tier {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding: .3rem .85rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: .9rem;
        color: var(--sr-night);
    }

    .sr-tier--silver {
        background: linear-gradient(135deg, #F4F6F8, #B9BFC8);
    }

    .sr-tier--gold {
        background: linear-gradient(135deg, #FCD27A, #F9A61A);
    }

    .sr-tier--custom {
        background: var(--sr-red-deep);
        color: #fff;
    }

    .sr-hamper h3 {
        margin: 1rem 0 .5rem;
        font-family: var(--sr-display);
        font-weight: 700;
        font-size: 1.65rem;
        color: #fff;
    }

    .sr-price-pre {
        display: block;
        min-height: 1.4em;
        font-size: .92rem;
        color: rgba(255, 255, 255, .72);
    }

    .sr-price {
        font-family: var(--sr-display);
        font-weight: 800;
        font-size: clamp(2.5rem, 4.2vw, 3.2rem);
        line-height: 1;
        color: #fff;
    }

    .sr-features {
        display: grid;
        flex-grow: 1;
        gap: .65rem;
        margin: 1.25rem 0 1.5rem;
        padding: 1.25rem 0 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
        list-style: none;
    }

    .sr-features li {
        display: flex;
        gap: .6rem;
        color: rgba(255, 255, 255, .9);
    }

    .sr-features i {
        margin-top: .15rem;
        color: var(--sr-amber);
    }

    .sr-hamper .sr-btn {
        width: 100%;
    }

    .sr-hamper-note {
        margin: 1.75rem 0 0;
        font-size: .95rem;
        color: rgba(255, 255, 255, .75);
    }


    /* ---------- Products area (existing markup, restyled) ---------- */

    .sr-products .sr-search-card {
        border-radius: 18px;
    }

    .sr-products .btn-primary {
        background-color: var(--sr-red-deep);
        border-color: var(--sr-red-deep);
    }

    .sr-products .btn-primary:hover,
    .sr-products .btn-primary:focus {
        background-color: #B90F15;
        border-color: #B90F15;
    }

    .sr-products .btn-outline-primary {
        color: var(--sr-red-deep);
        border-color: var(--sr-red-deep);
    }

    .sr-products .btn-outline-primary:hover {
        background-color: var(--sr-red-deep);
        border-color: var(--sr-red-deep);
        color: #fff;
    }

    .sr-products .form-control:focus,
    .sr-products .form-select:focus {
        border-color: var(--sr-orange);
        box-shadow: 0 0 0 .2rem rgba(245, 114, 34, .2);
    }

    .sr-products .product-card {
        overflow: hidden;
        border-radius: 18px;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .sr-products .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(42, 43, 36, .14) !important;
    }

    .sr-products .product-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .sr-products .product-img-placeholder {
        background: #F6F3EE;
    }

    .sr-products .cart-toggle-btn {
        border-radius: 999px;
    }

    .sr-products .page-link {
        color: var(--sr-ink);
    }

    .sr-products .page-item.active .page-link {
        background-color: var(--sr-red-deep);
        border-color: var(--sr-red-deep);
        color: #fff;
    }

    .sr-products .trending-products-card {
        overflow: hidden;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .08);
    }

    .sr-products .trending-products-header {
        padding: 1rem 1.25rem;
        border-bottom: 3px solid var(--sr-orange);
    }

    @media (min-width: 992px) {
        .sr-products .col-lg-3>.trending-products-card {
            position: sticky;
            top: 96px;
        }
    }




:root {
  --brand: #f57a20;
  --brand-dark: #ed1c24;
}

body {
  background-color: #f4f6f9;
}


.site_text {
    color: #f57a20 !important;
}

/* ---------- Front-end site ---------- */
.site-navbar {
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e9ecef;
}

.product-card {
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.08) !important;
}

.product-img {
  height: 300px;
  object-fit: cover;
  border-top-left-radius: .375rem;
  border-top-right-radius: .375rem;
}

.product-img-placeholder {
  background: #eef1f5;
  height: 180px;
}

.product-detail-img {
  /*width: 100%;*/
  max-height: 420px;
  object-fit: cover;
}

/* ---------- Admin ---------- */
.admin-body {
  background: #f4f6f9;
}

.admin-navbar {
  background: linear-gradient(90deg, #1f2937, #111827);
}

.admin-sidebar {
  width: 220px;
  min-height: calc(100vh - 56px);
  background: #fff;
  border-right: 1px solid #e9ecef;
}

.admin-sidebar .nav-link {
  color: #495057;
  padding: .65rem 1.1rem;
  border-left: 3px solid transparent;
}

.admin-sidebar .nav-link.active,
.admin-sidebar .nav-link:hover {
  background: #eef2ff;
  color: var(--brand);
  border-left-color: var(--brand);
}

.admin-main {
  min-height: calc(100vh - 56px);
}

.stat-card {
  border-radius: .75rem;
}

.prod-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: .375rem;
}

.prod-thumb-placeholder {
  width: 56px;
  height: 56px;
  background: #eef1f5;
  border-radius: .375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
}

/* ---------- Login ---------- */
.login-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #1f2937, #0d6efd);
}

.login-card {
  border-radius: .75rem;
}

/*custom code*/
:root {
  --brand: #f57a20;
  --brand-dark: #ed1c24;
}


/* ==========================================
   ANIMATED SITE BUTTON
========================================== */

.site_button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 28px;

    background: linear-gradient(
        135deg,
        var(--brand),
        var(--brand-dark)
    );

    color: #ffffff;
    border: none;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    cursor: pointer;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    box-shadow:
        0 6px 20px rgba(245, 122, 32, 0.3);

    animation: siteButtonPulse 2s infinite;
}


/* Shine Effect */

.site_button::before {
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );

    transform: skewX(-25deg);

    transition: left 0.6s ease;
}


/* Keep Text/Icon Above Animation */

.site_button > * {
    position: relative;
    z-index: 2;
}


/* Hover */

.site_button:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);

    box-shadow:
        0 12px 30px rgba(237, 28, 36, 0.35);
}


.site_button:hover::before {
    left: 150%;
}


/* Click Effect */

.site_button:active {
    transform: translateY(0) scale(0.97);
}


/* Pulse Animation */

@keyframes siteButtonPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(245, 122, 32, 0.5);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(245, 122, 32, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(245, 122, 32, 0);
    }

}


/* Mobile */

@media (max-width: 576px) {

    .site_button {
        padding: 11px 22px;
        font-size: 14px;
    }

}
/* Products Search */

.product-search-card {
    border-radius: 12px;
}

.product-search-card .card-body {
    padding: 18px;
}


/* Trending Sidebar */

.trending-products-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 90px;
}

.trending-products-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.trending-product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.2s ease;
}

.trending-product-item:hover {
    background: #f8f9fa;
}

.trending-product-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

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

.trending-placeholder {
    width: 100%;
    height: 100%;
}

.trending-product-info {
    min-width: 0;
}

.trending-product-info h6 {
    margin: 0 0 5px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.trending-product-info span {
    font-size: 13px;
    font-weight: 700;
    color: var(--bs-primary);
}


@media (max-width: 991.98px) {

    .trending-products-card {
        position: static;
    }

}

@media (max-width: 575.98px) {

    .product-search-card .card-body {
        padding: 14px;
    }

    .product-search-card .btn {
        padding-left: 10px;
        padding-right: 10px;
    }


}






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

/* Breadcrumb */

.breadcrumb {
    margin-bottom: 25px;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
}

.breadcrumb-item a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-item a:hover {
    color: var(--brand-dark);
}

.breadcrumb-item.active {
    color: #777;
    font-weight: 500;
}


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

.product-detail-img {
    /*width: 100%;*/
    height: 480px;
    object-fit: cover;
    background: #f8f8f8;
    transition: transform 0.35s ease;
}

.product-detail-img:hover {
    transform: scale(1.01);
}


/* Image Placeholder */

.product-img-placeholder {
    width: 100%;
    height: 480px;
    background: #f7f7f7;
}


/* =====================================================
   PRODUCT GALLERY THUMBNAILS
===================================================== */

.gallery-thumb {
    padding: 3px;
    background: #fff;
    border: 2px solid #eee !important;
    transition: all 0.25s ease;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    border-color: var(--brand) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.gallery-thumb.border-primary {
    border-color: var(--brand) !important;
    box-shadow: 0 3px 12px rgba(245, 122, 32, 0.25);
}


/* =====================================================
   PRODUCT INFORMATION
===================================================== */

.col-md-6 h3.fw-bold {
    font-size: 30px;
    line-height: 1.3;
    color: #222;
    margin-bottom: 12px;
}

.col-md-6 .fs-3.text-primary {
    color: var(--brand) !important;
    font-size: 21px !important;
}

.col-md-6 p.text-muted {
    line-height: 1.8;
    font-size: 15px;
}

.col-md-6 hr {
    border-color: rgba(0, 0, 0, 0.08);
    margin: 25px 0;
}

.col-md-6 h6.mb-3 {
    font-size: 17px;
    font-weight: 700;
}


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

.d-grid.gap-2 .btn {
    position: relative;
    min-height: 58px;

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

    padding: 12px 20px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;

    overflow: hidden;

    transition: all 0.3s ease;
}


/* Button Icons */

.d-grid.gap-2 .btn i {
    font-size: 20px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.d-grid.gap-2 .btn:hover i {
    transform: scale(1.15);
}


/* WhatsApp */

.d-grid.gap-2 .btn-success {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;

    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.d-grid.gap-2 .btn-success:hover {
    background: linear-gradient(135deg, #20bd5a, #0f756a);
    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}


/* Cash on Delivery */

.d-grid.gap-2 .btn-outline-dark {
    color: #222;
    background: #fff;
    border: 2px solid #222;
}

.d-grid.gap-2 .btn-outline-dark:hover {
    color: #fff;
    background: #222;
    border-color: #222;

    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}


/* UPI */

.d-grid.gap-2 .btn-outline-primary {
    color: var(--brand);
    background: #fff;
    border: 2px solid var(--brand);
}

.d-grid.gap-2 .btn-outline-primary:hover {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);

    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(245, 122, 32, 0.28);
}


/* Online Payment */

.d-grid.gap-2 .btn-primary {
    border: none;

    background: linear-gradient(
        135deg,
        var(--brand),
        var(--brand-dark)
    );

    box-shadow: 0 6px 20px rgba(245, 122, 32, 0.25);
}

.d-grid.gap-2 .btn-primary:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 10px 28px rgba(237, 28, 36, 0.3);
}


/* Shine Animation */

.d-grid.gap-2 .btn::before {
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );

    transform: skewX(-25deg);

    transition: left 0.6s ease;
}

.d-grid.gap-2 .btn:hover::before {
    left: 150%;
}


/* Click Animation */

.d-grid.gap-2 .btn:active {
    transform: scale(0.98);
}


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

@media (max-width: 767.98px) {

    .product-detail-img,
    .product-img-placeholder {
        height: 380px;
    }

    .col-md-6 h3.fw-bold {
        font-size: 24px;
        margin-top: 10px;
    }

    .col-md-6 .fs-3.text-primary {
        font-size: 24px !important;
    }

}


@media (max-width: 575.98px) {

    .breadcrumb {
        padding: 8px 10px;
        font-size: 12px;
    }

    .product-detail-img,
    .product-img-placeholder {
        height: 300px;
    }

    .gallery-thumb {
        width: 60px !important;
        height: 60px !important;
    }

    .col-md-6 h3.fw-bold {
        font-size: 22px;
    }

    .d-grid.gap-2 .btn {
        min-height: 54px;
        font-size: 14px;
        padding: 10px 14px;
    }

    .d-grid.gap-2 .btn i {
        font-size: 18px;
    }

}

/*contact*/

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
    font-size: 28px;
    color: #222;
}

.contact-info-card > p {
    line-height: 1.7;
}


/* =========================================================
   CONTACT INFO ITEMS
========================================================= */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eeeeee;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

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

    background: #f5f5f5;
    border-radius: 12px;

    font-size: 21px;
    color: #222;

    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: #212529;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-info-item h6 {
    margin: 2px 0 5px;
    font-weight: 600;
    color: #222;
}

.contact-info-item p {
    margin: 0;
    color: #777;
    line-height: 1.6;
    font-size: 15px;
}

.contact-info-item a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    color: #000;
}


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

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 600;

    transition: all 0.25s ease;
}

.contact-buttons .btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   GOOGLE MAP SECTION
========================================================= */

.contact-map-section {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    padding: 25px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.contact-map-section h3 {
    font-size: 26px;
    color: #222;
}

.contact-map-section .btn {
    border-radius: 10px;
    white-space: nowrap;
    padding: 10px 18px;
    font-weight: 500;
}


/* =========================================================
   MAP
========================================================= */

.contact-map {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #eeeeee;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}


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

@media (max-width: 991.98px) {

    .contact-info-card {
        padding: 28px;
    }

    .contact-map-section {
        margin-top: 0 !important;
    }

}


@media (max-width: 575.98px) {

    .contact-info-card {
        padding: 22px;
        border-radius: 14px;
    }

    .contact-map-section {
        padding: 18px;
        border-radius: 14px;
    }

    .contact-map-section > .d-flex {
        align-items: flex-start !important;
        flex-direction: column;
        gap: 15px;
    }

    .contact-map-section .btn {
        width: 100%;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }

    .contact-map iframe {
        height: 300px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

}


.product_cat .desc{
    font-size: 14px;
}
