/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #EDEDED;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    min-height: 60px;
}
/* Logo */
.logo h1 {
    font-family: 'Playfair Display', serif;
    color: #A68A64;
    margin: 0;
    font-size: 2rem;
    text-decoration: none;
}
.logo a {
    text-decoration: none;
    color: #A68A64;
}
/* Hamburger Menu */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}
.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #A68A64;
    position: relative;
    transition: all 0.3s ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #A68A64;
    transition: all 0.3s ease;
}
.hamburger::before {
    top: -8px;
}
.hamburger::after {
    top: 8px;
}
.menu-toggle.active .hamburger {
    background-color: transparent;
}
.menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* Navigation */
nav {
    position: relative;
    z-index: 1000;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav li {
    margin-left: 20px;
    position: relative;
}
nav a {
    font-family: 'Lora', serif;
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
}
nav a:hover {
    color: #A68A64;
}
/* Submenu Styling */
.shop-menu .submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #EDEDED;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.shop-menu .submenu li {
    margin: 0;
}
.shop-menu .submenu a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #666666;
}
.shop-menu .submenu a:hover {
    color: #A68A64;
    background: #D3D3D3;
}
.submenu-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 12px !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    border-radius: 0 !important;
}
.submenu-icon.face-care {
    background-image: url('/images/facecare.jpg') !important;
}
.submenu-icon.body-care {
    background-image: url('/images/bodycare.jpg') !important;
}
.submenu-icon.hair-care {
    background-image: url('/images/haircare.jpg') !important;
}
.submenu-icon.sun-care {
    background-image: url('/images/suncare.jpg') !important;
}
.submenu-icon.shop-all {
    background-image: url('/images/shopall.jpg') !important;
}
/* Icon Wrapper */
.icon-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 900;
}
/* Cart and User Icon Styling */
.cart-icon {
    font-size: 1.4rem;
    color: #A68A64;
    cursor: pointer;
    background: #EDEDED;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    will-change: transform;
}
.cart-icon span {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #A68A64;
    color: #FFFFFF;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    text-align: center;
    font-size: 0.7rem;
    line-height: 16px;
    font-family: 'Lora', serif;
}
.cart-icon:hover {
    transform: scale(1.1);
}
.user-icon {
    font-size: 1.4rem;
    color: #A68A64;
    cursor: pointer;
    background: #EDEDED;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    will-change: transform;
}
.user-icon i {
    font-size: 1.4rem;
}
.user-icon img.profile-picture {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #A68A64;
}
.user-icon:hover {
    transform: scale(1.1);
}
.profile-picture-position {
    transform: none;
}
/* Toast Notification Styling */
.toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: #A68A64;
    color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Lora', serif;
    font-size: 1rem;
    z-index: 1100;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #D3D3D3;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}
