
/* General Styles for Navigation Bar (Desktop) */
.navbar {
    background-color: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px; /* Ensure proper spacing */
    z-index: 100;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}



/* Company Name (Anchor Tag) */
.logo a {
    text-decoration: none; /* Removes underline from the anchor tag */
    color: #ffffff; /* White text for visibility on black background */
}

/* Company Name Text */
.logo .logo-text {
    margin-left: 5px;
    font-size: 2vw; /* Responsive font size based on viewport width */
    font-weight: bold; /* Makes the text stand out */
    letter-spacing: 1.5px; /* Adds spacing between letters for elegance */
    text-transform: uppercase; /* Converts text to uppercase for impact */
    transition: all 0.3s ease; /* Smooth hover effect */
}




/* Navigation Links */
.nav-links {
    display: flex;
    margin-right: auto;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2vw;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect on Links */
.nav-links a:hover {
    color: #f5a623;
    transform: scale(1.1);
}

/* Icons */
.nav-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
}

.nav-icons a {
    color: #fff;
    font-size: 1vw;
    margin: 0 4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: #f5a623;
}

/* Toggle Button (for Mobile only) */
.toggle-btn {
    display: none;
    font-size: 6vw;
    color: #fdfdfd;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 1001;
    transform: translateY(-50%);
    transition: color 0.3s ease;
}

.toggle-btn:hover {
    color: #f5a623;
}

/* Responsive Styles (Tablets) */
@media (max-width: 1024px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        padding: 10px 20px;
        flex-wrap: nowrap;
        position: relative;
        height: 80px;
    }

    /* Center the Logo */
    .logo {
        flex-grow: 1;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }

    .logo a {
        font-size: 4vw;
        color: #f3f8f8;
        font-weight: bold;
    }

    .logo .logo-text {
        font-size: 4vw;
        margin-left: 0.3vw;
    }

    /* Adjusting Cart and Search Icons */
    .nav-icons {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        gap: 15px;
    }

    .nav-icons a {
        font-size: 5vw;
        color: #fff;
    }

    /* Hover effect on icons */
    .nav-icons a:hover {
        color: #f5a623;
    }

    /* Toggle Button for Mobile and Tablets */
    .toggle-btn {
        display: block;
        font-size: 6vw;
        position: absolute;
        top: 50%;
        left: 15px;
        z-index: 1000;
        transform: translateY(-50%);
    }

    /* Mobile Navigation Menu */
.nav-links {
    position: fixed;
    top: 60px; /* Push below the logo */
    left: -100%;
    width: 80%; /* Adjust width */
    max-height: 70vh; /* Prevent too much height */
    background-color: #fff; 
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding-top: 10px; /* Prevent overlap */
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    z-index: 999;
}

/* Ensure the navbar stays at the top */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px; /* Ensure proper spacing */
    background-color: #222; /* Keep consistent */
    z-index: 1000;
}


    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 5vw;
        color: #333;
        font-weight: bold;
        text-align: left;
        text-transform: capitalize;
        transition: color 0.3s ease;
        border-bottom: 1px solid #ddd;
    }

    .nav-links a:hover {
        color: #f5a623;
        background-color: #f9f9f9;
    }

    /* When Menu is Open */
    .navbar.active .nav-links {
        left: 0;
    }

    /* Close the menu when scrolling */
    .navbar.active {
        background-color: #222;
    }

    .nav-icons {
        justify-content: flex-end;
        margin-left: auto;
        margin-right: 0;
        padding-right: 0;
    }
}

/* Close the menu when scrolling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #fff;
    transition: background 0.5s ease-in-out;
}

.navbar.active {
    background-color: #222;
}


/* Responsive Styles (Mobile) */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        padding: 10px 20px;
        flex-wrap: nowrap;
        position: relative;
        height: 80px;
    }

    /* Center the Logo */
    .logo {
        flex-grow: 1;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }

    .logo a {
        font-size: 5vw;
        color: #f3f8f8;
        font-weight: bold;
    }

    .logo .logo-text {
        font-size: 5vw;
        margin-left: 0.3vw;
    }

    /* Adjusting Cart and Search Icons */
    .nav-icons {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        gap: 15px;
    }

    .nav-icons a {
        font-size: 4vw;
        color: #fff;
    }

    /* Hover effect on icons */
    .nav-icons a:hover {
        color: #f5a623;
    }

    /* Toggle Button for Mobile and Tablets */
    .toggle-btn {
        display: block;
        font-size: 6vw;
        position: absolute;
        top: 50%;
        left: 15px;
        z-index: 1000;
        transform: translateY(-50%);
    }

    /* Mobile Navigation Menu */
.nav-links {
    position: fixed;
    top: 60px; /* Push below the logo */
    left: -100%;
    width: 80%; /* Adjust width */
    max-height: 70vh; /* Prevent too much height */
    background-color: #fff; 
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding-top: 10px; /* Prevent overlap */
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    z-index: 999;
}

