/* navbar */
/* Navbar */
/* Navbar styles */
.navbar-navbar {
    font-family: 'Arial', sans-serif;
    background-color: #FBF7F4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid #E3DFDE;
}
.navbar-logo {
    display: flex;
    align-items: center;
}
.navbar-logo img {
    height: 40px;
    margin-right: 10px;
}
.navbar-logo-text {
    font-size: 36px;
    color: #a1683a;
    font-family: 'Georgia', serif;
}
.navbar-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.navbar-nav-links a {
    text-decoration: none;
    color: #a1683a;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
}
.navbar-nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.navbar-nav-icons i {
    font-size: 18px;
    color: #a1683a;
    cursor: pointer;
    transition: color 0.3s;
}
.navbar-search-bar {
    display: none;
    position: absolute;
    top: 60px;
    right: 40px;
    background: #FBF7F4;
    border: 1px solid #E3DFDE;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar-search-bar input {
    border: 1px solid #E3DFDE;
    padding: 5px;
    width: 200px;
    background-color: #EED2CC;
}
.navbar-search-bar button {
    padding: 5px 10px;
    background: #a1683a;
    color: white;
    border: none;
    cursor: pointer;
}
/* Cart styles */
/* .cart {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    border-left: 1px solid #e0e0e0;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    display: none;
}
.cart.open {
    right: 0;
    display: block;
}
.cart .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart .title .close {
    cursor: pointer;
    font-size: 20px;
}
.cart .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.cart .item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}
.cart .item .details {
    flex-grow: 1;
    margin-left: 10px;
}
.cart .item .details .name {
    font-size: 14px;
    color: #333333;
}
.cart .item .details .price {
    font-size: 14px;
    color: #b0b0b0;
}
.cart .item .quantity {
    display: flex;
    align-items: center;
}
.cart .item .quantity button {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 5px;
    cursor: pointer;
}
.cart .item .quantity input {
    width: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    margin: 0 5px;
}
.cart .item .remove {
    cursor: pointer;
    color: #b0b0b0;
}
.cart .total {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
.cart .checkout {
    background-color: #333333;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
} */

/* product */


