/* Reset and general styles */
body {
    font-family: Urbanist, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff86;
}

/* Promotion bar at the top */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire container */
    border-radius: 50%;
}

.promotion-bar {
    background-color: rgb(236, 236, 177); 
    color: hsl(0, 0%, 0%); /* White text color */
    padding: 15px 20px; /* Adjust padding for top and bottom */
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001; /* Ensure it's above other elements */
    position: fixed; /* Fixed position */
    height: 20px; /* Adjust height as needed */
    box-sizing: border-box; /* Ensure padding and border are included in the height calculation */
}

.promo-text {
    font-weight: bold;
    text-align: center;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
    background-color: rgb(255, 255, 255);
    margin-top: 30px;
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

header li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
}

header img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header div {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header i {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

.logo img {
    max-width: 100px;
    height: auto;
}

.navmenu {
    display: flex;
}

.navmenu a {
    color: black;
    font-size: 18px;
    text-transform: capitalize;
    padding: 10px 20px;
    font-weight: 400;
    transition: all .42s ease;
}

.navmenu a:hover {
    color: rgb(87, 87, 87);
}

.nav-icon {
    display: flex;
    align-items: center;
}

.nav-icon i {
    margin-right: 20px;
    color: black;
    font-size: 25px;
    font-weight: 400;
    transition: all .42s ease;
}

.nav-icon i:hover {
    transform: scale(1.1);
    color: rgb(73, 73, 73);
}

#menu-icon {
    font-size: 35px;
    color: black;
    z-index: 10001;
    cursor: pointer;
}

@media (max-width: 890px) {
    header {
        padding: 20px 3%;
        transition: .4s;
    }
}

@media (max-width: 750px) {
    .navmenu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 200px;
        height: 100vh; /* This height might be excessive, consider adjusting */
        background: #ffffff; 
        display: flex; 
        flex-direction: column; 
        align-items: center;
        padding: 10px 10px;
        transition: all .42s;
    }

    .navmenu a {
        display: block;
        margin: 18px 0; 
    }

    .navmenu.open {
        right: 0;
    }
}

/* Main content container */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 100px; /* Adjust based on the height of your header and promo bar */
}

.cart-form {
    max-width: 100%;
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

/* Product image container styling */
.product-image-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 15px;
    border-radius: 4px;
    background-color: #f9f9f9;
}

/* Product image styling */
.product-image {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.item-details {
    flex: 1;
    padding: 0 10px;
}

/* Custom badge for custom designs */
.custom-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: #4a90e2;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 1;
}

.delete-btn{
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.delete-btn:hover {
    background-color: #ff1a1a;
}

.item-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}



.item-price {
    color: #666;
    font-size: 1.3rem;
}

.item-quantity {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.item-quantity label {
    margin-right: 1rem;
}

.item-quantity input {
    width: 3rem;
    padding: 0.5rem;
    font-size: 1rem;
}

.item-remove {
    flex-shrink: 0;
}

.cart__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.cart__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #000000;
    color: #fff;
}

.cart__actions .btn:hover {
    background-color: #eeeeee;
    color: #000;
}


/* CSS styles for cart and related sections */

.cart__group {
    display: flex;
    gap: 20px;
}

.cart__left {
    flex: 3;
}

.cart__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Adjust the gap as per your design */
}

.box {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

.section__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px; /* Adjust margin as needed */
    font-family: urbanist;
}

.cart__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.cart__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #000000;
    color: #fff;
}

.cart__actions .btn:hover {
    background-color: #eeeeee;
    color: #000;
}

.applybutton {
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #000000;
    color: #fff;
}

.applybutton:hover {
    background-color: #f1f1f1;
    color: #000;
   
}

.applybutton i {
    margin-right: 5px;
}


.cart__total-table {
    width: 100%;
    border-collapse: collapse;
}

.cart__total-title {
    font-size: 16px;
    color: #666;
}

.cart__total-price {
    font-size: 16px;
    color: #333;
}