/* Ensure the navbar stays at the top */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px; /* Ensure proper spacing */
    background-color: #222; /* Keep consistent */
    z-index: 1000;
}


    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 5vw;
        color: #333;
        font-weight: bold;
        text-align: left;
        text-transform: capitalize;
        transition: color 0.3s ease;
        border-bottom: 1px solid #ddd;
    }

    .nav-links a:hover {
        color: #f5a623;
        background-color: #f9f9f9;
    }

    /* When Menu is Open */
    .navbar.active .nav-links {
        left: 0;
    }

    /* Close the menu when scrolling */
    .navbar.active {
        background-color: #222;
    }

    .nav-icons {
        justify-content: flex-end;
        margin-left: auto;
        margin-right: 0;
        padding-right: 0;
    }
}

/* Close the menu when scrolling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #fff;
    transition: background 0.5s ease-in-out;
}

.navbar.active {
    background-color: #222;
}































/* Modern Responsive Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Content Section starts after navbar, with extra space above the poster */
.content-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px; /* INCREASED space above the poster */
    margin-bottom: 0; /* No space below the poster */
}

/* Responsive Image Container */
.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Base Image Styling */
.side-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* More space above the poster on mobile */
@media screen and (max-width: 768px) {
    .content-section {
        margin-top: 60px; /* EVEN MORE space above the poster on mobile */
        margin-bottom: 0; /* No space below the poster */
    }
}
































/* Fitness Services Section */
.Fitness-Services {
    text-align: center;
    padding: 30px 20px; /* Slightly increased padding */
    background-color: rgb(14, 0, 0);
    color: white;
    font-family: 'Dancing Script', cursive;
}

.Fitness-Services h2 {
    font-size: 28px; /* Slightly increased font size */
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.Fitness-Services p {
    font-size: 18px; /* Slightly increased font size */
    margin-bottom: 25px;
    font-family: 'Dancing Script', cursive;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Grid */
.product-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px; /* Increased gap */
    padding: 15px; /* Increased padding */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* For Firefox */
    margin: 0 auto;
    max-width: 1200px; /* Added max-width for very large screens */
}

.product-grid::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.product-item {
    background-color: black;
    text-align: center;
    width: 250px; /* INCREASED width for desktop */
    height: 300px; /* INCREASED height for desktop */
    flex: 0 0 auto;
    overflow: hidden;
    position: relative;
    border: 1px solid #fff;
    border-radius: 12px; /* Slightly increased radius */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
    transition: transform 0.4s, box-shadow 0.4s;
    padding: 12px; /* Slightly increased padding */
}

.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
    border-color: rgba(255, 255, 255, 0.8); /* Brighter border on hover */
}

.product-item img {
    width: 100%;
    height: auto;
    max-height: 230px; /* INCREASED image height for desktop */
    object-fit: cover;
    border-radius: 6px; /* Added slight radius to images */
    transition: all 0.4s ease;
}

.product-item:hover img {
    transform: scale(1.03); /* Subtle zoom effect on hover */
}

.product-item p {
    padding: 12px;
    font-size: 16px; /* Increased font size */
    color: white;
    background-color: black;
}

/* Category Name */
.product-item .category-name {
    font-size: 1.3rem; /* Increased font size */
    color: white;
    font-weight: bold;
    margin-top: 15px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Added text shadow */
}

.product-item:hover .category-name {
    opacity: 1;
    color: rgba(255, 255, 255, 0.95); /* Slight color change on hover */
}

/* Add a subtle glow effect on hover */
.product-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    box-shadow: 0 0 15px 2px rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.product-item:hover::after {
    opacity: 1;
}

/* Responsive Design */

/* For larger screens (tablet, desktop) */
@media (min-width: 481px) {
    .product-item {
        width: 280px; /* INCREASED width for desktop */
        height: 340px; /* INCREASED height for desktop */
    }

    .product-item .category-name {
        font-size: 1.3rem; /* Increased font size */
    }
    
    .product-item img {
        max-height: 230px; /* INCREASED image height for desktop */
    }
}

/* For mobile devices - FIXED */
@media (max-width: 480px) {
    .product-item {
        width: 150px;
        height: 260px; /* Increased height to fit text */
        display: flex;
        flex-direction: column;
    }

    .product-item .category-name {
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 5px; /* Reduced margin */
    }

    .product-item img {
        max-height: 130px; /* Slightly reduced */
    }
    
    .product-item p {
        font-size: 0.8rem; /* Slightly smaller text */
        padding: 5px 3px; /* Reduced padding */
        margin: 0; /* Remove default margins */
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }
}

/* For iPhones specifically (iPhone X, 11, 12, etc.) - FIXED */
@media (max-width: 600px) and (min-width: 375px) {
    .product-item .category-name {
        font-size: 1.1rem;
    }
    
    .product-item {
        height: 270px; /* Slightly taller for iPhones */
    }
}



























