*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* contact details nav  */

.contactdetails-nav {
    background-color: #a1683a; /* Using color #6C9A8B */
    color: white;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.contactdetails-nav div {
    margin: 5px 20px;
}
.contactdetails-nav .contactdetails-nav-call {
   margin-right: 800px;
}
.contactdetails-nav a {
    color: white;
    margin: 0 5px;
    text-decoration: none;
}
.contactdetails-nav a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .contactdetails-nav {
        flex-direction: column;
        text-align: center;
    }
    .contactdetails-nav div {
        margin: 10px 0;
    }
}

/* Navbar */
nav{
    position: fixed;
    width: 100%;
z-index: 11111111;
/* top: 0; */
/* margin-bottom: 100px; */
}
.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;
    /* position: fixed; */
/* overflow: visible; */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.navbar-logo {
    display: flex;
    align-items: center;
    /* border: 2px solid red; */
}
.navbar-logo img{
   width: 120px;
    
}
.logotextdiv{
    position: relative;
    right: 10%;
}
nav .navbar-logo-text{
    text-decoration: none;
}

.navbar-search-close{
    position: absolute;
    right: 10px;
}
.navbar-logo img {
    height: 40px;
    /* margin-right: 10px; */
}

.navbar-logo-text {
    font-size: 36px;
    color: #a1683a;
    font-family: 'Georgia', serif;
}

.navbar-logo-subtext {
    font-size: 12px;
    color: #a1683a;
    letter-spacing: 2px;
}

.navbar-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.navbar-nav-links a {
    text-decoration: none;
    color: #a1683a;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar-nav-links a:hover {
    color: #6C9A8B;
}

.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-nav-icons i:hover {
    color: #6C9A8B;
}

.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;
}

.navbar-search-bar button:hover {
    background: #6C9A8B;
}

.navbar-recent-searches {
    margin-top: 10px;
}

.navbar-recent-searches h4 {
    margin: 0;
    font-size: 14px;
    color: #a1683a;
}

.navbar-recent-searches ul {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.navbar-recent-searches ul li {
    font-size: 12px;
    color: #a1683a;
    cursor: pointer;
    transition: color 0.3s;
}

.navbar-recent-searches ul li:hover {
    color: #6C9A8B;
}

.navbar-dropdown {
    display: none; 
    position: absolute;
    top: 100%; /* Position below the SHOP link */
    /* right: 0; */
    left: 0;
    /* border: 2px solid red; */
    margin-left: -150px;
    /* right: 5em; */
    /* right: ; */
    background: #FBF7F4;
    border: 1px solid #E3DFDE;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000111111111;
    width: 58em; /* Increased width */
    padding: 20px; /* Added padding */
    /* box-sizing: border-box; Include padding in width calculation */
}

.navbar-hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* .navbar-shop:hover .navbar-dropdown {
    display: block; 
} */
.dropdownnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #f9f9f9;
}
.dropdownnav .columnav {
    flex: 1 1 20%;
    margin: 0 10px;
    min-width: 200px;
}
.dropdownnav .columnav:nth-child(even) {
    background-color: #f0f0f0;
}
.dropdownnav .columnav h3 {
    color: #6c9a8b;
    font-size: 18px;
    margin-bottom: 10px;
}
.dropdownnav .columnav ul {
    list-style: none;
    padding: 0;
}
.dropdownnav .columnav ul li {
    margin-bottom: 5px;
}
.dropdownnav .columnav ul li a {
    text-decoration: none;
    color:#000;
}
/*  */
.navbar-shop {
    position: relative; /* Ensure dropdown is positioned correctly */
}


.navbar-dropdown.active {
    display: block; /* Show dropdown when active */
}

.dropdown-icon.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}


.navbar-cart {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    padding: 20px;
    z-index: 1000;
}

.navbar-cart.navbar-open {
    display: block; /* Show cart when open */
}

.navbar-cart .navbar-close {
    cursor: pointer;
    font-size: 20px;
    color: #a1683a;
}

.navbar-cart .navbar-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.navbar-cart .navbar-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.navbar-cart .navbar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #E3DFDE;
    padding-bottom: 10px;
}

.navbar-cart .navbar-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.navbar-cart .navbar-quantity {
    display: flex;
    align-items: center;
}

.navbar-cart .navbar-quantity input {
    width: 30px;
    text-align: center;
}

.navbar-cart .navbar-total {
    font-weight: bold;
    margin-top: 10px;
}

.navbar-cart .navbar-checkout {
    background: #a1683a;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 100%;
}

