@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Global Styles */
:root {
    --primary-color: #00a651;
    --secondary-color: #0077bd;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --border-color: #e9e9e9;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    border-radius: 4px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #008d44;
    border-color: #008d44;
}

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success:hover {
    background-color: #008d44;
    border-color: #008d44;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    width: 60%;
    margin: 0 auto;
    background-color: #0D6EFD;
}

/* Top Info Bar */
.top-info-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
    color: var(--dark-color);
    border-bottom: 1px solid #e9ecef;
}

.welcome-text {
    margin: 0;
    font-weight: 500;
}

.contact-info a {
    color: var(--dark-color);
    margin-left: 15px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Main Navbar */
.main-navbar {
    padding: 15px 0;
    background-color: var(--light-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-height: 60px;
}

.search-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-box .form-control {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.category-select {
    width: auto;
    border-radius: 0;
    border-left: none;
    background-color: var(--light-color);
    color: var(--dark-color);
    padding-right: 25px;
}

.search-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
}

.search-btn:hover {
    background-color: var(--hover-color);
}

.enquiry-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.enquiry-btn:hover {
    background-color: #e62e2e;
    color: var(--light-color);
}

.navbar-toggler {
    border: none;
    background: transparent;
    color: var(--dark-color);
    font-size: 24px;
}

/* Navigation Menu */
.navigation-menu {
    background-color: var(--primary-color);
}

.navbar-nav {
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 600;
    padding: 15px 20px !important;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--hover-color);
}

/* Megamenu */
.has-megamenu {
    position: static !important;
}

.megamenu {
    padding: 1rem;
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    border: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.category-section {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.category-header {
    /* margin-bottom: 10px; */
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    overflow: hidden;
    /* height: 150px; */
}

.category-header img {
    width: 90px;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-header:hover img {
    transform: scale(1.05);
}

.megamenu-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.megamenu-list li {
    margin-bottom: 8px;
}

.megamenu-list a {
    color: var(--dark-color);
    transition: color 0.3s, padding 0.3s;
    display: block;
    padding: 1px 0;
    font-size: 14px;
}

.megamenu-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Hover behavior for megamenu */
@media (min-width: 768px) {
    .dropdown:hover .megamenu {
        display: block;
    }
}

/* Responsive styles */
@media (max-width: 991px) {
    .welcome-text {
        font-size: 12px;
    }

    .contact-info a {
        margin-left: 10px;
        font-size: 12px;
    }

    .nav-link {
        padding: 10px 15px !important;
    }
}

@media (max-width: 767px) {
    .top-info-bar {
        display: none;
    }

    .megamenu {
        padding: 0;
    }

    .category-header {
        height: 100px;
    }

    .nav-link {
        padding: 8px 10px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .category-section {
        margin-bottom: 10px;
        padding: 0 !important;
    }

    .megamenu-list a {
        font-size: 13px;
    }
}

/* Hero Slider */
.hero-slider img {
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.slide-content {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}

.hero-text h5 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #008a44;
    border-color: #008a44;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-image {
        margin-top: 30px;
    }
}


/* Hero Slider */
.hero-slider {
    margin-bottom: 40px;
}

.slide-content {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.slide-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}

.hero-text h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #a5b1bf;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Featured Products */
.featured-products {
    margin-bottom: 40px;
}

.featured-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.featured-product-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.featured-product-card:hover img {
    transform: scale(1.05);
}

.featured-product-card:hover h3 {
    color: white;
}

.featured-product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
}

.featured-product-card:hover .overlay {
    opacity: 1;
}


/* Category Section */
.category-section {
    padding: 40px 0;
    background-color: var(--white-color);
}

.product-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-info p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
    height: 45px;
    overflow: hidden;
}

.product-info .btn {
    width: 100%;
    padding: 8px 15px;
}

/* Our Products Section */
.our-products {
    padding: 40px 0;
    background-color: var(--light-color);
}

.featured-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.featured-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-box:hover img {
    transform: scale(1.1);
}

.featured-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    padding: 10px;
    text-align: center;
}

.featured-caption h4 {
    margin: 0;
    font-size: 16px;
    color: var(--white-color);
}

/* Brand Section */
.brand-section {
    padding: 30px 0;
    background-color: var(--white-color);
    text-align: center;
}

.brand-logo img {
    max-width: 100%;
    margin-bottom: 20px;
}

.brand-products img {
    max-width: 100%;
}

.counter-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    /* Example: #0d6efd */
    color: var(--white-color);
    /* Example: #ffffff */
    text-align: center;
}