/* About Us Page Base Styling */
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 60px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

.about-us-content {
    background-color: rgba(255, 255, 255, 0.95);
    color: #2d3436;
    padding: 50px;
    margin: 0 auto;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.01);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    transition: transform 0.3s ease;
}

.about-us-content:hover {
    transform: translateY(-5px);
}

/* Heading Styling */
.about-us h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.about-us h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d3545f 0%, #ff7676 100%);
    border-radius: 2px;
}

/* Paragraph Styling */
.about-us p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 400;
}

/* Testimonials Styling */
.about-us h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3436;
    margin: 50px 0 30px;
    position: relative;
}

.about-us blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #636e72;
    border-left: 4px solid #d3545f;
    padding: 20px 30px;
    margin: 30px 0;
    background-color: #f8f9fa;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.about-us blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    color: rgba(211, 84, 95, 0.1);
    font-family: Georgia, serif;
}

/* Highlight Text */
.about-us strong {
    color: #d3545f;
    font-weight: 600;
}

/* Animation for Content Load */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-us-content {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-us {
        padding: 30px 20px;
    }

    .about-us-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 20px 15px;
        margin-top: 50px;
    }

    .about-us-content {
        padding: 30px;
        margin: 0 10px;
    }

    .about-us h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .about-us p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-us h2 {
        font-size: 1.5rem;
        margin: 40px 0 20px;
    }

    .about-us blockquote {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 15px 10px;
    }

    .about-us-content {
        padding: 20px;
    }

    .about-us h1 {
        font-size: 1.75rem;
    }

    .about-us blockquote {
        padding: 15px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .about-us {
        background: linear-gradient(135deg, #2d3436 0%, #1a1a1a 100%);
    }

    .about-us-content {
        background-color: rgba(45, 52, 54, 0.95);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .about-us h1,
    .about-us h2 {
        color: #f8f9fa;
    }

    .about-us p {
        color: #dee2e6;
    }

    .about-us blockquote {
        background-color: rgba(248, 249, 250, 0.05);
        color: #adb5bd;
    }
}
















































/* General Styles for Categories Dropdown */
.categories-link {
    position: relative;
}

.categories-dropdown {
    display: none;
    position: absolute;
    top: 120%; /* Position below the toggle link on desktop */
    left: 0;
    background: linear-gradient(135deg, #ffffff, #f9f9f9); /* White gradient */
    border: 2px solid #ff4d4d; /* Red border */
    width: 280px;
    padding: 20px 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Show class for JavaScript toggle */
.categories-dropdown.show {
    display: block;
}

/* Style the links inside the dropdown */
.categories-dropdown a {
    display: block;
    padding: 12px 18px;
    color: #000000; /* Black text */
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #ffcccc; /* Light red divider */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border-radius: 10px;
}

/* Hover effect for dropdown links */
.categories-dropdown a:hover {
    background: linear-gradient(135deg, #ffcccc, #ffe6e6); /* Soft red gradient */
    color: #ffffff; /* White text on hover */
    transform: scale(1.02); /* Slight zoom effect */
}

/* Mobile styles with left-side animation */
@media screen and (max-width: 768px) {
    /* Navigation Bar Text Styling */
    .navbar-text {
        position: relative;
        z-index: 1002; /* Ensure it stays above the dropdown */
        font-size: 20px;
        font-weight: bold;
        color: #000000; /* Black text */
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        transition: opacity 0.3s ease;
    }

    /* Dropdown Box Styling */
    .categories-dropdown {
        position: fixed;
        top: 60px; /* Align below the navigation bar */
        left: -100%; /* Start off-screen */
        height: calc(100vh - 60px); /* Full viewport height minus navbar height */
        width: 100%; /* Full width */
        max-width: 320px; /* Limit width for smaller screens */
        margin: 0;
        padding: 20px 0; /* Add padding inside the dropdown */
        border-radius: 0; /* No rounded corners on mobile */
        background: linear-gradient(135deg, #ffffff, #f9f9f9); /* White gradient */
        box-shadow: 8px 0 12px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
        transition: left 0.3s ease; /* Smooth slide-in animation */
        overflow-y: auto; /* Enable scrolling if content overflows */
        z-index: 1001; /* Ensure it appears below the navbar text */
    }

    /* Show the dropdown from the left side on mobile */
    .categories-dropdown.show {
        left: 0; /* Slide into view */
    }

    /* Adjust link styles for mobile */
    .categories-dropdown a {
        padding: 18px 25px; /* Increased padding for better touch targets */
        font-size: 18px; /* Larger font size for readability */
        border-bottom: 1px solid #ffcccc; /* Light red divider */
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    /* Last link shouldn't have a border */
    .categories-dropdown a:last-child {
        border-bottom: none;
    }

    /* Close Button Styling */
    .categories-dropdown::before {
        content: "×"; /* Close icon */
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 30px;
        font-weight: bold;
        color: #ff4d4d; /* Red close button */
        cursor: pointer;
        z-index: 1002; /* Ensure it's above the dropdown content */
        transition: color 0.3s ease, transform 0.3s ease;
    }

    /* Hover effect for the close button */
    .categories-dropdown::before:hover {
        color: #ffffff; /* White on hover */
        transform: rotate(90deg); /* Rotate effect */
    }
}







































































/* Global Text Style below categories section */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

/* New Text Section */
.new-text-section {
    padding: 50px 20px;
    text-align: center;
    background: none; /* No background */
    margin: 30px auto;
    max-width: 800px;
}

/* Heading Style */
.new-text-section h2 {
    font-size: 30px; /* Adjusted font size */
    color: #459ab4; /* Fancy blue color */
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Dancing Script', cursive; /* Fancy, script font */
    animation: fadeInUp 2s ease-in-out;
    /* Allow text to wrap on smaller screens */
    white-space: normal; 
    word-wrap: break-word; /* Allows the heading to break into multiple lines */
}

/* Paragraph Style */
.new-text-section p {
    font-size: 25px;
    color: #c72f2f;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Lora', serif; /* Elegant serif font */
    animation: fadeInUp 2s ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .new-text-section h2 {
        font-size: 32px; /* Slightly smaller font for larger tablets */
    }

    .new-text-section p {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .new-text-section h2 {
        font-size: 28px; /* Medium tablet size */
    }

    .new-text-section p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .new-text-section h2 {
        font-size: 24px; /* Adjust font for smaller tablets and large phones */
    }

    .new-text-section p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .new-text-section h2 {
        font-size: 20px; /* Smaller font for mobile screens */
    }

    .new-text-section p {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .new-text-section h2 {
        font-size: 18px; /* Very small screens */
    }

    .new-text-section p {
        font-size: 14px;
    }
}




















































































/* Section Styling VIEW ALL PRODUCTS  */
.all-products-btn-section {
    text-align: center;
    margin-top: 0; /* Ensure no space above the button */
    padding: 0; /* Remove any padding */
}

/* Fancy Link Styling */
.all-products-link {
    font-size: 32px; /* Font size for desktop */
    font-weight: 700;
    color: #ff6347; /* Fancy color */
    text-decoration: none;
    position: relative;
    display: inline-block;
    cursor: pointer;
    animation: fadeInUp 1s ease-in-out; /* Fade-in effect */
    margin-top: 0; /* Ensure no space above the button */
}

/* Gradient Effect for Text */
.all-products-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6347, #459ab4, #ff6347);
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease-out;
}

/* Hover Effect */
.all-products-link:hover {
    color: #459ab4;
}

.all-products-link:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .all-products-link {
        font-size: 28px; /* Font size for tablets */
    }

    .all-products-btn-section {
        margin-top: 0; /* Ensure no space above the button on tablets */
    }
}

@media (max-width: 768px) {
    .all-products-link {
        font-size: 24px; /* Font size for mobile */
    }

    .all-products-btn-section {
        margin-top: 0; /* Ensure no space above the button on mobile */
    }
}

@media (max-width: 480px) {
    .all-products-link {
        font-size: 20px; /* Font size for very small screens */
    }

    .all-products-btn-section {
        margin-top: 0; /* Ensure no space above the button on very small screens */
    }
}






































































/* General Footer Styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

/* Footer Container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Added padding for better alignment */
}

/* Footer Section */
.footer-section {
    flex: 1 1 calc(25% - 30px); /* Adjusted width to add equal spacing */
    margin: 15px;
    min-width: 200px;
    text-align: left;
}

/* Footer Section Heading */
.footer-section h3 {
    font-size: 16px;
    color: #f39c12;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Footer Section List */
.footer-section ul {
    list-style-type: none;
    padding: 0;
}

/* Footer Section List Items */
.footer-section li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #bdc3c7;
}

/* Footer Links */
.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f39c12;
}

/* Logo and About Section */
.logo-about h2 {
    font-size: 20px;
    color: #f39c12;
    margin-bottom: 8px;
}

.logo-about p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.5;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.social-icon {
    font-size: 20px;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #f39c12;
    transform: scale(1.1);
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    color: #bdc3c7;
    border-top: 1px solid #34495e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0 10px; /* Adjusted padding for smaller screens */
    }

    .footer-section {
        flex: 1 1 100%;
        margin: 10px 0; /* Reduced margin for mobile */
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 15px 0;
    }

    .footer-section h3 {
        font-size: 14px;
    }

    .footer-section li {
        font-size: 12px;
    }

    .social-icon {
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 10px;
        padding: 5px 0;
    }
}

/* Prevent horizontal overflow on very small screens */
body {
    overflow-x: hidden;
}












































































/* WhatsApp Floating Button */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366, #128c7e); /* Gradient background for modern look */
    color: white;
    padding: 15px; /* Slightly larger padding for a more premium look */
    border-radius: 50%;
    font-size: 24px; /* Slightly larger icon for visibility */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Soft shadow with blur for a 3D effect */
    z-index: 1000; /* Ensures it's always on top */
    transition: all 0.3s ease-in-out; /* Smooth transitions for hover */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 2s ease-in-out infinite; /* Add floating animation */
}

.whatsapp-icon:hover {
    background: linear-gradient(135deg, #128c7e, #25d366); /* Reverse the gradient for hover effect */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); /* Enhanced shadow effect */
    transform: scale(1.15); /* Slightly enlarge the button on hover */
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Float upward */
    }
    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    /* Adjust button size on smaller screens (tablets and mobile) */
    .whatsapp-icon {
        padding: 12px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    /* Adjust button size further on very small screens (mobile) */
    .whatsapp-icon {
        padding: 10px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }
}







































































/* Contact Us Page Styling */
.contact-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.contact-section:hover {
    transform: scale(1.02);
}

.contact-section h1 {
    font-size: 36px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.contact-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out;
}

/* Contact Info */
.contact-info {
    text-align: left;
    font-size: 18px;
    margin-top: 20px;
    color: #444; /* Slightly lighter text color */
}

.contact-info h3 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-info p:hover {
    color: #00aaff;
}

.contact-info a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00aaff;
}

/* Contact Form */
.contact-form {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #00aaff;
    outline: none;
}

.contact-form button {
    background-color: #00aaff;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0077cc;
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
}

/* Fancy Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
        margin: 10px;
    }

    .contact-info {
        font-size: 16px;
        color: #444; 
    }

    .contact-form input, .contact-form textarea {
        padding: 10px;
    }

    .contact-form button {
        padding: 12px;
    }

    .whatsapp-icon {
        bottom: 15px;
        right: 15px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .contact-section h1 {
        font-size: 30px;
    }

    .contact-form {
        width: 90%;
    }

    .contact-info {
        font-size: 14px;
        color: #333; /* Darker color for small screens for better readability */
    }

    .contact-section p {
        font-size: 16px;
        color: #555; /* Adjusting for small screen readability */
    }
}











































/* General Body Styling */
body.search-page {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff; /* Clean white background */
    color: #333;
    padding: 0;
    margin: 0;
    animation: fadeIn 1.5s ease-out; /* Fade-in effect for the body */
}

/* Container Styling */
.search-container {
    text-align: center;
    padding: 50px 20px;
    max-width: 600px;
    margin: 50px auto;
    animation: slideUp 1.5s ease-out; /* Slide-up effect for container */
}

/* Headings and Paragraphs */
.search-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    transition: color 0.3s ease; /* Add smooth color transition */
    animation: fadeInText 1.5s ease-out; /* Fade-in effect for heading */
}

