body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: urbanist;
    color: #000000;
    overflow-x:hidden;
}

.promotion-bar {
    background-color: rgb(236, 236, 177); 
    color: black; 
    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: 1000; /* 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;
    display: none;
}


/* 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%;
}

@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;
    }
} 

.policy-content {
    padding: 60px 40px;
    margin: 120px auto;
    max-width: 1000px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-family: 'Urbanist', sans-serif;
    color: #333;
    line-height: 1.8;
}

.policy-content h1 {
    font-size: 32px;
    color: rgb(26, 0, 0);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(0, 0, 0);
    padding-bottom: 10px;
}

.policy-content h2 {
    font-size: 24px;
    color: rgb(0, 0, 0);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid  rgb(0, 0, 0);
    padding-left: 15px;
}

.policy-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    list-style-type: disc;
    margin-left: 20px;
}

.policy-content a {
    color:  rgb(0, 0, 0);
    text-decoration: none;
    border-bottom: 1px dashed rgb(0, 0, 0);
    font-weight: 500;
}

.policy-content a:hover {
    color:  rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
}

.policy-content strong {
    color: #000;
    font-weight: 700;
}

.policy-content .return-address {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.policy-content .return-address h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color:  rgb(97, 20, 20);
    font-weight: 600;
}

.policy-content .return-address p {
    margin: 10px 0;
    color: #444;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
        margin: 100px 20px;
    }

    .policy-content h1 {
        font-size: 26px;
    }

    .policy-content h2 {
        font-size: 20px;
    }

    .policy-content p, 
    .policy-content li {
        font-size: 15px;
    }
}






.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;
}
.footer-section p{
    color: #363636cb;
    text-decoration: none;
    transition: color 0.3s;
    font-family: urbanist;
}
.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;
}

@media (max-width: 890px) {
    header {
        padding: 20px 3%;
        transition: .4s;
    }
    #menu-icon {
        display: block;
    }
}
  
@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;
    }
    #menu-icon {
        display: block;
    }
} 

.logo img {
    width: auto;
    height: 50px;
}

/* Adjust content to account for fixed header and promotion bar */
body {
    padding-top: 120px; /* Adjust based on header + promotion bar height */
}

.policy-content {
    margin-top: 20px;
}