.divider {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

/* Apply Coupon Section Styles */
.apply-coupon {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.section__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.form__group--horizontal {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form__input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

.btn.flex.btn--sm {
    margin-top: 10px;
}
.coupons-dropdown {
    position: absolute;
    top: calc(100% + 10px); /* Position right below the Apply Coupon box */
    left: 0;
    z-index: 1000;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px 4px 4px 4px;
    display: none;
    padding: 20px;
    width: calc(100% - 42px); /* Adjust width to match the Apply Coupon box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.coupons-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coupons-dropdown ul li {
    margin-bottom: 25px; /* Adjust margin between list items */
    font-family: urbanist;
}
.coupons-dropdown ul li strong {
    font-weight: bold;
    font-size: 22px; /* Adjust font size */
}

.coupons-dropdown ul li p {
    font-size: 16px; /* Font size for description text */
    color: #666; /* Text color */
    margin-top: 5px; /* Adjust top margin */
}

.coupons-dropdown ul li button.apply-coupon-btn {
    padding: 10px 30px;
    font-size: 14px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 5px; /* Margin between description and apply button */
    margin-bottom: 10px; /* Margin after the button and before the next coupon */
    display: block; /* Ensure button takes full width of the container */
}

.coupons-dropdown ul li button.apply-coupon-btn:hover {
    background-color: #0056b3;
}

.show-coupons {
    margin-top: 10px;
}

.show-coupons a {
    text-decoration: none;
    color: #007bff;
    cursor: pointer;
}

.show-coupons a:hover {
    text-decoration: underline;
}
.cart-totals {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 20px;
}

.section__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cart__total-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.cart__total-table td {
    padding: 10px;
}

.cart__total-title {
    font-size: 16px;
    color: #666;
    padding-right: 20px;
}

.cart__total-price {
    font-size: 16px;
    color: #333;
}

.cart__total-table tr:last-child td {
    border-top: 1px solid #ddd; /* Adding border only above the last row */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #000000;
    color: #fff;
}

.btn:hover {
    background-color: #eeeeee;
    color: #000;
}

.btn i {
    margin-right: 5px;
}
.footer {
    background-color:hsl(0, 0%, 97%);;
    color: #000000;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-section p, .footer-section ul, .footer-section form {
    margin: 10px 0;
    font-weight: 300;
    line-height: 1.6;
}

.quick-links, .collections-links {
    list-style: none;
    padding: 0;
}

.quick-links li, .collections-links li {
    margin: 5px 0;
}

.quick-links li a, .collections-links li a {
    color: #363636cb;
    text-decoration: none;
    transition: color 0.3s;
}

.quick-links li a:hover, .collections-links li a:hover {
    color: #1f1f1f;
}

.social-icons, .shop-icons {
    display: flex;
}

.social-icon, .shop-icon {
    margin-right: 15px;
}

.social-icon img, .shop-icon img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.social-icon img:hover, .shop-icon img:hover {
    transform: scale(1.2);
}

.quick-contact-form input, .quick-contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.quick-contact-form button {
    background-color: #444;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quick-contact-form button:hover {
    background-color: #555;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-weight: 300;
    border-top: 1px solid #444;
    margin-top: 20px;
}
/* Larger screens */
@media (max-width: 890px) {
    header {
        padding: 10px 3%;
        transition: .4s;
    }
}

/* Medium screens */
@media (max-width: 768px) {
    .container {
        max-width: 768px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .section--lg {
        padding: 30px 0; /* Increased padding */
    }
    
    
    
    
    /* CSS styles for cart and related sections */
    .cart {
        flex-direction: column;
        margin: 40px 10px; /* Increased margin */
    }
    
    .cart__group {
        flex-direction: column;
        margin: 20px 0; /* Increased margin */
    }
    
    .cart__right {
        width: 100%;
        margin-bottom: 30px; /* Increased margin */
    }
    
    .cart__actions {
        flex-direction: column;
        margin: 20px 0; /* Increased margin */
    }
    
    .cart__actions a {
        width: 100%;
        padding: 15px;
        font-size: 14px;
        margin-bottom: 15px; /* Increased margin */
    }
    
    .apply-coupon .form__group--horizontal {
        flex-direction: column;
    }
    
    .apply-coupon .form__input {
        width: 100%;
        padding: 15px; /* Increased padding */
        margin: 5px;
        font-size: 14px;
        margin-bottom: 15px; /* Increased margin */
    }
    
    .coupons-dropdown ul {
        padding-left: 0;
    }
    
    .coupons-dropdown li {
        display: block;
        margin-bottom: px; /* Increased margin */
    }
    
    .coupons-dropdown button {
        width: 100%;
        margin-top: 15px; /* Increased margin */
    }
}

/* Smaller screens */
@media (max-width: 480px) {
    .container {
        padding: 20px 5px; /* Adjusted padding */
    }

    .table th, .table td {
        padding: 20px; /* Adjusted padding */
        font-size: 12px; /* Adjusted font size */
    }
    
    .cart__actions a {
        padding: 30px; /* Adjusted padding */
        font-size: 12px; /* Adjusted font size */
    }
    
    .apply-coupon .form__input {
        padding: 8px; /* Adjusted padding */
        font-size: 5px; /* Adjusted font size */
    }
    
    
    
    .cart__group {
        margin: 20px 0; /* Added margin */
    }
    
    .cart__right {
        margin-bottom: 40px; /* Increased margin */
    }
    
    .cart__actions {
        margin: 20px 0; /* Added margin */
    }
    
    .cart__actions a {
        margin-bottom: 20px; /* Increased margin */
    }
    
    .apply-coupon .form__input {
        margin-bottom: 20px; /* Increased margin */
    }
    
    .coupons-dropdown li {
        margin-bottom: 20px; /* Increased margin */
    }

    .item-name{
        font-size: 0.7rem;
    }
}

.view-custom-button {
    background-color: #000000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.view-custom-button:hover {
    background-color: #333;
}

/* Applied coupon code styling */
.coupon-display {
    display: flex;
    align-items: center;
    gap: 5px;
}

.applied-coupon {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

/* Applied coupon inline style */
.applied-coupon-inline {
    font-size: 0.9em;
    color: #28a745;
    margin-left: 5px;
}

.remove-coupon {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.remove-coupon:hover {
    color: #f00;
    background-color: #f8f8f8;
}

.remove-coupon-inline {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 16px;
    padding: 0 0 0 5px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.remove-coupon-inline:hover {
    color: #c82333;
}

/* Force apply the box styling with higher specificity */
.cart__right .box {
    padding: 20px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

/* Ensure section titles are styled */
.cart__right .section__title {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #333 !important;
    font-family: 'Urbanist', sans-serif !important;
}

/* Force form styling */
.cart__right .form__group {
    margin-bottom: 15px !important;
}

.cart__right .form__group--horizontal {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 15px !important;
}

.cart__right .form__input {
    flex: 1 !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-family: 'Urbanist', sans-serif !important;
}

.cart__right .applybutton {
    padding: 12px 24px !important;
    font-size: 16px !important;
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-family: 'Urbanist', sans-serif !important;
}

.cart-icon-container {
    position: relative;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    line-height: 1;
}