.search-container p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
    transition: color 0.3s ease; /* Add smooth color transition */
    animation: fadeInText 1.5s ease-out; /* Fade-in effect for paragraph */
}

/* Search Form Styling */
#search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#search-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #ffffff; /* White background for input */
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    animation: fadeInText 1.5s ease-out; /* Fade-in effect for input */
}

#search-input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.3);
}

/* Button Styling */
button {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #6c5ce7, #74b9ff);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: fadeInText 1.5s ease-out; /* Fade-in effect for button */
}

button:hover {
    background: linear-gradient(135deg, #0984e3, #81ecec);
    transform: scale(1.05); /* Slight scale effect on hover */
}

/* Search Results */
.search-results {
    margin-top: 30px;
}

.search-item {
    padding: 15px;
    color: #333;
    transition: color 0.3s ease; /* Add smooth color transition */
    animation: fadeInText 1.5s ease-out; /* Fade-in effect for search items */
}

.search-item:hover {
    color: #007bff; /* Change text color on hover */
    text-decoration: underline; /* Underline effect on hover */
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .search-container {
        padding: 30px 15px;
    }

    #search-input {
        max-width: 100%;
    }

    button {
        padding: 10px 20px;
    }
}






























































/* General Styling all products  */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Content Section */
.content-section {
    text-align: center;
    padding: 40px 20px;
}

