* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Header and Top Bar */
.container-fluid.d-flex {
    background-color: #00bfa6;
    padding: 12px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.container-fluid .nav-link {
    font-weight: 600;
    color: #2c5aa0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.container-fluid .nav-link:hover {
    color: #00a896;
    transform: translateY(-2px);
}

.cart-count {
    background: #00a896;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
}

.container-fluid span {
    font-weight: 600;
    color: #2d3748;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Navbar */

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    height: 60px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: black !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: black;
}

.navbar-nav .nav-link {
    color: black !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 2px;
    margin-left: 30px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: black !important;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Dropdown opens on hover for desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


@media (max-width: 600px) {

    .navbar {
        height: auto !important;

        z-index: 999;
        padding: 0rem 0;
        background-color: lightblue;
    }

    .navbar-brand {
        font-weight: 800;
        font-size: 1.3rem;
        color: black !important;
        display: flex;
        align-items: center;
    }

    .navbar-brand i {
        font-size: 1rem;
        margin-right: 0.5rem;
        color: black;
    }

}



.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0rem 0;
    min-width: 220px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 0.2rem 0.8rem;
    transition: all 0.2s ease;
    font-weight: 200;
    color: #495057;

}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: black;
}

.dropdown-divider {
    margin: 0.3rem 0;
}

.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {

    .navbar {
        height: auto;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.7rem 1rem;
        margin: 2px 0;
        color: black !important;
    }

    .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
        border-left: 3px solid rgba(0, 0, 0, 0.1);
    }

    .dropdown-item {
        color: black;
        padding-left: 2rem;
    }

    .dropdown-item:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: black;
    }

    /* Ensure dropdown-toggle works properly on mobile */
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: url('./img/home.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    height: 400px;
    padding: 100px 0;
    text-align: center;
    z-index: 1;
    overflow: hidden;

}



.hero .content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
}

.hero h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #e1e1e1;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

.hero-btn {
    background: #ffffff;
    color: #2c5aa0;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #00a896 0%, #00bfa6 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.hero-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.hero-btn:hover::before {
    width: 100%;
}

/* Welcome Section */
.container.text-center.my-5 {
    padding: 60px 0 30px;
}

.container.text-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.container.text-center h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00a896 0%, #00bfa6 100%);
    border-radius: 2px;
}

.container.text-center p.lead {
    font-size: 1.3rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.container.text-center p strong {
    color: #2c5aa0;
    position: relative;
}

.container.text-center p strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00a896;
    border-radius: 1px;
}

/* Products Section */
#products {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00a896 0%, #00bfa6 100%);
    border-radius: 2px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 products per row */
        gap: 10px;
        padding: 0 10px;
    }

    .product-grid .col {
        width: 100%; /* Ensure full width in grid cell */
    }
}


/* Product Card */
.product-card {
    border: none;

    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: #ffffff;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0 0%, #00a896 100%);
    z-index: 1;
}

/* Product Image */
.product-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.02);
}

/* Card Body */
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    text-align: left;
    line-height: 1.4;
    flex-grow: 1;
}

.card-text.text-muted.small {
    font-size: 0.8rem;
    color: #718096 !important;
    margin-bottom: 12px;
    text-align: left;
    line-height: 1.4;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

/* Price and Add to Cart */
.d-flex.justify-content-between.align-items-center {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.price-tag {
    font-size: 1rem;
    font-weight: 500;
    color: #2c5aa0;
}

.add-to-cart {
    background: #2c5aa0;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 0.7rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-width: 120px;
    justify-content: center;
}

.add-to-cart:hover {
    background: #00a896;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.3);
}

.add-to-cart:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 168, 150, 0.2);
}

/* WhatsApp Button in Detail Page */
.whatsapp-btn {
    background: #25D366;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 0.7rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-width: 120px;
    justify-content: center;
    margin-left: 10px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.3);
}

.whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(18, 140, 126, 0.2);
}

/* Product Detail Section */
.product-detail {
    padding: 80px 0;
    background: #f8fafc;
}