.counter-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.counter-box .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ffc107;
    /* Gold-like highlight */
}

.counter-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white-color);
}

.counter-box p {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

/* Feature Highlight Section */
.feature-highlight-section {
    background-color: #f8f9fa;
    /* light background */
    padding: 50px 0;
}

.feature-box {
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    font-size: 36px;
    color: var(--primary-color);
    /* customize this */
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.brand-section img {
    height: 200px;
    width: 100%;
}



/* Footer */
.main-footer {
    background-color: #222;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    font-size: 18px;
    color: var(--white-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 50px;
    background-color: var(--primary-color);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
}

.newsletter-form .btn {
    width: 100%;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: var(--white-color);
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Copyright */
.copyright {
    background-color: #1a1a1a;
    color: #999;
    padding: 15px 0;
    font-size: 14px;
}

.copyright p {
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--white-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .nav-links li {
        margin: 5px 10px;
    }
}

@media (max-width: 768px) {

    .top-contact,
    .top-links {
        text-align: center;
        margin-bottom: 5px;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .slide-content {
        padding: 40px 0;
    }

    .counter-box {
        margin-bottom: 20px;
    }

    .counter-box h2 {
        font-size: 28px;
    }

    .counter-box p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }

    .logo {
        text-align: center;
        margin-bottom: 15px;
    }

    .search-bar {
        margin-bottom: 15px;
    }

    .header-cart {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .product-info h3 {
        font-size: 16px;
    }
}


/* Quote Page */
.quote-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://png.pngtree.com/template/20220319/ourlarge/pngtree-water-purifier-banner-image_877553.jpg') center center/cover no-repeat;
    height: 300px;
}

.quote-banner a {
    color: var(--white-color);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: background-color 0.3s ease;
}

.icon-circle:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.icon-box i {
    transition: transform 0.3s ease;
}

.icon-box:hover i {
    transform: scale(1.2);
}


/* Category Page */
.products-grid img {
    max-height: 250px;
    min-height: 250px;
}

/* Sidebar */
.list-group-item {
    border-radius: 0;
    border: 1px solid #ddd;
    cursor: pointer;
}

.list-group-item:hover,
.list-group-item.active {
    background-color: #00964f;
    color: white;
    border-color: #00964f;
    font-weight: bold;
}

/* Corner Ribbon */
.corner-ribbon {
    width: 0;
    height: 0;
    border-top: 30px solid #00964f;
    border-right: 30px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 5px 0 0 0;
}

/* Product Card Styling */
.products-grid .product-card {
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.product-card img {
    height: 220px;
    /* object-fit: contain; */
    padding: 1rem;
    background-color: #f9f9f9;
    cursor: pointer;
}

.product-card h6 {
    font-size: 16px;
}


/* Details page */
.product-content {
    padding: 40px;
}

.product-content .product-image-section {
    position: relative;
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-content .product-image-section:hover {
    transform: translateY(-5px);
}

.product-content .product-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-content .product-image:hover {
    transform: scale(1.05);
}

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.product-content .product-image-section:hover .zoom-icon {
    opacity: 1;
}

.product-content .zoom-icon:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.product-content .product-details {
    padding-left: 40px;
}

.features-list {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border-left: 5px solid var(--primary-color);
}

.features-list h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 166, 81, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-number {
    background: var(--primary-color);
    color: var(--white-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.contact-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    border-radius: 15px;
    padding: 25px;
    color: var(--white-color);
    text-align: center;
    margin: 25px 0;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.enquiry-btn {
    /* background: linear-gradient(135deg, var(--accent-color) 0%, #ff8a65 100%); */
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--white-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.enquiry-btn:hover {
    background: linear-gradient(135deg, #ff8a65 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: var(--white-color);
}

.share-section {
    margin: 20px 0;
}

.share-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.share-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link.facebook {
    background: #1877f2;
}

.share-link.twitter {
    background: #1da1f2;
}

.share-link.linkedin {
    background: #0077b5;
}

.share-link.whatsapp {
    background: #25d366;
}

.share-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.description-section {
    margin-top: 40px;
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.description-tab {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 15px 25px;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.description-content {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Fullscreen Modal */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.fullscreen-modal.active {
    display: flex;
}

.fullscreen-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        margin: 20px;
        border-radius: 15px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-content {
        padding: 20px;
    }

    .product-details {
        padding-left: 0;
        margin-top: 30px;
    }

    .phone-number {
        font-size: 1.4rem;
    }

    .share-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .close-modal {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-container {
    animation: fadeInUp 0.8s ease;
}

.feature-item {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
    animation-delay: 0.6s;
}