.product-container {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.product-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}
.product-filters {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
}
.product-filter-section {
    width: 100%;
    margin-bottom: 20px;
}
.product-filter-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.product-filter-group {
    margin-bottom: 15px;
}
.product-filter-group h4 {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.product-filter-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; /* Initially hide filter options */
}
.product-filter-group ul li {
    margin-bottom: 10px;
}
.product-filter-group ul li label {
    font-size: 14px;
    color: #333;
}
.product-results {
    flex: 1;
    width: 100%;
}
.product-items {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
.product-product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px 0;
    width: calc(25% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}
.product-product-card:hover {
    transform: scale(1.05);
}
.product-image-container {
    position: relative;
}
.product-product-card img {
    width: 100%;
    height: 250px;
}
.product-rating-info {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}
.product-button-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    text-align: center;
    display: none;
}
.product-product-card:hover .product-button-container {
    display: block;
}
.product-add-to-cart {
    padding: 10px 20px;
    background-color: #e74c3c;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.product-add-to-cart:hover {
    background-color: #c0392b;
}
.product-product-info {
    padding: 15px;
}
.product-product-info h3 {
    font-size: 18px; 
    margin: 0 0 10px;
}
.product-product-info .product-price {
    font-size: 16px;
    color: #e74c3c;
}
.product-product-info .product-original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}
.product-rating {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.product-rating .product-rating i {
    cursor: pointer;
    color: #f39c12;
}
.product-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.product-view-options {
    display: flex;
    align-items: center;
}
.product-view-options select {
    padding: 5px;
}
.product-reset-filters {
    margin-top: 10px;
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.product-reset-filters:hover {
    background-color: #2980b9;
}
@media (min-width: 768px) {
    .product-filters .product-filter-section {
        width: 250px;
        margin-right: 20px;
    }
}
@media (min-width: 992px) {
    .product-product-card {
        width: calc(25% - 20px);
    }
}
.product-filter-group ul {
    display: none; /* Initially hidden */
    transition: max-height 0.3s ease-out; /* Optional: for smooth transition */
}
.product-product-card {
    position: relative; /* Position relative to allow absolute positioning of the wishlist icon */
}
.product-image-container {
    position: relative; /* Position relative to allow absolute positioning of the wishlist icon */
}
.product-wishlist-icon {
    position: absolute;
    top: 10px; /* Adjust as needed */
    right: 10px; /* Adjust as needed */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border-radius: 50%; /* Circular background */
    padding: 5px; /* Padding around the icon */
    display: none; /* Initially hidden */
    cursor: pointer; /* Change cursor to pointer */
}
.product-image-container .product-wishlist-icon {
    display: block; /* Show the wishlist icon on hover */
}
.product-wishlist-icon i {
    color: #333; /* Color of the wishlist icon */
    font-size: 20px; /* Size of the icon */
}
.product-whatsapp-icon {
    position: absolute; /* Position it over the image */
    bottom: 10px; /* Adjust as needed */
    right: 10px; /* Adjust as needed */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border-radius: 50%; /* Circular background */
    padding: 5px; /* Padding around the icon */
    cursor: pointer; /* Change cursor to pointer */
    display: flex; /* Center the icon */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}
.product-whatsapp-icon i {
    color: #25D366; /* WhatsApp green color */
    font-size: 20px; /* Size of the icon */
}
.product-location {
    font-size: 14px; /* Font size for the location */
    color: #555; /* Color for the location text */
    position: absolute;
    bottom: 0px;
}

/* 
* footer */ 



.footersctn-footercontainer {
    background-color: #E3DFDE;
    color: #FBF7F4;
    padding: 20px 10px; /* Increased padding to increase height */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footersctn-footermain {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px; /* Increased margin */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.footersctn-footersection {
    flex: 1;
    min-width: 200px; /* Ensures sections are not too narrow */
    max-width: 300px; /* Set a max width to avoid overlap */
    margin: 10px; /* Increased margin */
    padding: 10px; /* Increased padding */
}

.footersctn-footersection h3 {
    margin-bottom: 10px; /* Space between heading and links */
    font-size: 20px; /* Adjusted font size for better readability */
    color: #6C9A8B; /* Consistent color for headings */
    border-bottom: 2px solid #6C9A8B; /* Underline for headings */
    padding-bottom: 5px; /* Space below heading */
}

.footersctn-footerleft, .footersctn-footerlinks {
    display: flex;
    flex-direction: column; /* Align links vertically */
}

.footersctn-footerlinks {
    font-size: 20px; /* Increased font size for Quick Links */
}

.footersctn-footerleft {
    font-size: 38px;
}

.footersctn-footerleft a, .footersctn-footerlinks a {
    text-decoration: none;
    color: #6C9A8B;
    margin: 3px 0; /* Reduced margin */
    font-size: 24px; /* Increased font size for Quick Links */
    transition: color 0.3s;
}

.footersctn-footerleft a:hover, .footersctn-footerlinks a:hover {
    color: #a1683a;
}

.footersctn-footerright {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footersctn-join-footerpack {
    font-size: 24px;
    color: #6C9A8B;
    margin-bottom: 5px; /* Reduced margin */
}

.footersctn-email-footerinput {
    display: flex;
    align-items: center;
    gap: 5px; /* Reduced gap */
    margin-bottom: 10px; /* Reduced margin */
}

.footersctn-email-footerinput input {
    padding: 5px; /* Reduced padding */
    border: none;
    border-bottom: 1px solid #6C9A8B;
    background-color: transparent;
    color: #6C9A8B;
    font-size: 16px;
    flex: 1; /* Allow input to take available space */
}

.footersctn-email-footerinput button {
    padding: 5px 10px; /* Reduced padding */
    border: 1px solid #6C9A8B;
    border-radius: 20px;
    background-color: #6C9A8B;
    color: #FBF7F4;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footersctn-email-footerinput button:hover {
    background-color: #a1683a; /* Darker button on hover */
}

.footersctn-footerlogo {
    width: 150px;
    margin: 5px 0; /* Reduced margin */
}

.footersctn-footerinfo {
    font-size: 16px; /* Increased font size for address */
    color: #6C9A8B;
    text-align: left;
}

.footersctn-footerinfo a {
    color: #6C9A8B;
    text-decoration: underline;
}

.footersctn-info-footersections {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    padding: 10px 0; /* Reduced padding */
    background-color: #6C9A8B;
    color: #FBF7F4;
    margin-bottom: 10px; /* Reduced margin */
    height: 50px; /* Increased height */
}

.footersctn-info-footersections .footersctn-footersection {
    display: flex;
    align-items: center;
    gap: 5px; /* Reduced gap */
    font-size: 16px;
}

.footersctn-info-footersections .footersctn-footersection i {
    font-size: 20px;
    color: #FBF7F4;
}

.footersctn-footerfooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px 0; /* Increased padding */
    color: #6C9A8B;
}

@media (max-width: 768px) {
    .footersctn-footermain {
        flex-direction: column;
        align-items: center;
    }

    .footersctn-info-footersections {
        flex-direction: column;
        align-items: center;
    }

    .footersctn-footerfooter {
        flex-direction: column;
        align-items: center;
    }
}