.product-detail img {
    max-height: 500px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-detail h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.product-detail .text-muted {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.product-detail #detail-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-detail #detail-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.product-detail h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 25px;
}

/* Toast Notification */
.toast-container {
    z-index: 1055;
}

.toast {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Cart Modal */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #808080 0%, #A0A0A0 100%);
    color: white;
    border-bottom: none;
    padding: 20px;
}

.modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.modal-body {
    padding: 25px;
}

.cart-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #f8f9fa;
    padding: 5px;
    margin-right: 15px;
    flex-shrink: 0;
}

.cart-item .flex-grow-1 h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d3748;
}

.cart-item .text-muted {
    font-size: 0.85rem;
}

.cart-item input.form-control {
    width: 70px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.cart-item .btn-outline-danger {
    border-radius: 8px;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.cart-item .btn-outline-danger:hover {
    transform: scale(1.05);
}

.modal-footer {
    border-top: 1px solid #f1f5f9;
    padding: 20px;
}

/* Checkout Modal */
#payment {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
}

#upi-qr {
    transition: all 0.3s ease;
}

#upi-qr img {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}










.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}


.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: black;

}

.why-choose-us {
    background-color: #e7f1ff;
    color: black;
}

.why-choose-us p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.pricing {
    background-color: #d1edff;
    color: black;
}

.pricing-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: justify;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.pricing-card p {
    margin-bottom: 15px;
}

.highlight {
    background-color: black;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 0px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 08px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.7rem;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
}














/* Contact Section */
#contact {
    padding: 80px 0;
    background: #ffffff;
}

#contact .section-title {
    margin-bottom: 50px;
}

#contact label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
}

#contact .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

#contact .form-control:focus {
    border-color: #3a8dde;
    box-shadow: 0 0 0 3px rgba(58, 141, 222, 0.15);
}

#contact textarea.form-control {
    resize: none;
    min-height: 150px;
}

#contact .btn-primary {
    background: linear-gradient(135deg, #808080 0%, #A0A0A0 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#contact .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #00a896 0%, #00bfa6 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

#contact .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#contact .btn-primary:hover::before {
    width: 100%;
}

#contact .col-md-6:last-child h5 {
    color: #2c5aa0;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

#contact .col-md-6:last-child p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#contact .col-md-6:last-child i {
    color: #3a8dde;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #cbd5e0;
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.footer .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer a:hover {
    color: white;
    transform: translateX(5px);
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer i {
    color: #3a8dde;
    transition: all 0.3s ease;
}

.footer a:hover i {
    color: #00a896;
    transform: scale(1.2);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer .text-center {
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-links-section h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e2e8f0;
    border-bottom: 1px solid #4a5568;
    padding-bottom: 8px;
}

.footer-links-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-links-column ul li {
    margin-bottom: 8px;
}

.footer-links-column ul li a {
    font-size: 0.9rem;
    color: #cbd5e0;
    transition: all 0.2s ease;
}

.footer-links-column ul li a:hover {
    color: #63b3ed;
}

.footer-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
}

.footer-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #63b3ed;
    width: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-links-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links-columns {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer>* {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 140px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h3 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .container.text-center h2 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero {

        height: 150px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero h3 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .container.text-center h2 {
        font-size: 1.9rem;
    }

    .container.text-center p.lead {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .nav-link {
        margin: 0 10px;
    }

    .footer .row>div {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        position: relative;
        background: url('./img/home.jpg') no-repeat center center;
        background-size: cover;
        color: white;
        height: 120px;
        padding: 0;
        text-align: center;
        z-index: 1;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero h3 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .container.text-center h2 {
        font-size: 1.7rem;
    }

    .container.text-center p.lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .price-tag {
        font-size: 1.2rem;
    }

    .add-to-cart {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .modal-dialog {
        margin: 10px;
    }
}




.telegram-sticky {
    position: fixed;
    bottom: 08px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #0088cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.2s;
}

.telegram-sticky:hover {
    transform: scale(1.1);
}

.telegram-sticky img {
    width: 30px;
    height: 30px;
}







.payment-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px auto;
    max-width: 800px;
    padding: 10px;
}

.payment-section h2 {
    margin-right: 30px;
    white-space: nowrap;
}

.payment-logo {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease;
}

.payment-logo:hover {
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .payment-section {

        align-items: flex-start;
    }

    .payment-section h2 {
        margin-bottom: 10px;
        margin-right: 0;
    }
}