/* ================================================
	GLOBAL STYLES
================================================ */
* {
    font-family: 'Montserrat', sans-serif;
    .btn-danger font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    scroll-behavior: smooth;
}

body {
    color: #212529;
    padding-top: 130px;
}

.body-home {
    padding-top: 0;
}

.row {
    margin: 0 !important;
    padding: 0 !important;
}

a {
    text-decoration: none !important;
}

@media (max-width: 440px) {
    body {
        /* padding-top: 60px !important; */
    }
}

h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/*=========================================
ASTRO TOPBAR
=========================================*/

.astro-home-header {
    background: #f4b1205e;
}

.astro-home-header.scrolled {
    background-image: linear-gradient(to left bottom,
            #ac5a07,
            #b86409,
            #c46f0d,
            #d17b12,
            #de8716,
            #e6961b,
            #eea41d,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120);
}

.astro-inner-header {
    background-image: linear-gradient(to left bottom,
            #ac5a07,
            #b86409,
            #c46f0d,
            #d17b12,
            #de8716,
            #e6961b,
            #eea41d,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120);
}

.astro-home-topbar {
    background: transparent;
}

.astro-inner-topbar {
    background: #4A0404;
}

.astro-inner-topbar .astro-btn {
    background-image: linear-gradient(to left bottom,
            #ac5a07,
            #b86409,
            #c46f0d,
            #d17b12,
            #de8716,
            #e6961b,
            #eea41d,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120);
    color: #fff;
}

.astro-inner-topbar .astro-contact-info i {
    color: #f4b120;    
}

.astro-topbar {
    height: 60px;
    color: #fff;
    font-size: 14px;
    transition: .5s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 996;
}

.astro-topbar.scrolled {
    top: -60px;
}

.astro-topbar-wrapper {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.astro-contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.astro-contact-info a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
    font-weight: 500;
}

.astro-contact-info a:hover {
    color: #fff;
}

.astro-contact-info i {
    color: #4A0404;
    margin-right: 8px;
}

.astro-btn {
    display: inline-block;
    background: #4A0404;
    color: #fff;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 40px;
    transition: .3s;
    font-weight: 600;
}

.astro-btn:hover {
    background: #f1a40a;
    color: #fff;
}

@media(max-width:991px) {

    .astro-contact-info {
        gap: 16px;

    }

    .astro-contact-info i {
        margin-right: 0;
    }

}



/*==================================================
    ASTRO HEADER
    ==================================================*/

.astro-header {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 70px;
    transition: all .5s;
    z-index: 997;
}

.astro-header.scrolled {
    background-image: linear-gradient(to left bottom,
            #ac5a07,
            #b86409,
            #c46f0d,
            #d17b12,
            #de8716,
            #e6961b,
            #eea41d,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120);
    top: 0;
}

.astro-inner-pages {
    background: #5c0874 !important;
}

.astro-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/*==================================================
 LOGO
==================================================*/

.astro-logo {
    margin: 0;
    padding: 0;
}

.astro-logo img {
    max-height: 100px;
    width: auto;
    border-radius: 50%;
}

.astro-header.scrolled .astro-logo img {
    max-height: 70px;
}

/*==================================================
 DESKTOP NAVIGATION
==================================================*/

.astro-navbar {
    padding: 0;
}

.astro-navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.astro-navbar li {
    position: relative;
}

.astro-navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.astro-navbar a {

    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 3px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    font-weight: 500;
}

.astro-navbar a i {
    font-size: 12px;
    margin-left: 5px;
}

/*==================================================
 HOVER UNDERLINE
==================================================*/

.astro-navbar>ul>li>a:before {

    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;

    height: 2px;

    background: #4A0404;

    visibility: hidden;

    transition: all .3s ease-in-out;

}

.astro-navbar a:hover:before,
.astro-navbar li:hover>a:before,
.astro-navbar .active:before {

    visibility: visible;

    width: 100%;

}

.astro-navbar a:hover,
.astro-navbar .active,
.astro-navbar li:hover>a {

    color: #fff;

}

/*==================================================
 DROPDOWN
==================================================*/

.astro-dropdown ul {

    position: absolute;

    left: 14px;

    top: calc(100% + 30px);

    margin: 0;
    padding: 10px 0;

    list-style: none;

    min-width: 220px;

    background: #fff;

    border-radius: 8px;

    box-shadow: 0 0 30px rgba(127, 137, 161, .25);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 99;

}

.astro-dropdown ul li {

    min-width: 220px;

}

.astro-dropdown ul a {

    display: block;

    padding: 10px 20px;

    color: #032e54;

    font-size: 14px;

    font-weight: 500;

}

.astro-dropdown ul a:hover {

    color: #5c0874;

}

.astro-dropdown:hover>ul {

    opacity: 1;

    visibility: visible;

    top: 100%;

}

.astro-dropdown .astro-dropdown ul {

    top: 0;

    left: calc(100% - 30px);

    visibility: hidden;

}

.astro-dropdown .astro-dropdown:hover>ul {

    left: 100%;

    visibility: visible;

    opacity: 1;

}

@media(max-width:1366px) {

    .astro-dropdown .astro-dropdown ul {

        left: -90%;

    }

    .astro-dropdown .astro-dropdown:hover>ul {

        left: -100%;

    }

}

/*==================================================
 MOBILE TOGGLE
==================================================*/

.astro-mobile-toggle {
    display: none;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: .3s;
}

.astro-mobile-toggle:hover {
    color: #4A0404;
}

/*==================================================
 OFFCANVAS
==================================================*/

.astro-offcanvas {
    width: 320px !important;
    background-image: linear-gradient(
        to left bottom,
        #ac5a07,
        #b86409,
        #c46f0d,
        #d17b12,
        #de8716,
        #e6961b,
        #eea41d,
        #f4b120,
        #f4b120,
        #f4b120,
        #f4b120,
        #f4b120
        );

    color: #fff;
}

.astro-offcanvas .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.astro-mobile-logo img {
    max-height: 55px;
}

.astro-offcanvas .btn-close {
    filter: invert(1);
}

/*==================================================
 MOBILE NAV
==================================================*/

.astro-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.astro-mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.astro-mobile-nav>li>a,
.astro-mobile-nav .dropdown-toggle {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
    font-weight: 600;
    letter-spacing: .5px;
}

.astro-mobile-nav>li>a:hover,
.astro-mobile-nav .dropdown-toggle:hover {

    color: #4A0404;

    padding-left: 28px;

}

.astro-mobile-nav ul {

    list-style: none;

    padding: 0;

    margin: 0;

    background: rgba(255, 255, 255, .05);

}

.astro-mobile-nav ul li a {

    display: block;

    padding: 12px 35px;

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.astro-mobile-nav ul li a:hover {

    color: #4A0404;

}

/*==================================================
 RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .astro-navbar {

        display: none;

    }

    .astro-mobile-toggle {

        display: block;

    }

    .astro-header {

        height: 75px;

    }

    .astro-header-wrapper {

        height: 75px;

    }

}

@media(min-width:992px) {

    .astro-mobile-toggle {

        display: none;

    }

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    height: 630px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(to left bottom,
            #ac5a07,
            #b86409,
            #c46f0d,
            #d17b12,
            #de8716,
            #e6961b,
            #eea41d,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120,
            #f4b120);
    padding: 0;
}

.hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: relative;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

#hero h1 {
    margin: 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: #fff;
    margin-bottom: 50px;
    font-size: 24px;
}

#hero p {
    color: #fff;
}

#hero .btn-get-started {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #7a1f95;
}

#hero .btn-get-started:hover {
    background: #2cc5f1;
}


#hero .btn-chat-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    color: #4A0404;
    background: #ffffff;
}

#hero .btn-chat-started:hover {
    background: #4A0404;
    color: #fff;
}

#hero .spin {
    animation: spin 10s infinite linear;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#app-feature .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        height: 710px;
    }

    #app-feature .animated {
        -webkit-animation: none;
        animation: none;
        margin-bottom: 13%;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        margin-top: 130px;
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 23px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ---- particles.js container ---- */

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.zi {
    z-index: 99
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #fbf5eb;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #4A0404;
}

.section-title p {
    margin-bottom: 0;
    font-style: italic;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-sec {
    padding: 60px 0;
    background: #fff;
}

.about-sec h3 {
    font-weight: 700;
    font-size: 34px;
    color: #4A0404;
}

.about-sec h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    color: #4A0404;
}

.about-sec i {
    font-size: 48px;
    margin-top: 15px;
    color: #4A0404;
}

.about-sec p {
    font-size: 15px;
    color: #5a6570;
    text-align: justify;
}

.about-sec .about-img img {
    height: auto;
}

@media (max-width: 991px) {
    .about-sec .about-img img {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .about-sec .about-img img {
        max-width: 90%;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .section-title p {
    text-align: center;
}

.services .icon-box {
    text-align: center;
    padding: 50px 25px;
    background: #fff;
    border-radius: 20px;
    transition: all ease-in-out 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.services .icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.services .icon-box .icon {
    width: auto;
    /* height: 120px; */
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .icon-box .icon img {
    width: auto;
    height: 200px;
    object-fit: contain;
    transition: .4s;
    border-radius: 50%;
}

.services .icon-box:hover .icon img {
    transform: scale(1.08);
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .icon-box h4 a {
    color: #4A0404;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

/* Custom Button */

.custom-button {
    border: 0;
    padding: 6px 32px;
    color: #4A0404;
    transition: 0.4s;
    border-radius: 50px;
    border: 2px solid #4A0404;
    background: #fff;
}

.custom-button a {
    color: #4A0404;
}

.custom-button:hover {
    background: #4A0404;
    color: #fff;
}

.custom-button:hover a {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .services .section-title p {
        text-align: justify;
    }

    .services .icon-box {
        padding: 25px;
    }

    .services .icon-box .icon img {
        height: 150px;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
    color: #4A0404;
}

.faq .faq-list a:hover,
.faq .faq-list a:active {
    color: #4A0404;
}

.collapse:not(.show) {
    color: #4A0404;
}

.faq .faq-list .icon-help {
    font-size: 15px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #4A0404;
    top: 23px;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 10px;
    position: absolute;
    right: 0;
    top: 8px;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #4A0404;
}

.faq .faq-list a.collapsed:hover {
    color: #4A0404;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }

    .faq .faq-list .icon-help {
        top: 35px;
    }

    section {
        padding: 30px 0;
    }
}



/* ================================================
	BUTTONS & BADGES
================================================ */
.loading-btn {
    border: none !important;
    font-size: 14px !important;
    color: white;
    background: linear-gradient(135deg, #ff6b6b, #ff9770);
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.loading-btn:hover {
    background: linear-gradient(135deg, #ff9770, #ff6b6b);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.4);
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-icon .badge {
    position: absolute;
    background-color: #c6a35d !important;
    color: #fff;
    font-size: 13px;
    height: 18px;
    width: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -6px;
    left: 0;
    border-radius: 50%;
    font-weight: 600;
    box-shadow: 0 0 6px rgba(255, 107, 107, 0.5);
}

/* ================================================
	BANNER SECTION
================================================ */
.main-banner {
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.main-banner img {
    border-radius: 8px;
    height: 500px;
    width: 100%;
    transition: transform 1s ease;
}

.main-banner:hover img {
    transform: scale(1.05);
}

/* ================================================
	HEADERS & TEXT
================================================ */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    background: #4A0404;
    color: #fff;
    padding: 0 !important;
    min-height: 90px;
}

.header .title {
    font-weight: 700;
    font-size: 38px;
    color: #212529;
    text-transform: capitalize;
    position: relative;
}

/**
	.underline {
	width: 90px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b6b, #ff9770);
	border-radius: 10px;
	margin-top: 10px;
}**/

.header h1 {
    /** font-size: 40px; **/
    font-weight: 900;
    font-size: 35px;
}

/* ================================================
	PRODUCT CARD
================================================ */
.card1 {
    width: auto;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card1 img {
    height: 270px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card1:hover img {
    transform: scale(1.05);
}

.card1 .card-body {
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 15px;
}

.price {
    font-size: 20px;
    color: #ff6b6b !important;
    font-weight: 600;
}

/**
	.card1 .btn {
	background: linear-gradient(135deg, #051144, #051144);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	}
	
	.card1 .btn:hover {
	background: linear-gradient(135deg, #051144, #051144);
	transform: translateY(-2px);
	}
**/

/* Quantity Controls Wrapper */
.quantity-controls {
    width: 100% !important;
}

/* Quantity box (shown after ADD click) */
.quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    height: 42px;
    border: 1px solid #d1d1d1;
    border-radius: 30px;
    background: #fff;
    padding: 0 8px;
    width: 100% !important;
}

/* + and - buttons */
.quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f2f2f2;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

/* Quantity number */
.quantity-display {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* ADD Button – Full Width */
.add-btn {
    width: 100% !important;
    color: #051144 !important;
    border: none;
    border-radius: 50px !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 10px !important;
    background: none !important;
    border: #051144 solid 1px !important;
}

/* Hover effect */
.add-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Hide quantity until ADD is clicked (you already use hidden) */
.hidden {
    display: none;
}

/* ================================================
	RESPONSIVE DESIGN
================================================ */
@media (max-width: 768px) {
    .navbar-brand img {
        width: 40px;
        height: 40px;
    }

    .header .title {
        font-size: 30px;
    }

    .card1 img {
        height: 220px;
    }

    .main-banner img {
        height: 200px;
    }
}


/* ====================================================
	GENERAL STYLES
==================================================== */
hr {
    background-color: #eee !important;
    color: #000 !important;
    margin: 10px 0 !important;
    border: none;
    height: 2px;
    border-radius: 5px;
}

.card-title {
    font-size: 24px;
    color: #222;
    letter-spacing: 0.5px;
}

.card1 {
    position: relative;
    cursor: pointer;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* ====================================================
	ADD BUTTONS & QUANTITY CONTROLS
==================================================== */
/**
	.control-box {
	width: 65px;
	height: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
	color: #333;	
	border-radius: 6px;
	border: 1px solid #ddd;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	}
	
	.quantity-wrapper {
	width: 250px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
	
	.quantity-display {
	color: #111;
	font-weight: 600;
	font-size: 14px;
	}
	
	.add-btn {
	width: 65px;
	height: 25px;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, #ff6b6b, #ff9770);
	transition: all 0.3s ease;
	}
	
	.add-btn:hover {
	background: linear-gradient(135deg, #ff9770, #ff6b6b);
	box-shadow: 0 3px 10px rgba(255,107,107,0.3);
	}
**/
/* ====================================================
	BUTTONS
==================================================== */
.btn-primary,
.btn-success {
    border: none;
    color: white;
    font-size: 13px;
    border-radius: 5px !important;
    padding: 8px 14px;
    background: linear-gradient(135deg, #007bff, #00b4d8);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-success:hover {
    transform: translateY(-1px);
}

.btn-warning {
    border-radius: 50px !important;
    padding: 8px 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: none !important;
}

.btn-danger {
    border-radius: 50px !important;
    padding: 8px 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #051144 !important;
    border: #051144 1px solid !important;
}

.btn-warning:hover,
.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: #051144 1px solid !important;
}

.btn-outline-primary {
    border: #051144 solid 1px !important;
}

.btn-outline-primary:hover {
    border: #051144 solid 1px !important;
    background: #051144 !important;
}

.btn.loading-btn {
    padding: 5px 10px;
    font-size: 12px;
    background-color: rgb(46, 182, 254) !important;
}

.btn.loading-btn .spinner-border-sm {
    width: 16px;
    height: 16px;
    padding: 20px !important;
}

/* ====================================================
	FLOATING ICONS
==================================================== */
.whatsup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    height: 55px;
    width: 55px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease-in-out;
}

.whatsup:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.check-btn a {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 55px;
    width: 55px;
    padding: 10px;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: linear-gradient(135deg, #ff6b6b, #ff9770);
    box-shadow: 0 8px 18px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease-in-out;
}

.check-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

/* ====================================================
	PRODUCT & CART SECTIONS
==================================================== */
.item-1 {
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.item-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.cart-img img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

.quantity-wrapper1 button {
    padding: 5px 8px;
    background-color: #f1f3f5;
    margin: 0 10px;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-wrapper1 button:hover {
    background: #ff9770;
    color: #fff;
}

/* ====================================================
	FORM STYLES
==================================================== */
.s-address input,
.s-address textarea,
.s-address select {
    margin-bottom: 5px;
    background-color: #f7f7f7;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px;
    transition: border-color 0.3s ease;
}

.s-address input:focus,
.s-address textarea:focus,
.s-address select:focus {
    border-color: #ff6b6b;
    outline: none;
}

.cart-details input,
.cart-details .btn {
    background-color: #f7f7f7;
    font-size: 13px;
    margin-bottom: 20px !important;
}

/* ====================================================
	PRODUCT DISPLAY
==================================================== */
.p-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.quantity {
    background-color: #f1f3f5;
    font-size: 14px;
    border-radius: 4px;
    padding: 2px 6px;
    font-weight: 600;
}

.line-through {
    text-decoration: line-through;
    color: #888;
}

.desc li,
.desc p {
    text-align: justify;
    color: #555;
}

/* ====================================================
	ABOUT PAGE
==================================================== */
.about-ul li {
    text-align: justify;
    padding-right: 20px;
}

.about-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.about-card img {
    width: 100%;
    height: 13rem;
    object-fit: cover;
}

/* ====================================================
	CONTACT PAGE
==================================================== */
.contact-page {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fff;
    padding: 20px;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6b6b;
    outline: none;
}

.contact-info {
    color: #000;
    border-radius: 10px;
    padding: 0 20px;
}

.contact-info a {
    color: #000 !important;
    text-decoration: none !important;
}

.contact-info i {
    font-size: 24px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6b6b;
    color: #fff;
}

/* ====================================================
	SOCIAL ICONS
==================================================== */
.social-icons {
    margin-top: 30px;
    text-align: center;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: #fff;
    color: #001524;
    margin: 0 8px;
    text-align: center;
    font-size: 22px !important;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: #c6a35d;
}

.fa-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 50%;
}

/* ====================================================
	DROPDOWNS
==================================================== */
.dropdown-center {
    position: relative !important;
    padding: 3px 10px 3px 0px;
}

.dropdown-center a {
    color: #ffffff;
    text-decoration: none !important;
    font-size: 16px;
}

.track-img {
    filter: brightness(2000%);
    margin-bottom: 5px;
    width: 20px;
    height: 20px;
}

/* ====================================================
	MISC
==================================================== */
.txt-secondary {
    color: #aaa;
}

.txt-success {
    color: #00ad09;
}

.hidden {
    display: none;
}

.btn:active {
    border: none !important;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff5e6;
    color: #444;
    height: 25px;
    font-weight: 600;
}

/* ----------------------------------------------------
	✨ FANCY ECOMMERCE ENHANCEMENTS ✨
---------------------------------------------------- */

/* Smooth transitions globally */
* {
    transition: all 0.3s ease-in-out;
    scroll-behavior: smooth;
}

/* Navbar enhancement */
.navbar {
    /** background: linear-gradient(90deg, #fefefe, #f5f8ff); **/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    transition: transform 0.4s;
}

.navbar-brand img:hover {
    transform: rotate(-5deg) scale(1.1);
}

/* Nav links */
.nav-link {
    color: #333 !important;
    position: relative;
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    /* match your spacing */
    transition: border-color 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link:hover {
    border-bottom: 2px solid #007bff;
}


/* Banner styling */
.main-banner {
    position: relative;
    overflow: hidden;
}

.main-banner img {
    filter: brightness(0.95);
    transition: transform 1s ease;
}

.main-banner:hover img {
    transform: scale(1.05);
}

/* Card styling */
.card1 {
    border: none;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card1:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card1 img {
    height: 270px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

/* Card body refinement */
.card1 .card-body {
    border: none;
    padding: 15px 20px;
    background-color: #fff;
}

.card1 .card-body .card-title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #232323;
}

.card1 .card-body p {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}


/* Add to cart or button enhancement */
.btn,
.apply-btn {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.apply-btn {
    background: linear-gradient(135deg, #007bff, #00aaff);
    color: #fff !important;
    border: none;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #00aaff, #007bff);
    transform: translateY(-2px);
}

/* Cart icon badge */
.cart-icon .badge {
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

/* Header title enhancement */
.header .title {
    font-weight: 800;
    font-size: 40px;
    background: linear-gradient(90deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Underline accent 
	.underline {
	background: linear-gradient(90deg, #00bcd4, #007bff);
	margin-top: 5px;
}*/

/* Footer or bottom fixed elements */
.btns {
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Product details fancy touch */
.product-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #333;
}

.discount-tax-info {
    border-left: 5px solid transparent;
    background: linear-gradient(90deg, #f8f9fa, #ffffff);
}

/* Hover pop for discount/tax info */
.discount-tax-info:hover {
    transform: scale(1.02);
}

/* Contact icons hover */
.contact-info i {
    background-color: #4A0404;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info i:hover {
    transform: rotate(10deg);
}

/* Smooth mobile card interaction */
@media (max-width: 440px) {
    .card1 {
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .card1:hover {
        transform: scale(1.03);
    }

    .main-banner img {
        border-radius: 12px !important;
    }
}


/* ============================================
	✨ Modern Fancy Alert & Rating Enhancements ✨
	(Keeps all class names, logic, and behavior)
=============================================== */

/* App Alert (Base) */
.app-alert {
    position: fixed;
    top: 27% !important;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: left;
    width: 320px !important;
    min-height: 55px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    padding: 12px 20px;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-align: left;
    opacity: 0;
    transform: translateX(100px);
    animation: slideIn 0.5s forwards;
}

/* Entry animation */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Exit animation */
@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(50px);
    }
}

/* Text inside alert */
#app-page-alert span {
    padding-left: 35px;
    line-height: 1.3em;
}

/* Close icon styling */
.btn-sm i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}

.btn-sm i:hover {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg);
}

/* SUCCESS Alert */
.app-alert.success {
    background: linear-gradient(90deg, #d8f8e4, #a4f0c6);
    border-left: 5px solid #1fa87d;
    color: #0a573f;
}

.app-alert.success::before {
    content: "✓";
    position: absolute;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #1fa87d;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 8px rgba(31, 168, 125, 0.5);
}

/* DANGER Alert */
.app-alert.danger {
    background: linear-gradient(90deg, #ffd6d6, #ffb1b1);
    border-left: 5px solid #e74c3c;
    color: #a22020;
}

.app-alert.danger::before {
    content: "✕";
    position: absolute;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.4);
}

/* WARNING Alert */
.app-alert.warning {
    background: linear-gradient(90deg, #fff2c4, #ffe694);
    border-left: 5px solid #ffbf00;
    color: #856404;
}

.app-alert.warning::before {
    content: "!";
    position: absolute;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #ffbf00;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 8px rgba(255, 191, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 450px) {
    .app-alert {
        top: 48% !important;
        left: 5%;
        width: 90% !important;
        font-size: 15px;
        padding: 16px;
        border-radius: 10px;
    }
}

/* Dismiss button */
.alert-dismissable .close,
.alert-dismissible .close {
    right: -6px;
    top: -6px;
    font-size: 22px;
    color: inherit;
    opacity: 0.8;
    transition: all 0.3s;
}

.alert-dismissible .close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* ============================================================
	✨ Modern Rating Stars
============================================================ */

.rating {
    display: flex;
    gap: 6px;
    font-size: 2.2rem;
    align-items: center;
    justify-content: flex-start;
}

.rating input {
    display: none;
}

.rating label {
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* Hover and selected colors */
.rating label:hover,
.rating label:hover~label {
    color: #ffc107;
    transform: scale(1.1);
}

.rating input:checked~label {
    color: #ffb800;
    text-shadow: 0 0 8px rgba(255, 184, 0, 0.4);
}

/* Rating text */
.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #ff9800;
    margin-left: 10px;
}

/* Product name + rating layout */
.product-name-rating a {
    text-decoration: none !important;
}

.product-name-rating img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    transition: transform 0.3s ease;
}

.product-name-rating img:hover {
    transform: scale(1.05);
}

/* Carousel arrows polish */
.carousel-control-prev i,
.carousel-control-next i {
    font-size: 25px;
    color: #333;
    background: #fff;
    padding: 8px 12px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.carousel-control-prev i:hover,
.carousel-control-next i:hover {
    background: #007bff;
    color: #fff;
    transform: scale(1.1);
}


/* ===========================
	🌟 Fancy Ecommerce Enhancements
=========================== */

/* Buttons & Links */
.view-msg a {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff !important;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
    transition: all 0.3s ease-in-out;
}

.view-msg a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 114, 255, 0.5);
}

/* Ratings */
.star-rating {
    color: rgb(255, 143, 0);
    /* dark green shade */
    font-size: 25px;
}

.average-ratings {
    color: #145a32;
    /* deeper green tone for text */
    font-weight: 600;
}


/* Product Card */
.card1 {
    background: #fff;
    border: none;
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card1:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card1 img {
    height: 350px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.card1:hover img {
    transform: scale(1.05);
}

.card1 .card-body {
    border-top: 1px solid #eee;
    border-radius: 0 0 15px 15px;
}

/* Price Styling */
.price {
    font-size: 18px;
    color: #111 !important;
    font-weight: 700;
}

/* media query for mobile devices */
@media (max-width: 440px) {
    .card1 img {
        height: 150px;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .price {
        font-size: 12px !important;
    }
}

/* ============================= */
/* 🔹 Fancy Pagination Design */
/* ============================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination .nav-links .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.pagination .nav-links .page-numbers:hover {
    background: linear-gradient(135deg, #dfa64c, #dfa64c);
    color: #fff !important;
    transform: translateY(-3px);
    text-decoration: none !important;
}

.pagination .nav-links .page-numbers.current {
    background: linear-gradient(135deg, #1A2D4A, #1A2D4A);
    color: #fff !important;
    border: none;
    transform: scale(1.1);
}

.pagination .nav-links .page-numbers.next,
.pagination .nav-links .page-numbers.prev {
    width: auto;
    padding: 0 14px;
    font-weight: 600;
    border-radius: 50px;
}

.pagination .nav-links .page-numbers.next:hover,
.pagination .nav-links .page-numbers.prev:hover {
    background: linear-gradient(135deg, #051144, #051144);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .pagination .nav-links .page-numbers {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}


.loader-container {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.spinner-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top: 2px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite !important;
}

.loading-text {
    margin: 0;
    font-size: 16px;
    color: #0d6efd;
}

/* Spinner inside button */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    /* light gray border */
    border-top: 2px solid #0d6efd;
    /* blue color */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* Add to Cart Check Icon */
.cart-check-icon {
    display: inline-block;
    color: #00AD09 !important;
    animation: pop 0.4s ease;
}

@keyframes pop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header Title */
.header .title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Underline 
	.underline {
	background: linear-gradient(90deg, #0072ff, #00c6ff);
	height: 6px;
	width: 90px;
	border-radius: 10px;
	margin-top: 10px;
}*/

/* Track Order */
.card-track-order .card {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.tracking-item .tracking-content {
    background: #f1f9ff;
    border-left: 4px solid #00ba0d;
    font-weight: 600;
}

.tracking-item .tracking-icon {
    background: #00ba0d;
    box-shadow: 0 0 10px rgba(0, 186, 13, 0.4);
}

/* Smooth hover for all interactive elements */
a,
button {
    transition: all 0.3s ease-in-out !important;
}

/* ================================
	🌟 Fancy Enhancements (Tracking + Reviews)
================================ */

/* --- Enhanced Professional Order Tracking --- */
#tracking {
    padding: 20px 0;
}

.tracking-list {
    position: relative;
    margin-left: 20px;
    border-left: 3px solid #e5e5e5;
    padding-left: 25px;
}

.tracking-item-pending {
    position: relative;
    margin-bottom: 30px;
    padding-left: 15px;
}

.tracking-item-pending:last-child {
    margin-bottom: 0;
}

/* Icon Circle */
.tracking-item-pending .tracking-icon {
    position: absolute;
    left: -34px;
    top: 0;
    width: 22px;
    height: 22px;
    background-color: #e5e5e5;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Active/Completed Step */
.tracking-item-pending.active .tracking-icon {
    background-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
    color: #fff;
}

/* Step Box */
.tracking-item-pending .tracking-content {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tracking-item-pending.active .tracking-content {
    background: #f5fff7;
    border-color: #c2f2cb;
}

/* Hover Effect */
.tracking-item-pending:hover .tracking-content {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Text styles */
.tracking-item-pending .tracking-content span {
    display: block;
    color: #666;
    font-size: 13px;
    margin-top: 3px;
}

.tracking-item-pending .tracking-content strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

/* Animation Pulse for active step */
.tracking-item-pending.active .tracking-icon::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(40, 167, 69, 0.4);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    left: -5px;
    top: -5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Pending style */
.tracking-item-pending {
    background: #fcfcfc;
    border-left: 4px solid #ddd;
    border-radius: 10px;
}

.tracking-item-pending .tracking-content {
    color: #999;
    background: #f4f4f4;
    border-left: 3px dashed #ccc;
}

/* --- Customer Review Carousel --- */
#carouselExampleSlidesOnly1 {
    background: linear-gradient(145deg, #fdfdfd, #f1f1f1);
    padding: 25px 0;
    border-radius: 20px;
}

#carouselExampleSlidesOnly1 .card {
    border: none;
    background: #fff;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

#carouselExampleSlidesOnly1 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.customer-card .card-body {
    background: linear-gradient(135deg, #f8f9fa, #e8e7c8);
    border-radius: 0 0 15px 15px;
}

.customer-card img {
    border-radius: 15px 15px 0 0;
    filter: brightness(0.98);
    transition: all 0.3s ease-in-out;
}

.customer-card:hover img {
    filter: brightness(1.05);
    transform: scale(1.03);
}

/* Review Texts */
#carouselExampleSlidesOnly1 .card-title {
    color: #0072ff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#carouselExampleSlidesOnly1 .card-text {
    color: #555;
    line-height: 1.5;
}

/* Carousel Controls */
#carouselExampleSlidesOnly1 .carousel-control-prev,
#carouselExampleSlidesOnly1 .carousel-control-next {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#carouselExampleSlidesOnly1 .carousel-control-prev:hover,
#carouselExampleSlidesOnly1 .carousel-control-next:hover {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    transform: scale(1.1);
}

/* Hover wave overlay effect */
#carouselExampleSlidesOnly1 .hover-effect::after {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 80%);
}

/* Responsive */
@media (max-width: 768px) {
    #carouselExampleSlidesOnly1 .card-title {
        font-size: 1rem;
    }

    #carouselExampleSlidesOnly1 .card-text {
        font-size: 0.85rem;
    }
}

/* .test-qoute i{
    position: absolute;
	right: 30px;
	top:  5%;
	font-size: 40px;
	color: #3fca55;
	z-index: 1;
} */


/* ======== PRODUCT PAGE ======== */
.product-name-rating a {
    color: #222 !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.product-name-rating a:hover {
    color: #e91e63 !important;
    transform: scale(1.03);
}

/* Review Box */
.review-textarea {
    height: 120px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

/* File Input */
.file-input {
    display: flex;
    height: 60px;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-input:hover {
    background-color: #fff5f8;
    border-color: #e91e63;
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.1);
}

/* Carousel Controls */
.slide .carousel-control-next:hover,
.slide .carousel-control-prev:hover,
.slide .carousel-control-next:focus,
.slide .carousel-control-prev:focus {
    background-color: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(5px);
    border-radius: 50%;
}

/* Responsive Iframe */
iframe {
    height: 350px !important;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 450px) {
    iframe {
        height: 200px !important;
    }
}

@media (max-width: 440px) {
    .product-name {
        margin-top: 40px !important;
    }
}

/* ======== ORDER TRACKING ======== */
.tracking-icon {
    height: 38px;
    width: 38px;
    background: linear-gradient(135deg, #f9f9f9, #fff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.tracking-icon i {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
}

.tracking-icon:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ffe6ef, #fff);
}

.col-12 {
    position: relative !important;
}

.status-pending {
    position: absolute;
}

/* ======== PAYMENT SUCCESS ======== */
.fancy-row {
    padding: 15px 0 5px 0 !important;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
}

.fancy-row:last-child {
    border-bottom: none;
}

.fancy-label {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.fancy-value {
    font-weight: 400;
    font-size: 16px;
    color: #555;
}

.fancy-label::after {
    margin-left: 5px;
    color: #888;
    content: "";
}

.fancy-row h6 {
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {

    .fancy-label,
    .fancy-value {
        font-size: 14px;
    }
}

/* CATEGORY CARD STYLING */
.category {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.category a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 2%;
}

.category .center-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 2%;
    border: 1px solid #dcc1a4;
}

.category .center-container span {
    display: block;
    padding: 12px 8px 6px;
    /* top | left-right | bottom */
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: #222;
    letter-spacing: 0.4px;
}

/* MAIN CHANGE HERE */
.category .img-circle {
    width: 100%;
    height: 390px;
    /* increase here */
    aspect-ratio: unset;
    /* remove ratio lock */
    border-radius: 2%;
    overflow: hidden;
    position: relative;
    background: #f7f7f7;
}

.category .img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1%;
    transition: transform 0.4s ease;
}


/* Optional hover zoom like reference */
.category:hover .img-circle img {
    transform: scale(1.08);
}


/* OVERLAY EFFECT */
.category a p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    transition: background 0.3s ease;
}

/* HOVER EFFECT */

.category:hover a p {
    background: rgba(0, 0, 0, 0.65);
}

/* MOBILE ADJUSTMENTS */
@media screen and (max-width: 440px) {

    .check-btn a,
    .whatsup {
        bottom: 7%;
        z-index: 2;
    }

    .index-container {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .home-checkout {
        top: 40%;
        right: 0;
        padding: 0 15px;
        box-shadow: none;
        width: 100% !important;
    }
}


/* ======== CUSTOM FIELDS ======== */
.custom-field {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}



/* ============================= */
/* 🔹 PAYMENT SUCCESS PAGE STYLE */
/* ============================= */
.payment-success h1 {
    color: #00AD09;
    font-size: 22px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ============================= */
/* 🔹 TESTIMONIAL SECTION */
/* ============================= */
.testimonial-dv .carousel-indicators {
    left: 0;
    top: auto;
    bottom: -40px;
}

.testimonial-dv .carousel-indicators button {
    background: #bbb;
    border-radius: 50%;
    width: 9px;
    height: 9px;
    border: none;
    transition: all 0.3s ease;
}

.testimonial-dv .carousel-indicators button:hover {
    background: #888;
    transform: scale(1.2);
}

.testimonial-dv .carousel-indicators .active {
    background: #444;
}

.testimonial-dv .mobile-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    filter: brightness(0.7) saturate(0.3);
}

.testimonial-dv .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-dv .image-container img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* 🔹 BUTTON & INPUT CLEANUP */
/* ============================= */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* ============================= */
/* 🔹 ANNOUNCEMENT & NAVBAR */
/* ============================= */
.announcement-bar {
    padding: 10px;
    background: linear-gradient(135deg, #ff6f61, #ff9a76);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.announcement-bar a {
    color: #fff !important;
    text-decoration: none !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-first-row {
    min-height: 10px !important;
    color: #2c2528 !important;
    padding: 4px 0 !important;
}

.nav-second-row {
    height: 60px;
    color: #2c2528 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.search-menu .nav-link {
    color: #000 !important;
    display: inline;
    padding: 6px;
    top: 35px;
    transition: all 0.3s ease;
}

.search-menu .nav-link:hover {
    color: #e91e63 !important;
    transform: scale(1.1);
}

.search-menu .nav-link i {
    margin-top: 25%;
    font-size: 20px;
    color: #333;
}

/* ============================= */
/* 🔹 CATEGORY & PRODUCT DISPLAY */
/* ============================= */
.bg-orange-category {
    background: linear-gradient(135deg, #fffde7, #fcffd6);
    padding: 60px 0;
    border-radius: 10px;
}

.swiper-slide img {
    width: 100% !important;
    height: 170px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.swiper-slide img:hover {
    transform: scale(1.05);
}

.swiper-slide a {
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 500;
}

/* ============================= */
/* 🔹 PRODUCT CARDS */
/* ============================= */
.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.card-img-top,
.card-img-top-product {
    width: 100% !important;
    border-radius: 0px !important;
    object-fit: cover;
    transition: all 0.3s ease;
}

.card-img-top {
    height: 500px;
}

.card-img-top-product {
    height: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-img-top:hover,
.card-img-top-product:hover {
    transform: scale(1.03);
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 15px;
    font-size: 18px;
    text-align: center;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.overlay-text h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 600;
}

/* ============================= */
/* 🔹 DISCOUNT BADGE */
/* ============================= */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #006400, #228B22);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 2;
}

/* Subtle floating animation for fancy look */
@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Optional: make it smaller on mobile */
@media (max-width: 576px) {
    .discount-badge {
        font-size: 12px;
        padding: 4px 8px;
        top: 8px;
        right: 8px;
    }
}


/* ============================= */
/* 🔹 NEWSLETTER SECTION */
/* ============================= */
.bg-orange-newsletter {
    background: linear-gradient(135deg, #fffde7, #fcffd6);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bg-orange-newsletter .form-control,
.bg-orange-newsletter .input-group .btn {
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bg-orange-newsletter .btn-primary {
    border-top-right-radius: 25px !important;
    border-bottom-right-radius: 25px !important;
    background: linear-gradient(135deg, #ff6f61, #ff9a76);
    border: none;
    transition: all 0.3s ease;
}

.bg-orange-newsletter .btn-primary:hover {
    background: linear-gradient(135deg, #ff8a80, #ffb199);
    transform: scale(1.05);
}

/* ============================= */
/* 🔹 ABOUT IMAGE */
/* ============================= */
.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    height: 180px;
    object-fit: cover;
}

/* ============================= */
/* 🔹 WISHLIST BUTTON */
/* ============================= */
.wishlist-btn {
    position: absolute;
    top: -100px;
    right: 10px;
    background: #000 !important;
    border-radius: 50%;
    font-size: 14px;
    color: #fff !important;
    border: #fff solid 1px;
    padding: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: #e91e63 !important;
    transform: scale(1.1);
}

/* ============================= */
/* 🔹 MOBILE RESPONSIVE UPGRADES */
/* ============================= */
@media (max-width: 768px) {
    .nav-item.social-media {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .nav-item.social-media .insta {
        width: 35px !important;
        height: 35px !important;
    }

    .nav-item.social-media .youtube {
        width: 50px !important;
        height: 36px !important;
    }

    .copy-right {
        font-size: 13px;
    }

    .home-products {
        margin: 20px 0;
        background: #fff;
        padding: 20px !important;
        border-radius: 20px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .center-container .img-circle img {
        height: 170px !important;
    }

    .cat-name {
        font-size: 13px;
        text-align: center;
    }

    .testimonial-card {
        height: 220px !important;
    }
}



/* ============================= */
/* 🔹 FOOTER STYLING */
/* ============================= */
footer {
    color: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
    padding: 0 !important;
}

.quick-links {
    padding: 20px 0 5px 0 !important;
}

.quick-links a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.quick-links a:hover {
    color: #00e5ff;
    transform: translateX(4px);
}

.footer a:hover {
    color: aqua;
}

.footer-a a {
    color: #000;
    text-decoration: none;
}

.name-nav {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================= */
/* 🔹 HOME PRODUCT SECTION */
/* ============================= */
.bg-products {
    background: #f5f5f5;
    padding: 50px 0;
}

.home-products {
    margin: 20px 0;
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-products:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* 🔹 PRODUCT GALLERY */
/* ============================= */
.product-gallery {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.product-gallery__media-list-wrapper {
    width: 100%;
}

.product-gallery__media-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 470px;
    padding: 0;
    scrollbar-width: none;
}

.product-gallery__media-list::-webkit-scrollbar {
    display: none;
}

.product-gallery__media {
    scroll-snap-align: start;
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    height: auto;
}

.product-gallery__media img {
    display: block;
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.product-gallery__media img:hover {
    transform: scale(1.03);
}

.product-gallery__thumbnail-list-wrapper {
    overflow: hidden;
}

.product-gallery__thumbnail-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.product-gallery__thumbnail-list::-webkit-scrollbar {
    display: none;
}

.product-gallery__thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 10px;
    flex: 0 0 auto;
    transition: all 0.3s ease;
    background: none;
}

.product-gallery__thumbnail:hover {
    border-color: #00bcd4;
    transform: scale(1.05);
    padding: 0 !important;
}

.product-gallery__thumbnail[aria-current="true"] {
    border-color: #dfa64c;
    padding: 0 !important;
}

.product-gallery__thumbnail img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* 🔹 GALLERY CONTROLS */
/* ============================= */
.circle-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.circle-button:hover {
    background: #f8f8f8;
    transform: scale(1.1);
}

.gallery-controls {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.gallery-progress-container {
    width: 100%;
}

.gallery-progress-bar {
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.gallery-progress-fill {
    height: 100%;
    background: #dfa64c;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.gallery-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-left: 10px;
}

.gallery-nav-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.gallery-nav-button:hover {
    background: #e0f7fa;
    transform: scale(1.1);
}

.gallery-nav-button svg {
    width: 20px;
    height: 20px;
    color: #dfa64c;
}

/* ============================= */
/* 🔹 TESTIMONIALS */
/* ============================= */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
    margin-top: 20px;
}

.testimonial-card {
    flex: 1 1 calc(100% - 30px);
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.profile-icon {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.verified-badge {
    background-color: #00ad09;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: 10px;
    box-shadow: 0 2px 5px rgba(0, 173, 9, 0.4);
}

.stars {
    color: #ffc107;
    font-size: 15px;
    margin: 5px 0;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ============================= */
/* 🔹 RESPONSIVE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {
    .product-gallery__media img {
        max-height: 400px;
    }

    .product-gallery__thumbnail {
        margin-top: 15px;
    }

    .product-gallery__thumbnail img {
        width: 90px;
        height: 90px;
    }

    .gallery-controls {
        padding: 0 10px;
    }

    .gallery-nav-button {
        width: 34px;
        height: 34px;
    }

    .product-gallery__media-list {
        height: 350px;
        border-radius: 10px;
    }

    .testimonial-card {
        height: auto !important;
        padding: 18px;
    }

    .review-text {
        font-size: 13px;
    }
}

/* ============================= */
/* 🔹 LOGIN PAGE */
/* ============================= */

.login-page {
    display: flex;
    justify-content: center;
    box-shadow: #ccc 0 3px 10px;
    padding: 29px 10px !important;
    border-radius: 10px;
}


.login {
    /** background: #fff; **/
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
}

.login-page .btn-danger {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}


/* ============================= */
/* 🔹 PRODUCT WIDGET */
/* ============================= */

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sidebar-widget img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.sidebar-widget img:hover {
    transform: scale(1.05);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
}

.sidebar-widget p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media(max-width:768px) {
    .sidebar-widget {
        margin-top: 20px;
        padding: 15px;
    }

    .sidebar-widget img {
        height: 50px;
        width: 50px;
    }

}

/* ============================= */
/* 🔹 PRODUCT VARIANT */
/* ============================= */

.variant-section {
    background: #ebeeff;
    border-radius: 1rem;
}

.variant-card {
    transition: all 0.3s ease;
}

.variant-card:hover {
    transform: translateY(-2px);
}

.variant-pill {
    background: #fff !important;
    color: #333;
    border-color: #dee2e6;
    font-weight: 500;
    transition: all 0.25s;
    cursor: pointer;
}

.variant-pill a {
    color: #000 !important;
}

.variant-pill:hover {
    background: #051144 !important;
    border-color: #0d6efd;
    color: #fff !important;
}

.variant-pill a:hover {
    color: #fff !important;
}


@media(max-width:768px) {
    .variant-section {
        padding: 5px !important;
    }
}


/* ============================= */
/* 🔹 Whatsapp Icon */
/* ============================= */

.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #2000F0;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 30%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: background 0.3s ease;
}


.whatsapp-float i {
    font-size: 30px !important;
    /* increase icon size */
    line-height: 1;
}


.whatsapp-float:hover {
    background-color: #1ebd5a;
    color: #fff !important;
}




/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 0px;
    padding-top: 90px;
    background: #4A0404;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #f4b120;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link p {
    color: #ffffff;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #c6a35d;
    letter-spacing: 0.2px;
    color: #ffffff;
    text-shadow: 2px 2px 4px #c6a35d;

}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-contact p a,
.footer .footer-contact p {
    color: #fff;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    padding: 5px 0;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 60px;
    transition: .3s;
    background: #4A0404;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #f4b120;
    border-color: #f4b120;
}

.footer .footer-social a:hover i {
    color: #4A0404;
}


.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #ffffff;
    text-shadow: 2px 2px 4px #c6a35d;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 15px;
}

.footer .copyright p {
    margin: 0;
    color: #fff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #fff;

}

@media (max-width: 768px) {

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
    background-image: none !important;
    content: "+";
    font-size: 22px;
    font-weight: 600;
    transform: none !important;
}

/* Change to minus when open */
.accordion-button:not(.collapsed)::after {
    content: "−";
}

/* Optional: align better */
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exclusive-bg {
    background: #ebeeff;
}

.exclusive-box p {
    font-size: 14px;
    color: #777;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border: 1.5px solid #051144;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle i {
    font-size: 26px;
    color: #051144;
}


.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price {
    font-size: 13px;
    color: #000;
    text-decoration: line-through;
}

.new-price {
    font-size: 16px;
    font-weight: 600;
    color: #0a9d58;
}

.save-badge {
    margin-top: 4px;
    display: inline-block;
    padding: 1px 10px;
    background: #0a9d58;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
}


/* ============================= */
/* 🔹 RELATED PRODUCT  */
/* ============================= */
.hover-card {
    transition: all 0.3s ease;
    margin: 10px;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.swiper-slide a:hover {
    color: #fff !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: #333;
    background: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #1A2D4A;
    color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.search-bar-mobile {
    position: sticky;
    top: 45px;
    z-index: 3;
    background-color: #fff;
}

.watermark-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.watermark-bg img {
    width: 700px;
    max-width: 70%;
    opacity: 0.07;
}

@media screen and (max-width:500px) {
    .watermark-bg img {
        width: 700px;
        max-width: 100%;
        opacity: 0.07;
    }
}

.your-cart {
    width: 65%;
}

.your-cart .add-more a {
    text-decoration: none;
    color: #198754;
    font-weight: bold;
    transition: all .5s ease;
}

.your-cart .add-more a:hover,
.your-cart .add-more a:hover .plus-outline {
    border-color: #051144;
    color: #051144;
    transition: all .5s ease;
}

.your-cart .add-more a .plus-outline {
    width: 18px;
    height: 18px;
    padding: 5px;
    border: 2.3px solid #198754;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


@media screen and (max-width:500px) {
    .your-cart {
        width: 100%;
    }

    .your-cart .add-more a .plus-outline {
        width: 18px;
        height: 18px;
        padding: 7px;
        font-size: 11px;
    }
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.out-of-stock-overlay span {
    background: #dc3545;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}


.out-of-stock-overlay-text span {
    background: #dc3545;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}

.badge-online {
    background: #1c7ed6;
    color: #fff;
}

.badge-office {
    background: #6c757d;
    color: #fff;
}


/* Header */
.fixed-top {
    background-image: linear-gradient(to left bottom, #194A9C, #1E51A7, #2257B2, #275EBE, #2B65C9, #2D68CE, #2E6CD3, #306FD8, #306FD8, #306FD8, #306FD8, #306FD8);
    color: #ffffff !important;
}

.fixed-top a {
    color: #ffffff !important;
}

.fixed-top a:hover {
    color: #F79B18 !important;
    border-bottom: 2px solid #F79B18 !important;
}

/* Middle Menu */
.middle-menu-bar {
    background: #ffffff !important;
}

.middle-menu-bar a {
    color: #000 !important;
}

.middle-menu-bar a:hover {
    color: #1A2D4A !important;
    border-bottom: 2px solid #1A2D4A !important;
}

.middle-menu-bar .dropdown-menu {
    background: #264E65 !important;
}

.middle-menu-bar .dropdown-menu a {
    color: #ffffff !important;
}

.middle-menu-bar .dropdown-menu a:hover {
    background: #F79B18 !important;
    color: #264E65 !important;
}

/* Footer */
footer .quick-links {
    background: #264E65 !important;
    color: #ffffff !important;
}

footer a {
    color: #ffffff !important;
}

footer a:hover {
    color: #F79B18 !important;
}

footer .social-media a i {
    color: #ffffff !important;
}

footer .social-media a i:hover {
    color: #F79B18 !important;
}

.footer .copyright {
    background-image: linear-gradient(
        to left bottom,
        #ac5a07,
        #b86409,
        #c46f0d,
        #d17b12,
        #de8716,
        #e6961b,
        #eea41d,
        #f4b120,
        #f4b120,
        #f4b120,
        #f4b120,
        #f4b120
        );
    color: #ffffff !important;
}

footer .copyright b,
footer .designed-cmp-name a {
    color: #ffffff !important;
}

/* Buttons */
.btn-primary {
    background: #4A0404 !important;
    border: 1px solid #4A0404 !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background: #fff !important;
    border-color: #4A0404 !important;
    color: #4A0404 !important;
}

.blog-item {
    background-color: #ffffff;
    box-shadow: 0 6px 2px #ccc;
    height: 600px;
}

.blog-item a img {
    border: none !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    height: auto;
}

.cat-badge {
    color: #1A2D4A;
}

/* ===============================
   BLOG SIDEBAR
==================================*/

.widget {
    position: sticky;
    top: 30px;
}

/* Card Design */
.category-card,
.latest-card {
    background: #ffffff !important;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

.category-card:hover,
.latest-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

/* Heading */
.category-card h5,
.latest-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.category-card h5::after,
.latest-card h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: #1A2D4A;
    border-radius: 10px;
}

/* ===============================
   CATEGORY
==================================*/

.category-list {
    margin: 0;
    padding: 0;
}

.category-list li {
    list-style: none;
    margin-bottom: 12px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    transition: .3s;
    border: 1px solid #eeeeee;
    background: #fff;
}

.category-item:hover {
    background: #fff8f2;
    border-color: #1A2D4A;
    transform: translateX(5px);
    text-decoration: none;
}

/* Circle Badge */

.category-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1A2D4A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: .3s;
}

.category-item:hover .category-badge {
    background: #dfa64c;
    transform: rotate(8deg);
}

.category-name {
    color: #444;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.category-item:hover .category-name {
    color: #1A2D4A;
}

/* ===============================
   LATEST POSTS
==================================*/

.latest-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #efefef;
}

.latest-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.latest-img {
    width: 90px;
    min-width: 90px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.latest-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: .4s;
}

.latest-item:hover .latest-img img {
    transform: scale(1.08);
}

.latest-content {
    flex: 1;
}

.latest-title {
    display: block;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: .3s;
    margin-bottom: 10px;
}

.latest-title:hover {
    color: #1A2D4A;
    text-decoration: none;
}

.latest-date {
    color: #777;
    font-size: 13px;
}

.latest-date i {
    color: #1A2D4A;
    margin-right: 6px;
}

/* ===============================
   RESPONSIVE
==================================*/

@media(max-width:991px) {

    .widget {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .latest-img {
        width: 75px;
        min-width: 75px;
        height: 70px;
    }

}

@media(max-width:576px) {

    .category-item {
        padding: 10px;
    }

    .category-badge {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .latest-item {
        gap: 12px;
    }

    .latest-title {
        font-size: 14px;
    }

}

/* ==========================
   BLOG CONTENT
========================== */

.blog h2 {
    font-weight: 700;
}

.blog-content~p,
.other-page p {
    text-align: justify;
    color: #555;
}

/* Headings */
.blog-content~h1,
.blog-content~h2,
.blog-content~h3,
.blog-content~h4,
.blog-content~h5,
.blog-content~h6,
.other-page h1,
.other-page h2,
.other-page h3,
.other-page h4,
.other-page h5,
.other-page h6 {
    font-weight: 700;
    line-height: 1.4;
    color: #4A0404;
}

/* Bold */
.blog-content~b,
.blog-content~strong,
.other-page b,
.other-page strong {
    color: #000000b5 !important;
    font-weight: 700;
}

/* Italic */
.blog-content~i,
.blog-content~em,
.other-page i,
.other-page em {
    color: #666;
    font-style: italic;
}

/* Lists */
.blog-content~ul,
.blog-content~ol,
.other-page ul,
.other-page ol {
    padding-left: 30px;
    color: #555;
}

.blog-content~ul li::marker,
.blog-content~ol li::marker,
.other-page ul li::marker,
.other-page ol li::marker {
    color: #4A0404;
}

/* Links */
.blog-content~p a,
.other-page a {
    color: #4A0404;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

/* Images */
.blog img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Tables */
.blog-content~table,
.other-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.blog-content~table th,
.other-page table th {
    background: #5c0874;
    color: #fff;
    padding: 12px;
    border: 1px solid #ddd;
}

.blog-content~table td,
.other-page table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.blog-content~table tr:nth-child(even),
.other-page table tr:nth-child(even) {
    background: #fafafa;
}

/* Horizontal Line */
.blog-content~hr,
.other-page hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

.blog-centent a {
    font-size: 18px;
}

.blog-single-header h1 {
    font-size: 28px;
}

/* Responsive */
@media (max-width:768px) {

    .blog-content,
    .other-page {
        font-size: 15px;
        line-height: 1.8;
    }

    .blog-content~h1,
    .other-page h1 {
        font-size: 30px;
    }

    .blog-content~h2,
    .other-page h2 {
        font-size: 26px;
    }

    .blog-content~h3,
    .other-page h3 {
        font-size: 22px;
    }

    .blog-content~table,
    .other-page table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .blog-content~table th,
    .blog-content~table td,
    .other-page table th,
    .other-page table td {
        min-width: 140px;
    }

    .blog img {
        height: auto;
    }
}

/* Index page new sections */

.welcome-section {
    padding: 60px 0 20px;
    background: transparent;
}

.welcome-section .section-tag {
    display: inline-block;
    color: #dfa64c;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.welcome-section h2 {
    color: #1A2D4A;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.welcome-section h2 span {
    color: #dfa64c;
}

.welcome-section .welcome-content {
    /* max-width: 900px; */
    margin: 0 auto;
}

.welcome-section .welcome-content p {
    text-align: justify;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.welcome-section .welcome-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.welcome-section .feature-box {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #edf0f5;
    transition: .3s;
}

.welcome-section .feature-box:hover {
    transform: translateY(-8px);
    border-color: #dfa64c;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.welcome-section .feature-box i {
    font-size: 34px;
    color: #dfa64c;
    margin-bottom: 18px;
}

.welcome-section .feature-box h5 {
    color: #1A2D4A;
    margin-bottom: 10px;
    font-weight: 700;
}

.welcome-section .feature-box p {
    color: #666;
    margin: 0;
}

@media(max-width:991px) {

    .welcome-section .welcome-features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:576px) {

    .welcome-section .welcome-features {
        grid-template-columns: 1fr;
    }

    .welcome-section h2 {
        font-size: 16px;
    }

    .welcome-section .section-tag {
        display: inline-block;
        color: #dfa64c;
        letter-spacing: 2px;
        font-weight: 800;
        margin-bottom: 7px;
        font-size: 13px;
    }

    .welcome-section {
        padding: 20px 0;
    }

    .welcome-section .welcome-content {
        max-width: 900px;
        margin: 0 auto 25px;
    }
}

.spiritual-banner {
    background: url('../images/Temple.jpg') center center/cover;
    position: relative;
    padding: 140px 0;
    margin-bottom: 50px;
}

.spiritual-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 45, 74, .82);
}

.spiritual-banner .overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.spiritual-banner h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.spiritual-banner p {
    color: #eee;
    max-width: 750px;
    margin: auto;
    line-height: 1.9;
    margin-bottom: 35px;
}

@media screen and (max-width: 468px) {
    .spiritual-banner h2 {
        font-size: 20px;
    }

    .spiritual-banner {
        padding: 45px 0;
    }
}

.offer-banner {
    padding: 30px 0 10px;
    overflow: hidden;
}

.offer-banner img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    display: block;
    animation: offerZoom 4s ease-in-out infinite;
    transition: .3s;
}

.offer-banner:hover img {
    animation-play-state: paused;
    transform: scale(1.02);
}

@keyframes offerZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .offer-banner {
        padding: 7px 14px;
    }

    .offer-banner img {
        border-radius: 8px;
        height: auto;
    }
}

.welcome-img {
    width: 100%;
    max-width: 430px;
    animation: floatImg 5s ease-in-out infinite;
    border-radius: 20px;
    height: 270px;
    object-fit: cover;
}

.ganapathi-slokam {
    margin: 30px 0;
    padding: 25px;
    border-left: 5px solid #dfa64c;
    background: #f8f9fc;
    border-radius: 10px;
}

.ganapathi-slokam h4 {
    color: #dfa64c;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ganapathi-slokam h3 {
    color: #1A2D4A;
    font-size: 34px;
    line-height: 1.7;
    font-weight: 700;
    font-family: 'Noto Serif Tamil', 'Noto Sans Tamil', serif;
    margin: 0;
}

@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@media(max-width:991px) {

    .welcome-img {
        margin-bottom: 0;
        height: auto;
    }

    .ganapathi-slokam {
        text-align: center;
    }

    .ganapathi-slokam h3 {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .ganapathi-slokam h3 {
        font-size: 16px;
        line-height: 1.6;
    }

    .ganapathi-slokam h4 {
        font-size: 16px;
    }

}

.welcome-section p {
    text-align: justify;
}


.modal-content {
    max-width: max-content !important;
}


.page-content img {
    /* border: #009DFF medium solid; */
    border-radius: 10px;
    /* box-shadow: #D3B200 3px 3px 3px; */
}

.page-content h2 {
    /* color: #009DFF; */
    font-weight: bold;
}

.gallery img {
    border-radius: 10px 0;
    box-shadow: #ccc 0px 5px 13px;
}

.contact-boxes {
    display: flex;
    align-items: center;
    padding: 15px 15px 0;
    margin-bottom: 15px;
    background: #fbf5eb;
    border-left: 4px solid #4A0404;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-boxes:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.form-label {
    color: #4A0404;
    font-weight: 500;
}


@media screen and (max-width: 468px) {
    .contact-info i {
        margin-right: 6px;
        margin-left: -20px;
    }

    .contact-info .col-2:has(i) {
        padding: 0;
    }
}