.navbar-cart .navbar-checkout:hover {
    background: #6C9A8B;
}
/* Location Selector Styles */
.navbar-location-selector, .navbar-detect-location {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 20px; /* Space from other navbar items */
}

.navbar-location-selector i, .navbar-detect-location i {
    color: #e57373;
    margin-right: 10px;
}

.navbar-location-selector span {
    font-size: 16px;
    color: #757575;
    width: 150px; /* Fixed width */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Ellipsis for overflow text */
    white-space: nowrap; /* Prevent text wrapping */
}


.navbar-detect-location {
    flex-direction: column;
    align-items: flex-start;
    display: none;
}

.navbar-detect-location .navbar-main-text {
    font-size: 18px;
    color: #e57373;
}

.navbar-detect-location .navbar-sub-text {
    font-size: 14px;
    color: #9e9e9e;
    margin-left: 28px; /* Aligning with the main text */
}

.navbar-loading-icon {
    display: none;
    margin-left: 10px;
}
/*  */
.dropdown-icon {
    margin-left: 5px; /* Space between text and icon */
    font-size: 12px; /* Adjust size as needed */
    transition: transform 0.3s ease; /* Smooth rotation animation */
}

/* Show dropdown when active */
.navbar-dropdown.active {
    display: block;
}

/* Dropdown Icon Rotation */
.dropdown-icon.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/*  */


/* Dropdown Menu Styles */


/* Dropdown Icon Rotation on Hover */
.navbar-shop:hover .dropdown-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    /* Disable hover effects on mobile */
    .navbar-shop:hover .navbar-dropdown {
        display: none;
    }

    /* Show dropdown when active (clicked) */
    .navbar-shop.active .navbar-dropdown {
        display: block;
    }

    /* Rotate icon when active (clicked) */
    .navbar-shop.active .dropdown-icon {
        transform: rotate(180deg);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hide Desktop Navigation Links */
    .navbar-nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on navbar height */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }

    /* Show Hamburger Menu Icon */
    .navbar-hamburger {
        display: block;
    }

    /* Show Mobile Navigation Links When Active */
    .navbar-nav-links.active {
        display: flex;
    }
}
/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .navbar-dropdown {
        display: none; /* Hide dropdown by default */
        flex-direction: column;
        position: absolute;
        background-color: #fff;
        width: 100%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-shop.active .navbar-dropdown {
        display: flex; /* Show dropdown when active */
    }
}


/* footer */

.footer {
    background-color: #f3f4f6;
    color: #1f2937;
    padding:30px 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.footer .containerfoot {
    /* max-width: 1400px; */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer .columnf {
    width: 100%;
    max-width: 25%;
    /* gap: 10px; */
    padding: 10px;
    /* border: 2px solid; */
}
.footer .columnf img {
    margin-bottom: 20px;
}
.footer h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #10b981;
    padding-bottom: 10px;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    font-size: 1rem;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}
.footer ul li a:hover {
    color: #10b981;
}
.footer p {
    font-size: 1rem;
    margin-bottom: 20px;
}
.footer p a {
    color: #10b981;
    text-decoration: underline;
}
.footer .bottom-textf {
    text-align: center;
    margin-top: 5px;
}
.footer .bottom-textf p {
    font-size: 1rem;
}
/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 20px; /* Space between icons */
}

.social-icons a {
    font-size: 22px; /* Icon size */
    transition: color 0.3s ease; /* Smooth color transition */
}

/*  */

/* Hover Effects */
.social-icons a:hover {
    opacity: 0.8; /* Slightly fade on hover */
}
@media (max-width: 768px) {
    .footer .columnf {
        max-width: 100%;
    }
}
/* faq */
.faq-header {
    font-family: 'Arial', sans-serif;
    background-image: url('https://img.freepik.com/free-photo/flat-lay-wedding-invitations-envelopes-with-copy-space_23-2148243956.jpg?t=st=1733914008~exp=1733917608~hmac=51e9b695e41d49679a75c3be4c011f56d4e530663058aa25d5960fb267337c95&w=1800');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 70%;
    padding: 50px;
    text-align: left;
    color: white;
}

.faq-header h1 {
    font-size: 48px;
    margin: 0;
}

.faq-section {
    padding: 20px;
}

.faq-section h2 {
    font-size: 14px;
    color: #7D7D7D;
    margin-bottom: 20px;
}

.faq-item {
    border-top: 1px solid #E0E0E0;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.faq-answer {
    display: none; /* Ensure answers are hidden by default */
    padding-top: 10px;
    font-size: 16px;
    color: #555;
}