.footer-links a {
    font-family: 'Lora', serif;
    color: #333333;
    margin: 0 10px;
    text-decoration: none;
}
.footer-links a:hover {
    color: #A68A64;
}
/* Home Page (index.html) - Commented out to avoid conflicts with inline CSS */
/*
body.home-page {
    background: url('images/Bosvita logo 8.png') no-repeat center center/cover;
    background-attachment: fixed;
}
*/
/* Hero Section - Commented out to avoid conflicts with inline CSS */
/*
.hero {
    position: relative;
    min-height: 60vh;
    background: transparent;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
*/
/* Hero Content Section - Commented out to avoid conflicts with inline CSS */
/*
.hero-content-section {
    text-align: center;
    padding: 1rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    margin-top: 0;
}
*/
/*
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}
*/
/*
.hero-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #4A3C31;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
*/
/*
.hero-buttons {
    margin-top: 0;
}
*/
/*
.btn-hero {
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(166, 138, 100, 0.9), rgba(139, 111, 71, 0.9));
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: inline-block;
}
*/
/*
.btn-hero:hover {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.95), rgba(166, 138, 100, 0.95));
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
*/
/* Fade-In Animation - Commented out to avoid conflicts with inline CSS */
/*
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}
*/
/*
.fade-in:nth-child(1) { animation-delay: 0.5s; }
.fade-in:nth-child(2) { animation-delay: 1s; }
*/
/*
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
*/
/* Benefits Section */
.benefits {
    text-align: center;
    padding: 4rem 2rem;
    background-color: rgba(249, 245, 240, 0.85);
    margin-top: 20vh;
}
.benefits h3 {
    font-family: 'Playfair Display', serif;
    color: #4A3C31;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.benefit-item {
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
}
.benefit-icon {
    font-size: 2.5rem;
    color: #A68A64;
    margin-bottom: 1rem;
}
.benefit-item h4 {
    font-family: 'Lora', serif;
    color: #333333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.benefit-item p {
    font-family: 'Lora', serif;
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}
/* Featured Products Section */
.featured-products {
    padding: 4rem 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
}
.featured-products h3 {
    font-family: 'Playfair Display', serif;
    color: #4A3C31;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.product {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.product:hover {
    transform: translateY(-5px);
}
.product-image {
    margin-bottom: 1rem;
}
.product-img {
    max-width: 180px;
    max-height: 180px;
    height: auto;
    border-radius: 5px;
}
.product h4 {
    font-family: 'Lora', serif;
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.product p {
    font-family: 'Lora', serif;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.price {
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}
/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: rgba(237, 231, 227, 0.85);
    text-align: center;
}
.testimonials h3 {
    font-family: 'Playfair Display', serif;
    color: #4A3C31;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-item {
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.testimonial-item:hover {
    transform: translateY(-5px);
}
.testimonial-item p {
    font-family: 'Lora', serif;
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}
.testimonial-item h4 {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #A68A64;
}
/* Shop Page (shop.html) */
.shop {
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.shop h2 {
    font-family: 'Playfair Display', serif;
    color: #A68A64;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.product {
    background-color: #EDEDED;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.product:hover {
    transform: translateY(-5px);
}
.product-image.placeholder {
    width: 100%;
    height: 150px;
    background-color: #E0E0E0;
    margin-bottom: 10px;
    border-radius: 5px;
}
.product h3 {
    font-family: 'Playfair Display', serif;
    color: #A68A64;
    margin: 10px 0;
}
.product p {
    font-family: 'Lora', serif;
    color: #666666;
    margin: 5px 0;
}
.price {
    font-weight: bold;
    color: #A68A64;
    margin: 10px 0;
}
/* Filter Section (Dropdown Menu) */
.filter-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
}
.filter-toggle {
    background-color: #A68A64;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.filter-toggle:hover {
    background-color: #8B6F47;
    transform: scale(1.05);
}
.filter-controls {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    padding: 0;
}
.filter-controls.show {
    max-height: 400px;
    overflow-y: auto;
    opacity: 1;
    padding: 15px;
}
.filter-controls .filter-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 5px;
}
.filter-controls .filter-group label {
    font-family: 'Lora', serif;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.filter-controls .filter-group select,
.filter-controls .filter-group input {
    padding: 8px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    width: 150px;
}
.filter-controls .filter-group input {
    width: 100px;
}
.filter-controls .filter-group button {
    background-color: #A68A64;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.filter-controls .filter-group button:hover {
    background-color: #8B6F47;
}
@media (min-width: 768px) {
    .filter-controls {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }
    .filter-controls .filter-group {
        align-items: center;
        margin-bottom: 10px;
    }
    .filter-controls .filter-group select,
    .filter-controls .filter-group input {
        width: 100%;
        max-width: 200px;
    }
    .filter-controls .filter-group input {
        width: 100px;
    }
}
/* FAQ Page (faq.html) */
.faq {
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #EDEDED;
}
.faq h2 {
    font-family: 'Playfair Display', serif;
    color: #A68A64;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.faq-container {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
details {
    margin-bottom: 15px;
    background-color: #EDEDED;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
details:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
summary {
    font-family: 'Playfair Display', serif;
    color: #A68A64;
    cursor: pointer;
    padding: 10px;
    font-size: 1.2em;
}
summary::-webkit-details-marker {
    display: none;
}
details[open] summary {
    margin-bottom: 10px;
}
details p {
    font-family: 'Lora', serif;
    color: #666666;
    padding: 0 10px 10px;
    line-height: 1.6;
}
/* Signup Page (signup.html) */
.signup {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #EDEDED;
}
/* Login Page (login.html) */
.login {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #EDEDED;
}
/* Account Page (account.html) */
.account {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #EDEDED;
}
.account-details {
    background-color: #EDEDED;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.account-details p {
    font-family: 'Lora', serif;
    color: #666666;
    margin: 10px 0;
    font-size: 1.1em;
}
.account-details strong {
    color: #A68A64;
}
/* Contact Page (contact.html) */
.contact {
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #EDEDED;
}
.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #EDEDED;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-info h3, .contact-form h3 {
    font-family: 'Playfair Display', serif;
    color: #A68A64;
    margin-bottom: 15px;
}
.contact-info p {
    font-family: 'Lora', serif;
    color: #666666;
    margin: 10px 0;
    display: flex;
    align-items: center;
}
.contact-info i {
    margin-right: 10px;
    color: #A68A64;
}
.contact-info a {
    color: #A68A64;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.social-links {
    margin-top: 15px;
}
.social-icon {
    font-size: 24px;
    color: #A68A64;
    margin: 0 10px;
    text-decoration: none;
}
.social-icon:hover {
    color: #8B6F47;
}
.contact-image {
    margin-top: 20px;
}
.contact-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Form Styles (Shared across signup, login, contact) */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}
.form-group label {
    font-family: 'Lora', serif;
    color: #333333;
    display: block;
    margin-bottom: 5px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-family: 'Lora', serif;
    box-sizing: border-box;
}
.form-group textarea {
    resize: vertical;
}
/* Intro Text (Shared across pages) */
.intro {
    font-family: 'Lora', serif;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 20px;
}
/* Links for Signup/Login (Shared) */
.signup-link, .login-link {
    font-family: 'Lora', serif;
    color: #666666;
    margin-top: 15px;
}
.signup-link a, .login-link a {
    color: #A68A64;
    text-decoration: none;
}
.signup-link a:hover, .login-link a:hover {
    text-decoration: underline;
}
/* Buttons (Shared) */
.btn {
    background-color: #A68A64;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Lora', serif;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}
.btn:hover {
    background-color: #8B6F47;
}
/* Navigation Back Arrow (Shared) */
.navigation-buttons {
    margin-bottom: 15px;
}
.back-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #A68A64;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.back-arrow:hover {
    color: #8B6F47;
    transform: translateX(-5px);
}
.back-arrow i {
    margin-right: 5px;
}
/* Product Page (product-tallow-balm.html) */
.product-page {
    padding: 40px 20px;
    background-color: #EDEDED;
    width: 100%;
    box-sizing: border-box;
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.product-images {
    flex: 1;
    min-width: 300px;
    width: 100%;
    box-sizing: border-box;
}
.main-image {
    width: 100%;
    overflow: hidden;
}
.main-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}
.image-scroller {
    display: flex;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}
.thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}
.thumbnails::-webkit-scrollbar {
    display: none;
}
.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    flex-shrink: 0;
}
.thumbnail.active {
    border: 2px solid #A68A64;
}
.scroll-arrow {
    background: none;
    border: none;
    font-size: 2rem;
    color: #A68A64;
    cursor: pointer;
    padding: 0 10px;
    flex-shrink: 0;
}
.scroll-arrow:hover {
    color: #8B6F47;
}
.product-details {
    flex: 1;
    min-width: 300px;
    width: 100%;
    box-sizing: border-box;
}
.product-details h2 {
    font-family: 'Playfair Display', serif;
    color: #A68A64;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.product-details .price {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #A68A64;
    margin-bottom: 15px;
}
.product-details .short-description {
    font-family: 'Lora', serif;
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.product-details .add-to-cart {
    margin-bottom: 20px;
}
.product-details details {
    margin-bottom: 15px;
    background-color: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product-details summary {
    font-size: 1.2rem;
}
/* Signup Section Styling */
.signup-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: #EDEDED;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 400px;
    transition: transform 0.3s ease;
}
.signup-section:hover {
    transform: translateY(-5px);
}
.signup-section .icon {
    font-size: 2.5rem;
    color: #A68A64;
    margin-bottom: 10px;
}
.signup-section p {
    font-family: 'Lora', serif;
    color: #666666;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}
.btn-signup {
    background-color: #A68A64;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.btn-signup:hover {
    background-color: #8B6F47;
    transform: scale(1.05);
}
/* Mobile Optimization */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 20px;
        position: relative;
        height: auto;
    }
    .logo h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        text-align: center;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        left: 10px;
        top: 20px;
        z-index: 1100;
    }
    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #EDEDED;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    nav.show {
        display: block !important;
    }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    nav li {
        margin: 10px 20px;
    }
    nav a {
        font-size: 1rem;
    }
    .shop-menu .shop-link {
        position: relative;
        padding-right: 20px;
        cursor: pointer;
    }
    .shop-menu .shop-link::after {
        content: '▼';
        position: absolute;
        right: 5px;
        font-size: 0.8rem;
        color: #A68A64;
        transition: transform 0.3s ease;
    }
    .shop-menu.active .shop-link::after {
        transform: rotate(180deg);
    }
    .shop-menu.active .submenu {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }
    .shop-menu .submenu {
        display: none;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        margin-top: 10px;
        box-shadow: none;
    }
    .shop-menu .submenu li {
        margin: 5px 0;
    }
    .shop-menu .submenu a {
        padding: 8px 30px;
        font-size: 0.9rem;
    }
    .submenu-icon {
        width: 100px !important;
        height: 100px !important;
        margin-right: 10px !important;
    }
    .icon-wrapper {
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 1000;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .user-icon {
        position: absolute;
        top: 5px;
        right: 45px;
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
        margin: 0;
        line-height: 40px;
        vertical-align: middle;
    }
    .cart-icon {
        position: absolute;
        top: 5px;
        right: 0;
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
        margin: 0;
        line-height: 40px;
        vertical-align: middle;
    }
    .user-icon img.profile-picture {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        vertical-align: middle;
    }
    .profile-picture-position {
        transform: none;
    }
    .toast {
        top: 70px;
        right: 15px;
        font-size: 0.9rem;
        padding: 10px 15px;
        max-width: 90%;
    }
    .benefits {
        padding: 2rem 1rem;
        margin-top: 15vh;
    }
    .benefits h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .benefits-container {
        gap: 1rem;
    }
    .benefit-item {
        min-width: 100%;
        padding: 1rem;
    }
    .benefit-icon {
        font-size: 2rem;
    }
    .benefit-item h4 {
        font-size: 1.2rem;
    }
    .benefit-item p {
        font-size: 0.9rem;
    }
    .featured-products {
        padding: 2rem 1rem;
    }
    .featured-products h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .product-grid {
        gap: 1rem;
        padding: 1rem;
    }
    .product {
        padding: 1rem;
    }
    .product-img {
        max-width: 150px;
        max-height: 150px;
    }
    .product h4 {
        font-size: 1.1rem;
    }
    .product p {
        font-size: 0.85rem;
    }
    .price {
        font-size: 0.9rem;
    }
    .testimonials {
        padding: 2rem 1rem;
    }
    .testimonials h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .testimonials-container {
        gap: 1rem;
    }
    .testimonial-item {
        padding: 1rem;
    }
    .testimonial-item p {
        font-size: 0.9rem;
    }
    .testimonial-item h4 {
        font-size: 0.9rem;
    }
    .btn-secondary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .shop {
        padding: 40px 20px;
    }
    .shop h2 {
        font-size: 2.5rem;
    }
    .product-grid {
        gap: 20px;
        padding: 20px;
    }
    .product {
        padding: 15px;
    }
    .product-image.placeholder {
        height: 150px;
    }
    .product h3 {
        font-size: 1.2rem;
    }
    .product p {
        font-size: 0.9rem;
    }
    .price {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .faq {
        padding: 40px 20px;
    }
    .faq h2 {
        font-size: 2.5rem;
    }
    .faq-container {
        max-width: 800px;
    }
    summary {
        font-size: 1.2em;
    }
    details p {
        font-size: 1rem;
    }
    .signup {
        padding: 40px 20px;
    }
    .signup h2 {
        font-size: 2.5rem;
    }
    .login {
        padding: 40px 20px;
    }
    .login h2 {
        font-size: 2.5rem;
    }
    .account {
        padding: 40px 20px;
    }
    .account h2 {
        font-size: 2.5rem;
    }
    .account-details p {
        font-size: 1.1em;
    }
    .contact {
        padding: 40px 20px;
    }
    .contact h2 {
        font-size: 2.5rem;
    }
    .contact-info, .contact-form {
        min-width: 300px;
    }
    .contact-info h3, .contact-form h3 {
        font-size: 1.5rem;
    }
    .contact-info p {
        font-size: 1rem;
    }
    .social-icon {
        font-size: 24px;
    }
    .footer {
        padding: 20px;
    }
    .footer-links a {
        margin: 0 10px;
        font-size: 0.8rem;
    }
    .product-page {
        padding: 40px 20px;
    }
    .product-container {
        gap: 40px;
    }
    .main-image img {
        max-height: 300px;
    }
    .thumbnails {
        max-width: calc(100% - 40px);
    }
    .thumbnail {
        width: 80px;
        height: 80px;
    }
    .scroll-arrow {
        font-size: 2rem;
    }
    .product-details h2 {
        font-size: 2.5rem;
    }
    .product-details .price {
        font-size: 1.5rem;
    }
    .product-details .short-description {
        font-size: 1.1rem;
    }
    .signup-section {
        max-width: 90%;
        padding: 15px;
        margin: 15px auto;
    }
    .signup-section .icon {
        font-size: 2rem;
    }
    .signup-section p {
        font-size: 0.95rem;
    }
    .btn-signup {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
}
/* Desktop-Specific Styles */
@media (min-width: 769px) {
    header {
        justify-content: space-between;
        position: relative;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 20px;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 300px;
        background: #EDEDED;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-radius: 8px;
    }
    nav.show {
        display: block !important;
    }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    nav li {
        margin: 10px 20px;
    }
    .shop-menu .shop-link {
        position: relative;
        padding-right: 20px;
        cursor: pointer;
    }
    .shop-menu .shop-link::after {
        content: '▼';
        position: absolute;
        right: 5px;
        font-size: 0.8rem;
        color: #A68A64;
        transition: transform 0.3s ease;
    }
    .shop-menu.active .shop-link::after {
        transform: rotate(180deg);
    }
    .shop-menu.active .submenu {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }
    .shop-menu .submenu {
        display: none;
        position: static;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        margin-top: 10px;
        box-shadow: none;
    }
    .shop-menu .submenu li {
        margin: 5px 0;
    }
    .shop-menu .submenu a {
        padding: 8px 30px;
    }
    .submenu-icon {
        width: 50px !important;
        height: 50px !important;
    }
    .icon-wrapper {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 900;
    }
    .user-icon {
        order: 1;
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
        margin: 0;
        position: static;
    }
    .cart-icon {
        order: 2;
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
        margin: 0;
        position: static;
    }
    .user-icon img.profile-picture {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
}
nav .earn-points {
    font-size: 0.85em;
    color: inherit;
    font-family: 'Lora', serif;
}