/* Base Styles */
:root {
    --primary-color: #d4af37;
    /* --primary-color: #a83e51; */
    --theme-color: #f8f9ec;
    --secondary-color: #d4af37;
    --dark-color: #333333;
    --light-color: #f8f5f0;
    --text-color: #4a4a4a;
    --border-color: #e0e0e0;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary) !important;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #F8F5F2 !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none !important;
    color: inherit !important;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0 !important;
}

.container-navbar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-own {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-primary-own {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary-own:hover {
    background-color: transparent !important;
    color: var(--primary-color) !important;
}

.btn-secondary-own {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: block;
    margin: 0 auto;
   
}

.btn-secondary-own:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.text-left {
    text-align: left;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--secondary-color);
}

.section-header.text-left .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 16px;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.text-left .section-subtitle {
    margin: 0;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    transition: all 0.3;
}

.announcement-content {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.announcement-content span {
    display: flex;
    align-items: center;
}

.announcement-content i {
    margin-right: 8px;
    color: var(--theme-color);
}

/* Social icons container */
.social-icons {
    position: absolute;
    top: 10px;
    /* Distance from the top of the bar */
    right: 80px;
    /* Distance from the right side of the bar */
    display: flex;
    gap: 25px;
}

.social-icon {
    color: white;
    /* Icon color */
    font-size: 18px;
    /* Adjust the size of the icons */
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
    /* Hover color */
}




/* Header */
.header {
    background-color: var(--theme-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.nav-hidden {
    transform: translateY(-101%);
    transition: transform 0.3s ease;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo h1 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 10;

}

.logo img {

    height: 45px;

}

.nav-list {
    display: flex;
    gap: 30px;
    margin: 0;
    margin-right: 160px;
}

.nav-link-own {
    font-weight: 500;
    position: relative;

}

.nav-link-own::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link-own:hover::after,
.nav-link-own.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.header-icons img {
    height: 70px;
}

.icon-link {
    font-size: 20px;
    color: var(--dark-color);
    position: relative;
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}







/* Hero Section */
.hero {
    height: 85vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/hero-image.png');
    /* background-size: cover; */
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--theme-color);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}




/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    /* background-color: var(--theme-color); */
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-image {
    height: 300px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transition: var(--transition);
}

.category-title {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 10px;
}

.category-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.category-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.category-link:hover i {
    transform: translateX(5px);
}






/* Featured Products */
.featured-products {
    padding: 40px 0;
}

.featured-products a {
    color: var(--primary-color) !important;
}

.featured-products a:hover {
    color: white !important;
}

/* Swiper Styles */
.products-swiper {
    overflow: hidden;
    margin: 0 -15px;
    padding: 0 15px;
}

.products-swiper .swiper-slide {
    height: auto;
    display: flex;
    padding-bottom: 30px;
}

.products-swiper .product-card {
    width: 100%;
    height: 100%;
}

/* Custom Swiper Navigation Buttons */
.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -55px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.products-swiper .swiper-button-next:after,
.products-swiper .swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: 900;
}

.products-swiper .swiper-button-next:hover,
.products-swiper .swiper-button-prev:hover {
    background-color: var(--dark-color);
    transform: scale(1.1);
}

.products-swiper .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Custom Pagination */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.custom-pagination .pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.custom-pagination .pagination-bullet.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.custom-pagination .pagination-bullet:hover {
    background-color: var(--primary-color);
    opacity: 0.7;
}

/* Legacy grid styles for fallback */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    /* background-color: var(--theme-color); */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);

}