h1 {
    font-size: 30px;
    color: #1d0814;
    font-weight: 600;
    margin-top: 40px;
}





























































/* Cart Section */
.cart-section {
    padding: 50px 20px;
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading Styling */
.cart-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: bold;
    animation: fadeInDown 1s ease-in-out;
}

/* Form Styling */
form {
    display: grid;
    gap: 15px;
    text-align: left;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Label Styling */
form label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Input Fields */
form input {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    transition: border-color 0.3s ease;
}

/* Focus Effect */
form input:focus {
    border-color: #6a11cb;
    outline: none;
}

/* Error Styling for Inputs */
form input.error {
    border-color: #e74c3c;
}

/* Submit Button */
.submit-order-btn {
    background-color: #6a11cb;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-order-btn:hover {
    background-color: #2575fc;
    transform: scale(1.05);
}

/* Notification or Success Message */
.notification {
    font-size: 16px;
    color: #27ae60;
    margin-top: 20px;
}

/* Empty Cart Message */
.cart-empty p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #7f8c8d;
    animation: fadeIn 1.5s ease-in-out;
}

/* Continue Shopping Button */
.continue-shopping-btn {
    display: inline-block;
    background-image: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-in-out;
}

.continue-shopping-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 20px rgba(101, 78, 163, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-section {
        padding: 30px 15px;
    }

    form {
        padding: 15px;
    }

    .submit-order-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .cart-section h1 {
        font-size: 24px;
    }

    form input, form label {
        font-size: 14px;
    }

    .submit-order-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}


























































