.faq-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item i {
    color: #333;
}

/* Footer Styles */
/* .footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
} */

.rewards {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #E0F7FA;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1 );
}

.rewards i {
    margin-right: 10px;
}

/* CONTACT US */
.contact-us {
    background-color: #FBF7F4;
    font-family: 'Roboto', sans-serif;
    /* margin: 0; */
    /* padding: 0; */
    /* margin-top: 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.contactus-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    
}
.contactus-container h1 {
    font-size: 36px;
    color: #a1683a;
    margin-bottom: 20px;
}
.contactus-container p {
    font-size: 16px;
    color: #6C9A8B;
    margin-bottom: 30px;
}
.contactus-container  p a {
    color: #6C9A8B;
    text-decoration: underline;
}
.contactus-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contactus-container input, .contactus-container select, .contactus-container textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #E3DFDE;
    border-radius: 5px;
    font-size: 16px;
    background-color: #EED2CC;
}
input[type="submit"] {
    background-color: #FBF7F4;
    border: 1px solid #6C9A8B;
    color: #6C9A8B;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}
input[type="submit"]:hover {
    background-color: #6C9A8B;
    color: #FBF7F4;
}


/* log in */
.login-container {
    background-color: #FBF7F4;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.login-container h1 {
    color: #a1683a;
    font-size: 2em;
    margin-bottom: 20px;
}
.login-container input[type="text"],
.login-container input[type="password"],
.login-container input[type="email"],
.login-container input[type="number"] {
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #E3DFDE;
    border-radius: 5px;
    font-size: 1em;
    background-color: #EED2CC;
}
.login-container a {
    color: #a1683a;
    text-decoration: none;
    font-size: 0.9em;
}
.login-container a:hover {
    text-decoration: underline;
}
.login-container .login-terms {
    font-size: 0.8em;
    color: #6C9A8B;
    margin: 20px 0;
    text-align: center;
}
.login-container .login-terms a {
    color: #a1683a;
}
.login-container button {
    background-color: #E3DFDE;
    color: #a1683a;
    border: 1px solid #a1683a;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}
.login-container button:hover {
    background-color: #a1683a;
    color: #E3DFDE;
}
.login-container .login-create-account {
    margin-top: 20px;
    font-size: 0.9em;
    text-align: center;
}
.login-container .login-create-account a {
    cursor: pointer;
}
.hidden {
    display: none;
}
.login-create-account-container {
    width: 400px;
    padding: 20px;
    background-color: #E3DFDE;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-welcome-message {
    font-size: 1.5em;
    color: #6C9A8B;
}

/* login page sdcond part  */

.login2-container {
    font-family: Arial, sans-serif;
    background-color: #FBF7F4;
    color: #6C9A8B;
    text-align: center;
    padding: 50px;
}
.login2-signup-form {
    margin: 20px 0;
}
.login2-signup-form input[type="email"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #6C9A8B;
    border-radius: 5px;
    margin-right: 10px;
    background-color: #E3DFDE;
    color: #6C9A8B;
}
.login2-signup-form input[type="submit"] {
    padding: 10px 20px;
    border: 1px solid #6C9A8B;
    border-radius: 5px;
    background-color: #a1683a;
    color: #FBF7F4;
    cursor: pointer;
}
.login2-signup-form input[type="submit"]:hover {
    background-color: #EED2CC;
}
.login2-terms {
    margin-top: 10px;
    font-size: 14px;
}
.login2-terms a {
    color: #a1683a;
    text-decoration: none;
}
.login2-social-icons {
    margin: 30px 0;
}
.login2-social-icons i {
    font-size: 24px;
    color: #a1683a;
    margin: 0 10px;
    cursor: pointer;
}
.login2-footer-links {
    margin: 20px 0;
}
.login2-footer-links a {
    color: #6C9A8B;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}
.login2-footer-bottom {
    margin-top: 20px;
    font-size: 12px;
}
.login2-footer-bottom a {
    color: #6C9A8B;
    text-decoration: none;
    margin: 0 10px;
}
.login2-footer-bottom a:hover {
    text-decoration: underline;
}


/* privacy policy */

 .privacy header {
    
    background-color: #6C9A8B;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
   
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}
.privacy h1 {
    margin: 0;
    font-size: 2.5em;
}
.policy main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
 .policy h2 {
    color: #a1683a;
    margin-top: 20px;
    border-bottom: 2px solid #a1683a;
    padding-bottom: 5px;
}
.policy ul {
    margin-left: 20px;
    list-style-type: disc;
}
.policy p {
    margin: 10px 0;
}