.product-card:hover {

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tag {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    color: white;
}

.tag-new {
    background-color: #4caf50;
}

.tag-bestseller {
    background-color: #ff9800;
}

.tag-sale {
    background-color: #f44336;
}

.tag-limited {
    background-color: #9c27b0;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    margin-right: 10px;
}



/* About Section */
.about-section {
    padding: 80px 0;
    /* background-color: var(--theme-color); */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 620px;
}

.about-text {
    flex: 1;
     line-height: 1.8;
    
}

.about-text p {
    margin-bottom: 20px;
    
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     /* Ensure perfect circle */
    flex-shrink: 0;
    overflow: hidden;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-text p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}


/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: var(--theme-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.author-location {
    font-size: 14px;
    color: #777;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-control {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.testimonial-control:hover {
    color: var(--primary-color);
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-color);
}



/* Footer */
.footer {
    background-color: var(--theme-color);
    color: var(--text-color);
    padding: 80px 0 0px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;

}



.footer-logo h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-logo img {
    height: 45px;
    margin-bottom: 15px;

}

.footer-description {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.9;
}

.social-links {
    display: flex;
    gap: 15px;
}


.social-links i {
    color: white;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.insta {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);

}

.fb {
    background-color: #1877F2;
}

.linked {
    background-color: #0A66C2;
}

.yt {
    background-color: #FF0000;
}

.social-link:hover {

    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

}

.footer-links a {
    color: #bbb;
    font-size: 14px;
    position: relative;


}


.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover::after,
.footer-links a.active::after {
    width: 100%;
}



.contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 14px;
}


.contact-info li a:hover {
    padding-left: 0px;
}


.contact-info li a:hover::after {
    width: 0%;
}



.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;

}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #E1E1D6;
    /* slightly darker than #F9F9F1 */

    font-size: 14px;
}

.copyright {
    color: var(--text-color);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
}

.payment-methods i {
    font-size: 24px;
}





/* about page css */

/* Breadcrumb Section */
.breadcrumb-section {
    /* background-image: url('https://mahavirs.com/cdn/shop/files/B02E35EB-E844-4917-BB9D-9D4B232FC2C3.jpg?v=1712842278');  */
    background-image: url('/images/breadcrumb-img.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    color: white;
}

.breadcrumb-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    /* dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.breadcrumb-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.breadcrumb-list {
    display: flex;
    gap: 3px;
    font-size: 14px;
    margin-top: 5px;
    color: white;
    justify-content: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: white;
}

.breadcrumb-list a {
    color: var(--secondary-color) !important;
}

.breadcrumb-list a:hover {
    color: white;
}



/* About Content */
.about-section-page {
    background-color: white;
    padding: 40px 0px;
}




.about-text {
    font-size: 16px;
    margin-bottom: 20px;
}

.about-highlight {
    color: var(--primary-color);
    font-weight: 600;
}



/* contact page css */


/* Modern Contact Section */
.contact-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}



.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}


/* Contact Info Card */
.contact-info-box {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #fff 0%, var(--theme-color) 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    ;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.contact-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
}

.contact-info-title {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 167, 98, 0.3);
}

.contact-text h4 {
    font-size: 18px;
    margin: 0 0 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-text p,
.contact-text a {
    margin: 0;
    color: #666;
    text-decoration: none;
    font-size: 15px;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 167, 98, 0.3);
}

.contact-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

.social-links2 {
    display: flex;
    gap: 15px;
}

.social-link2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;

}