/* General Section Styling */
.all-products-btn-section {
    display: flex;
    justify-content: center; /* Center the button horizontally */
    align-items: center; /* Center the button vertically */
    padding: 0; /* Remove padding to eliminate white space */
    margin: 0; /* Remove margin to integrate seamlessly */
    background-color: transparent; /* No background color */
}

/* Button Styling */
.all-products-btn {
    display: inline-block;
    padding: 15px 35px; /* Slightly larger padding for better touch targets */
    font-size: 18px; /* Larger font size */
    font-weight: 700; /* Bold text */
    color: #fff; /* White text color */
    background: linear-gradient(135deg, #ff4d4d, #e62e2e); /* Red gradient background */
    text-decoration: none; /* Remove underline from the link */
    border: none; /* No border */
    border-radius: 50px; /* Fully rounded corners for a modern look */
    transition: all 0.3s ease; /* Smooth transitions for hover effects */
    text-align: center; /* Ensure text is centered inside the button */
    box-shadow: 0 4px 8px rgba(255, 77, 77, 0.3); /* Subtle red shadow */
}

/* Hover Effect */
.all-products-btn:hover {
    background: linear-gradient(135deg, #e62e2e, #ff4d4d); /* Reverse gradient on hover */
    transform: translateY(-4px); /* Slight upward movement */
    box-shadow: 0 6px 12px rgba(255, 77, 77, 0.4); /* Enhanced shadow on hover */
}

/* Active State (when clicked) */
.all-products-btn:active {
    transform: translateY(0); /* Reset position */
    box-shadow: 0 4px 8px rgba(255, 77, 77, 0.3); /* Reset shadow */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .all-products-btn {
        font-size: 16px; /* Smaller font size for smaller screens */
        padding: 12px 25px; /* Adjust padding */
    }
    .all-products-btn-section {
        padding: 0; /* Minimal vertical spacing for smaller screens */
        margin: 0; /* No space from above */
    }
}

@media (max-width: 480px) {
    .all-products-btn {
        font-size: 14px; /* Even smaller font size for very small screens */
        padding: 10px 20px; /* Further reduce padding */
    }
    .all-products-btn-section {
        padding: 0; /* Minimal vertical spacing for very small screens */
        margin: 0; /* No space from above */
    }
}




































































































/* Section Styling - Products in Home Page */
.product-gallery {
    padding: 30px 15px; /* Reduced padding for compactness */
    background: #ffffff; /* Clean white background */
    text-align: center;
    max-width: 1100px; /* Reduced max-width for compactness */
    margin: 0 auto; /* Center the gallery */
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(255, 77, 77, 0.1); /* Subtle red shadow */
}

/* Heading Styling */
.product-gallery h2 {
    font-family: 'Poppins', sans-serif; /* Modern font */
    font-size: 2rem; /* Reduced font size for compactness */
    color: #ff4d4d; /* Vibrant red heading */
    margin-bottom: 20px; /* Reduced spacing */
    font-weight: bold;
    letter-spacing: 1px; /* Reduced letter spacing */
    text-transform: uppercase;
    position: relative; /* For hover effects */
    transition: all 0.3s ease; /* Smooth transitions */
    animation: fadeIn 1.5s ease-in-out; /* Fade-in animation */
}

/* Hover Effect for Heading */
.product-gallery h2:hover {
    color: #e62e2e; /* Darker red on hover */
    text-shadow: 1px 1px 4px rgba(230, 46, 46, 0.3); /* Subtle shadow for depth */
}

/* Removed Underline Effect */
.product-gallery h2::after {
    display: none; /* Remove underline completely */
}

/* Animation for Heading */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Container Styling */
.product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 products per row for large screens */
    gap: 20px; /* Reduced gap for compactness */
    justify-items: center;
    padding: 0 10px; /* Reduced padding */
}

/* Product Card Styling */
.product-card {
    background-color: #fff;
    border-radius: 10px; /* Slightly smaller radius */
    box-shadow: 0 6px 12px rgba(255, 77, 77, 0.1); /* Subtle red shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
    padding: 15px; /* Reduced padding */
    max-width: 250px; /* Reduced size for compactness */
    margin: auto;
    border: 1px solid #ff4d4d; /* Red border around the cards */
    background: linear-gradient(135deg, #ffffff, #fff8f8); /* Subtle gradient */
}

.product-card img {
    width: 100%;
    height: 180px; /* Reduced image height for compactness */
    border-radius: 10px; /* Slightly smaller radius */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card h3 {
    font-size: 1rem; /* Reduced font size */
    color: #333333; /* Deep grey text for product name */
    margin-top: 10px; /* Reduced spacing */
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px; /* Reduced letter spacing */
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.product-card p {
    font-size: 0.9rem; /* Reduced font size */
    color: #ff4d4d; /* Red price for emphasis */
    margin-top: 8px; /* Reduced spacing */
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Hover Effect for Cards */
.product-card:hover {
    transform: translateY(-8px); /* Reduced upward movement */
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.2); /* Enhanced red shadow */
    background: linear-gradient(135deg, #fff8f8, #ffffff); /* Slight gradient change */
}

.product-card:hover img {
    transform: scale(1.03); /* Reduced zoom effect */
}

.product-card:hover h3,
.product-card:hover p {
    color: #e62e2e; /* Darker red for hover interaction */
    letter-spacing: 1px; /* Reduced letter spacing */
}

/* Responsive Design for Medium Screens (Tablets) */
@media screen and (max-width: 1024px) {
    .product-container {
        grid-template-columns: repeat(3, 1fr); /* 3 products per row for tablets */
    }
    .product-card {
        max-width: 220px; /* Smaller cards for tablets */
        padding: 12px; /* Further reduced padding */
    }
    .product-card img {
        height: 160px; /* Reduced image height for tablets */
    }
}

/* For Smaller Screens (Mobile Phones) */
@media screen and (max-width: 768px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr); /* 2 products per row for mobile */
        gap: 15px; /* Reduced gap between items */
    }
    .product-card {
        max-width: 160px; /* Much smaller cards for mobile */
        padding: 10px; /* Minimal padding */
    }
    .product-card img {
        height: 140px; /* Reduced image height for mobile */
    }
    .product-card h3 {
        font-size: 0.8rem; /* Even smaller font size for product name */
    }
    .product-card p {
        font-size: 0.7rem; /* Even smaller font size for price */
    }
    .product-gallery h2 {
        font-size: 1.8rem; /* Reduced heading size for mobile */
    }
}

/* For Very Small Screens */
@media screen and (max-width: 480px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr); /* Ensure 2 products per row */
        gap: 10px; /* Even smaller gap */
    }
    .product-card {
        max-width: 140px; /* Even smaller cards for very small screens */
        padding: 8px; /* Minimal padding */
    }
    .product-card img {
        height: 120px; /* Even smaller image height for very small screens */
    }
    .product-card h3 {
        font-size: 0.7rem; /* Even smaller font size for product name */
    }
    .product-card p {
        font-size: 0.6rem; /* Even smaller font size for price */
    }
    .product-gallery h2 {
        font-size: 1.6rem; /* Further reduced heading size for very small screens */
    }
}



























































/* Ensure styles are only applied within the product page */
#product-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* General body and font styles for the product page */
#product-page body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}
/* Product Title Section */
#product-page .product-title-section {
    text-align: center;
    margin: 120px 0 60px; /* Increased top margin to move below nav */
    padding: 0 20px;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}
