* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color:white;
    margin-top: 120px; /* Add top margin to prevent content from hiding behind the fixed header */
}
.search-bar {
    position: relative;
    padding: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Logo Section */
.logo img {
    margin-right: 10px;
    width: 100%;
}

/* Header Section (Navbar) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    min-height: 80px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 100px;
    height: auto;
    margin-top: 20px;
    margin-left:20px;
}

.collection h3 {
    margin-top: 3px;
    height: 30px;
    font-size: 15px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #e0e0e0;
    border-radius: 20px;
    margin-top: 20px;
    margin-left:-50px;
}

.search-bar input {
    border: none;
    background: transparent;
    color: #333;
    padding: 5px;
    outline: none;
    width: 100%;
}

.search-bar button {
    border: none;
    background: transparent;
    color: #333;
    cursor: pointer;
}

.icons {
    display: flex;
    gap: 50px;
    color: #55AD9B;
    margin-top: 20px;
    margin-right:20px;
    font-size: 24px;
}

.icon {
    font-size: 28px;
    cursor: pointer;
}

/* Wishlist & Cart Icons */
a i.far.fa-heart, a i.fas.fa-shopping-cart {
    color: #55AD9B;
}

a i.far.fa-heart:hover, a i.fas.fa-shopping-cart:hover {
    color: #D7E7E0;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.navbar ul li a {
    color: #333;
    text-decoration: none;
    padding: 5px 15px;
    font-size: 16px;
}

.navbar ul li a:hover {
    background-color: #ddd;
    border-radius: 5px;
}

.banner {
    background-color: #fff;
    padding-top: 0px;
}

.banner img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.container {
    display: flex;
    padding: 20px;
    background-color: #fff;
}

.filters {
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;v
    margin-bottom: 15px;
}

#clearAll {
    background-color: #fff;
    color: #F56F09;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
}

.dropdown-heading {
    cursor: pointer;
    color: #F56F09;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content {
    display: none;
    margin-top: 10px;
}

.dropdown-content.show {
    display: block;
}

.arrow {
    color: #333;
    transition: transform 0.3s;
}

.arrow.rotate {
    transform: rotate(180deg);
}

.filter-group .dark-line {
    border: 0;
    border-top: 2px solid #555;
    margin-top: 10px;
}

.filters input[type="range"] {
    accent-color: #555555;
}

.collection {
    width: 80%; /* Adjust width as needed */
    padding: 20px;
    text-align: center;
    border: 0.5px solid lightslategrey;
    margin-left: 30px;
}

.parent-product {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.parent-product img {
    width: 100%;
    height: 450px;
   
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    margin-top: 20px; /* Add margin to separate from parent-product */
}

.product-card {
   
    padding: 15px;
    border: none;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: center;
    width: 210px;
    height: auto;
   
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;              /* slightly rounded like screenshot */
    border: none;       /* light grey border (same style) */
}

.product-card button {
    background-color: #e9f7f4;      
    color: #55AD9B;                 
    padding: 12px 25px;
    border: #55AD9B;
    border-radius: 10px;           
    cursor: pointer;
    width: 100%;                   
    font-size: 14px;
    letter-spacing: 2px;            
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);  
    transition: 0.3s ease;
    margin-top: 15px;
}



.product-card button:hover{
    background-color: #D7E7E0;
    transform: scale(1.05);
    color: #333;
}
.child{
    margin-top: 200px;
}

.review-section-container {
    background-color: #55AD9B; /* Light green background */
    padding: 20px;
}