/* Contact Form Card */
.contact-form-box {
    flex: 1.5;
    min-width: 300px;
    background: linear-gradient(135deg, #fff 0%, var(--theme-color) 100%);
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    ;
    overflow: hidden;
    position: relative;
}

.form-header {
    background-color: var(--primary-color);
    padding: 25px 40px;
    color: white;
}

.form-title {
    font-family: var(--font-primary);
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.form-subtitle {
    font-size: 14px;
    margin: 5px 0 0;
    opacity: 0.9;
}

.contact-form {
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 8px 18px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 14px !important;
    transition: all 0.3s;
    background-color: #f9f9f9 !important;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
    background-color: #fff;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {

    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}



.submit-btn:hover {

    background-color: var(--theme-color);
    color: var(--primary-color);
}






/* Responsive Styles */
@media (max-width: 1024px) {
    .products-swiper .swiper-button-next,
    .products-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
        margin-top: -22.5px;
    }

    .products-swiper .swiper-button-next:after,
    .products-swiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--theme-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition);
        z-index: 0;
    }

    .nav-list.active {
        left: 0;
    }

    body.no-scroll {
        overflow: hidden;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .products-swiper .swiper-button-next,
    .products-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .products-swiper .swiper-button-next:after,
    .products-swiper .swiper-button-prev:after {
        font-size: 14px;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 40px;
    }

    .about-content {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .breadcrumb-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .breadcrumb-section {
        height: 180px;
    }

    .form-row {
        flex-direction: column;
        gap: 0px !important;
    }

    .form-row2 {
        margin-top: -18px;
    }

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

    .contact-info-box,
    .contact-form-box {
        width: 100%;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-header {
        padding: 20px;
    }


    .logo img {

        height: 40px;

    }


    .header-content {

        padding: 10px 0;
    }


    .header-icons img {
        height: 55px;
    }

    .hero {

        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/Embroidery\ saree\ 3.png');
        background-size: cover;

    }
}

@media (max-width: 576px) {
    .products-swiper .swiper-button-next,
    .products-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        margin-top: -17.5px;
    }

    .products-swiper .swiper-button-next:after,
    .products-swiper .swiper-button-prev:after {
        font-size: 12px;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .announcement-content {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    /* Adjust social icons for smaller screens */
    .social-icons {
        position: absolute;
        /* Change position to relative */
        top: 6px;
        right: 15px;
        justify-content: center;
        gap: 10px;

    }

    .social-icon {
        font-size: 20px;
        /* Slightly larger icons for mobile */
    }

    .hero-title {
        font-size: 32px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info-box {
        padding: 30px 20px;
    }

    .logo img {

        height: 40px;

    }


    .header-content {

        padding: 10px 0;
    }
}


/* alert */

.custom-alert {
    position: fixed;
    top: 60px;
    right: 20px;
    padding: 3px 20px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    z-index: 10000;

    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-alert.success {
    background-color: #32CD32;
    color: white;
    border-color: #c3e6cb;
}

.custom-alert.error {
    background-color: #FF0000;
    color: white;
    border-color: #f5c6cb;
}

.custom-alert.show {
    transform: translateX(0);
    opacity: 1;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-alert {
        top: 60px;
        right: 10px;
        max-width: 250px;
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .custom-alert {
        top: 50px;
        right: 5px;
        max-width: 200px;
        font-size: 12px;
        padding: 5px 10px;
    }
}





/* 404 start */
/* 404 Page Styles */
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.error-content {
    max-width: 600px;
    padding: 2rem;
    border-radius: 10px;
}

.error-icon {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.error-content h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1;
}

.error-content h2 {
    font-size: 2rem;
    color: #555;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.error-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.back-home-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white !important;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-home-btn:hover {
    background-color: white;
    color: var(--primary-color) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .error-content h1 {
        font-size: 4rem;
    }

    .error-content h2 {
        font-size: 1.5rem;
    }

    .error-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .error-content {
        padding: 1.5rem;
    }

    .error-content h1 {
        font-size: 3rem;
    }

    .error-content h2 {
        font-size: 1.2rem;
    }
}




/* 404 end */


/* terms and condtion page */



.toc-section {
    margin-bottom: 2.5rem;

}

.toc-section-title {
    font-size: 1.5rem;
    font-weight: 600;

    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.toc-section-content {

    line-height: 1.8;
    margin-bottom: 1rem;
}

.toc-section-content p {
    margin-bottom: 1rem;
}

.toc-ul {
    margin-left: 2rem;
    margin-top: 1rem;
    list-style: disc;
}

.toc-ul li::marker {
    color: var(--primary-color);
    /* Bullet color */
}

.highlight {
    background: var(--theme-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-left: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 2.5rem 0;
}

.toc-contact-info {
    background: var(--theme-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.toc-contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.toc-contact-info p {

    margin-bottom: 0.5rem;
}

.toc-contact-info a {

    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Small screens (tablets & phones) */
@media (max-width: 768px) {
    .toc-section-title {
        font-size: 1.25rem;

    }





    .toc-contact-info h3 {
        font-size: 1.1rem;
    }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .toc-section-title {
        font-size: 1.1rem;

    }






    .toc-contact-info h3 {
        font-size: 1rem;
    }

    .toc-contact-info p {
        font-size: 0.9rem;
    }
}


/* terms and condtion page */