#product-page .product-title-section h1 {
    font-size: 4.5rem; /* Increased from 4rem */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    color: #101010; /* Darker color */
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(255, 0, 0, 0.1);
    transition: all 0.4s ease;
}
/* Heading hover effects */
#product-page .product-title-section h1:hover {
    color: #ff2525; /* Brighter red */
    text-shadow: 3px 3px 8px rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
    letter-spacing: 5px;
}
/* Animated underline effect */
#product-page .product-title-section h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px; /* Thicker underline */
    background: linear-gradient(45deg, #ff0000, #ff4444);
    border-radius: 2px;
    transition: width 0.5s ease;
}
#product-page .product-title-section h1:hover::after {
    width: 110%; /* Slightly wider than text */
}
/* Product Layout */
#product-page .product-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Reduced from 35px to bring sections closer */
    padding: 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    animation: fadeIn 1s ease-out;
}
/* Product Gallery Section */
#product-page .product-gallery {
    flex: 1;
    max-width: 60%; /* Kept at original 60% */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: slideInLeft 0.8s ease-out;
}
#product-page .product-gallery:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
#product-page .main-image-container {
    width: 100%;
    height: 70vh; /* Kept at original 70vh */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    border: 1px solid #f0f0f0; /* Subtle border */
}
#product-page .main-image-container:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
}
#product-page #mainImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease-in-out;
}
#product-page #mainImage:hover {
    transform: scale(1.06);
}
#product-page .thumbnails-container {
    margin-top: 20px; /* Kept closer to original */
    display: flex;
    gap: 12px; /* Kept at original size */
    overflow-x: auto;
    padding: 5px 0; /* Kept at original */
    scrollbar-width: thin;
    scrollbar-color: #ff0000 #ffffff;
}
#product-page .thumbnails-container::-webkit-scrollbar {
    height: 8px;
}
#product-page .thumbnails-container::-webkit-scrollbar-thumb {
    background-color: #ff0000;
    border-radius: 4px;
}
#product-page .thumbnail {
    width: 90px; /* Kept at more reasonable size */
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0.7;
    border: 2px solid transparent;
}
#product-page .thumbnail:hover,
#product-page .thumbnail.active {
    transform: scale(1.15);
    opacity: 1;
    border-color: #ff0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}