.scrolling-gallery {
    overflow: hidden;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.scrolling-gallery h2 {
    margin-bottom: 20px;
}

.scrolling-images {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
}

.review-card {
    width: 250px;
    padding: 10px;
    height: 280px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

.review-card img {
    width: 80%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}




/* Footer Section */
footer {
    background-color: #F5F5F5; /* Footer background color matching the filter */
    color: #55AD9B;
    padding: 20px;
    text-align: center;
}

.footer-sections {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section a {
    color: #333;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.footer-section p {
    color: #333;
    margin: 5px 0;
}
.social-media a {
    color: #555; /* Default icon color */
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s, transform 0.3s;
}

.social-media a:hover {
    color: #55AD9B; /* Change to your preferred hover color */
    transform: scale(1.2); /* Slightly enlarges the icon on hover */
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.footer-section {
    flex: 1;
}

.map-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;

    border-radius: 8px;
}

.social-media {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.location-button {
    display: inline-block;
    padding: 10px 80px;
    border: 2px solid #55AD9B; /* Border color */
    border-radius: 8px;
    color: #55AD9B; /* Text color */
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.location-button:hover {
    background-color:#55AD9B; /* Background color on hover */
    color: #ffffff; /* Text color on hover */
}


.social-media a:hover {
    color: #a64d4d;
}
/* Pagination Container */
.pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
}

.pagination a.active {
    background-color: #007BFF;
    color: #fff;
    border-color: #007BFF;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination a.prev,
.pagination a.next {
    font-weight: bold;
}

/* My Account Dropdown */
.account-dropdown {
    position: relative;
    cursor: pointer;
}

.account-dropdown .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
}

.account-dropdown:hover .dropdown-content {
    display: block;
}

.account-dropdown a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    font-size: 16px;
}

.account-dropdown a:hover {
    background-color: #f0f0f0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.modal-content form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content button {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #0056b3;
}

.social-login {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.social-login a {
    display: block;
    width: 32%;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    color: white;
    font-size: 14px;
}

.social-login .facebook {
    background-color: #3b5998;
}

.social-login .google {
    background-color: #db4437;
}

.social-login .linkedin {
    background-color: #0077b5;
}

.extra-option {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.extra-option a {
    color: #007BFF;
    text-decoration: none;
}

.extra-option a:hover {
    text-decoration: underline;
}

.account-dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.account-dropdown span {
    cursor: pointer;
    font-size: 16px;
    color: #55AD9B;
}

.account-dropdown .dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    top: 25px; /* Adjust based on your layout */
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 10;
    min-width: 150px;
}

.account-dropdown .dropdown-content a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.account-dropdown .dropdown-content a:hover {
    background-color: #f3f3f3;
    color: #663399;
}

/* Show dropdown when active class is added */
.account-dropdown.active .dropdown-content {
    display: block;
}

/* Mobile Responsive */
/* Navbar styles */
.navbar {
    background-color: white;
    color: #333;
    display: center;
    justify-content: space-between; /* space-between for hamburger on left/right */
    align-items: center;
    padding: 10px 0;
    border-bottom: none;
    position: relative;
       
}

/* Hamburger Button (hidden on desktop, visible on mobile) */
.menu-toggle {
    display: none;
    font-size: 32px; /* Size bada kar diya */
    line-height: 40px; /* Height adjust ki */
    width:20px;
    cursor: pointer;
    background: white;
    border: none;
    margin-right: 340px;
    position: relative;
    top: -50px; /* Jitna upar le jaana ho, negative value badhayein */
}


/* Main UL inside the navbar */
.navbar .dropdown-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 15px;
    margin-right:180px;
}

/* Menu Items */
.navbar .dropdown-item {
    position: relative;
    margin: 0 15px;
}

.navbar .dropdown-item > button,
.navbar .dropdown-item > a {
    background: none;
    border: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 12px;
    text-align: center;
    text-decoration: none;
}

.navbar .dropdown-item > button:hover,
.navbar .dropdown-item > a:hover {
    color: #007bff;
}

/* Submenu dropdown */
.navbar .dropdown-content {
    position: absolute;
    top: 24px;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    z-index: 10;
    min-width: 150px;
}

.navbar .dropdown-content a {
    color: #333;
    text-decoration: none;
    padding: 8px 10px;
    display: block;
}

.navbar .dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #007bff;
}

/* Show submenu on hover (desktop) */
.navbar .dropdown-item:hover .dropdown-content {
    display: block;
}

/* Mobile Responsive */

/* New Arrivals Section */
.new-arrivals {
    padding: 20px;
    background-color: #fff;
}

.new-arrivals h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

/* Wrapper for scrolling */
.arrivals-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* The products container that will scroll */
.arrivals-product {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
}

/* Individual product card */
.arrivals-card {
    padding: 15px;
    border: none;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: center;
    width: 210px;
    height: auto;
   
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.arrivals-card:hover {
    transform: scale(1.05); /* Add a hover effect to highlight the card */
}

/* Image inside the product card */
.arrivals-card img {
    border: none;
    width: 150px; /* Increased width for larger images */
    height: 150px; /* Set a fixed height to match proportions */
    object-fit: cover; /* Ensure the image fills the defined dimensions */
    border-radius: 10px; /* Add rounded corners to images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow */
    margin-bottom: 10px; /* Add space below the image */
}

/* Product title styling */
.arrivals-card h3 {
    margin: 10px 0;
    font-size: 20px; /* Slightly larger font for better readability */
}

/* Button inside the product card */
.arrivals-card button {
    background-color: #e9f7f4;      
    color: #55AD9B;                 
    padding: 12px 25px;
    border: #55AD9B;
    border-radius: 10px;           
    cursor: pointer;
    width: 100%;                   
    font-size: 14px;
    letter-spacing: 2px;            
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);  
    transition: 0.3s ease;
    margin-top: 15px;
}

.arrivals-card button:hover {
    background-color: #D7E7E0; /* Slightly darker shade on hover */
}

/* Default arrow styling */
.arrows {
    font-size: 30px;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Left arrow positioning */
.arrows.left {
    left: 10px;
}

/* Right arrow positioning */
.arrows.right {
    right: 10px;
}

/* Hover effect */
.arrows:hover {
    background-color: #55AD9B; /* Change the background color */
    color: white; /* Change the arrow color */
    transform: translateY(-50%) scale(1.1); /* Slightly increase size */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add a stronger shadow */
}

/* Active (click) effect */
.arrows:active {
    transform: translateY(-50%) scale(0.95); /* Slightly shrink on click */
    background-color: #449b86; /* Darken background color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Reduce shadow on click */
}

/* Top Bar */
.top-bar {
    position: fixed; /* Fixes the bar to the top */
    top: 0; /* Aligns it to the very top */
    left: 0;
    width: 100%; /* Spans the entire width of the screen */
    background-color: lightseagreen; /* Light purple background */
    color: #ffffff; /* Text color */
    font-size: 14px; /* Font size */
    display: flex; /* Aligns content in rows */
    justify-content: space-between; /* Spreads out text */
    padding: 5px 20px; /* Adds padding around the content */
    z-index: 1000; /* Ensures it stays on top of other elements */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for better visibility */
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
}
/* Default styles for desktop and larger screens */
.image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.image-container .default-image {
    opacity: 1;
    z-index: 1;
}

.image-container .hover-image {
    opacity: 0;
    z-index: 2;
}

.image-container:hover .default-image {
    opacity: 0;
}

.image-container:hover .hover-image {
    opacity: 1;
}

.center {
    max-width: 768px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
}

.heading-small {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.heading-large {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem;
}

.heading-medium {
    font-size: 1.25rem;
    font-weight: bold;
    color: #4A5568;
    margin-bottom: 1rem;
}

.text-large {
    font-size: 1.25rem;
    color: #2D3748;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn {
    background-color: none;
    color: #55AD9B;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: #D7E7E0;
}


.hidden {
    display: none;
}

.additional-content {
    margin-top: 2rem;
    margin-left: 20px;
    text-align: left;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.col {
    flex: 1;
}

.content {
    flex: 2;
    max-width: 65%;
}

/* Image styles */
.image {
    display: block;
    max-width: 100%;
    margin-left: 300px;
    margin-bottom: 20px;
    height: auto;
    max-height: 300px;
    width: auto;
    border-radius: 0.5rem;
}