/* Product Details Section */
#product-page .product-details-section {
    flex: 1;
    max-width: 35%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px; /* Kept at original */
    background-color: #ffffff; /* Changed from grey to white */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: slideInRight 0.8s ease-out;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07); /* Added subtle shadow */
}
#product-page .product-details-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
/* Description Section */
#product-page .description-section {
    margin-top: 40px; /* Kept closer to original */
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
#product-page .description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: linear-gradient(to bottom, #ff0000, #ff4444);
    transition: height 0.5s ease;
}
#product-page .description-section:hover::before {
    height: 100%;
}
#product-page .description-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #fcfcfc;
}
/* Product Description */
#product-page .product-description {
    font-size: 1.5rem; /* Increased from 1.35rem */
    color: #111; /* Much darker color */
    line-height: 1.8; /* Reduced from 2 to save space */
    margin-bottom: 25px;
    text-align: justify;
    letter-spacing: 0.6px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
    padding-left: 10px;
    font-weight: 400;
}
#product-page .product-description:hover {
    color: #000; /* Black on hover */
    transform: translateX(5px);
}
/* Features List */
#product-page .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reduced from 18px */
    padding-left: 10px;
}
/* Feature Item */
#product-page .feature-item {
    font-size: 1.25rem;
    color: #222; /* Darker color */
    position: relative;
    padding-left: 32px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-weight: 500;
}
#product-page .feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}
#product-page .feature-item:hover {
    color: #ff0000;
    transform: translateX(5px);
}
#product-page .feature-item:hover::before {
    transform: scale(1.3);
}
/* Quick Inquiry Button */
#product-page .quick-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #25d366, #107a6b); /* Enhanced WhatsApp green colors */
    color: white;
    border: none;
    padding: 25px 45px; /* Increased padding for prominence */
    font-size: 1.8rem; /* Increased font size */
    font-weight: 700;
    cursor: pointer;
    border-radius: 25px; /* Rounded corners */
    transition: all 0.4s ease;
    margin-top: 35px; /* Increased spacing */
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); /* Enhanced shadow */
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px; /* More spacing between letters */
    animation: pulse 1.5s infinite; /* Added pulsing animation */
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
#product-page .quick-inquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #107a6b, #25d366);
    transition: left 0.4s ease;
    z-index: -1;
}
#product-page .quick-inquiry-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 40px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: transform 0.4s ease;
    z-index: -1;
}
#product-page .quick-inquiry-btn:hover::before {
    left: 0;
}
#product-page .quick-inquiry-btn:hover::after {
    transform: translateX(500%) rotate(30deg);
}
#product-page .quick-inquiry-btn i {
    margin-left: 15px;
    font-size: 1.8rem; /* Increased icon size */
    transition: transform 0.3s ease;
}
#product-page .quick-inquiry-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    letter-spacing: 3px;
}
#product-page .quick-inquiry-btn:hover i {
    transform: scale(1.3);
    animation: bounce 1s infinite;
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes bounce {
    0%, 100% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.5);
    }
}
/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    #product-page .product-layout {
        padding: 20px 30px;
    }
    #product-page .product-title-section {
        margin: 100px 0 50px;
    }
    #product-page .product-title-section h1 {
        font-size: 3.5rem;
    }
}
@media screen and (max-width: 768px) {
    #product-page .product-layout {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }
    #product-page .product-gallery,
    #product-page .product-details-section {
        max-width: 100%;
        width: 100%;
    }
    #product-page .product-title-section {
        margin: 80px 0 40px;
    }
    #product-page .product-title-section h1 {
        font-size: 2rem;
    }
    #product-page .main-image-container {
        height: 50vh; /* Back to original */
    }
    #product-page .thumbnail {
        width: 70px; /* Back to original */
        height: 70px;
    }
    #product-page .product-description {
        font-size: 1.3rem; /* Increased slightly */
        line-height: 1.8;
    }
    #product-page .feature-item {
        font-size: 1.15rem;
    }
    #product-page .quick-inquiry-btn {
        font-size: 1.0rem;
        padding: 20px 35px;
    }
}