/* --- BASE & VARIABLES --- */
:root {
    --brand-color: #ff6b35;
    --brand-dark: #d44326;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --font-primary: 'Roboto', sans-serif;
    --font-brand: 'Secular One', sans-serif;
    --font-brand2: 'Montserrat', sans-serif;


}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--brand-color);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    background-color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: #adb5bd;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* --- NAVBAR --- */
.navbar {
    background-color: var(--bg-white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.brand-logo {
    height: 36px;
    width: auto;
}

.brand-name {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    margin-top: 0.23rem;
    color: var(--brand-color);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Perfect centering */
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--brand-color);
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
}

/* --- HERO SECTION --- */
.hero {
    background-color: var(--bg-light);
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-family: var(--font-brand);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-family: var(--font-brand2);
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .middle-subtitle {
    font-family: var(--font-brand2);
    font-size: 1.7rem; /* Slightly smaller */
    color: var(--text-secondary); /* Slightly darker/more prominent */
    max-width: 650px; /* Slightly wider maybe */
    margin: 0.75rem auto; /* Add some vertical space around them */
    margin-bottom: 2.5rem;
}


/* --- PRODUCTS SECTION --- */
.products-section {
    padding: 4rem 0;
    text-align: center;
}

.products-section h2 {
    font-family: var(--font-brand);
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}


.coming-soon {
     color: var(--text-secondary);
     font-style: italic;
     margin-top: 2rem;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--text-primary);
    color: #adb5bd;
    padding: 3rem 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 30px;
}

.footer-brand span {
    font-family: var(--font-brand);
    font-size: 1.25rem;
    color: var(--bg-white);
}

.footer-links {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap; /* Added for smaller screens */
    justify-content: center; /* Added for smaller screens */
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.copyright {
    font-size: 0.875rem;
}


.legal-content {
    max-width: 800px;
    margin: 4rem auto; /* Add space between header and content */
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}
.legal-content h1 {
    font-family: var(--font-brand);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}
.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}
 .legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.legal-content p, .legal-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}
 .legal-content ul, .legal-content ol {
     padding-left: 2rem; /* Indent lists */
     margin-bottom: 1rem;
 }
 .legal-content a {
     color: var(--brand-color);
     text-decoration: none;
 }
 .legal-content a:hover {
     text-decoration: underline;
 }
 .legal-content strong {
     color: var(--text-primary);
     font-weight: 600;
 }
 .legal-content .back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--brand-color);
    text-decoration: none;
    font-weight: 500;
}
 .legal-content .back-link:hover {
     text-decoration: underline;
 }

/* --- MOBILE NAVIGATION STYLES --- */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

.mobile-nav-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position below the navbar */
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    z-index: 99;
}

.mobile-nav-menu.open {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-menu a,
.mobile-nav-menu button {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.mobile-nav-menu a:hover {
    background-color: var(--bg-light);
}

/* Style for buttons inside mobile menu */
.mobile-nav-menu button {
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-primary);
}
.mobile-nav-menu button:hover {
    background-color: var(--bg-light);
}

/* Mobile login button */
.mobile-nav-menu a.btn-primary {
    text-align: center;
    color: white;
}
.mobile-nav-menu a.btn-primary:hover {
    background-color: var(--brand-dark);
}


/* --- About Us Section --- */
.about-us {
    background-color: var(--bg-light);
    padding: 5rem 0;
    margin-top: 4rem;
}
.about-us h2 {
    font-family: var(--font-brand);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.about-content {
    display: grid;
    /*grid-template-columns: 2fr 1fr;*/
    gap: 3rem;
    align-items: center;
    padding-left: 7rem;
    padding-right: 7rem;
}
.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.about-text p strong {
    color: var(--text-primary);
}
.about-image .photo-placeholder {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px dashed var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.about-image .photo-placeholder p {
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
    }
    .about-image {
        order: -1; /* Puts image on top on mobile */
        margin-bottom: 2rem;
    }
}


/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .mobile-menu-toggle { display: block; } /* Show hamburger */
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content .subtitle { font-size: 1.125rem; }
    .products-section h2 { font-size: 2rem; }
    .main-container h1 { margin-bottom: 1.5rem; }

}

@media (max-width: 480px) {
     .hero { padding: 4rem 0; }
     .hero-content h1 { font-size: 2rem; }
     .hero-content .subtitle { font-size: 1rem; }
     .btn-large { padding: 0.8rem 1.5rem; font-size: 1rem;}
     .product-card { padding: 1.5rem; }
     .footer-links { gap: 1rem; }
}

/* --- NEW PRODUCT DISPLAY SECTION --- */
.product-display {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 40% / 60% split */
    gap: 2.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left; /* Override .products-section center align */
    margin-top: 3rem;
    border-top: 1px solid #eee;
}

/* --- Left Column: Product Info --- */
.product-info {
    display: flex;
    flex-direction: column;
}

.product-info .product-icon {
    width: 60px;
    height: 60px;
    background-color: #fff5f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0; /* Reset auto-margin */
}

.product-info .product-icon svg {
    color: var(--brand-color);
}

.product-icon {
    width: 200px;  
    height: 200px; 
    border-radius: 50%; 
    overflow: hidden;   
    margin-bottom: 15px;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: left;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: left;
}

.product-info .availability-note {
    font-style: italic;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.product-info .btn {
    width: 100%;
    margin-top: auto; /* Pushes button to the bottom */
}

/* --- Right Column: Product Features --- */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-left: 1px solid var(--border-color);
    padding-left: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item svg {
    width: 28px;
    height: 28px;
    color: var(--brand-color);
    flex-shrink: 0;
    margin-top: 2px; /* Align with text better */
}

.feature-item-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    text-align: left;
}

.feature-item-text p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 0;
    text-align: left;
}

/* --- Responsive for mobile --- */
@media (max-width: 800px) {
    .product-display {
        grid-template-columns: 1fr;
        gap: 20px;
        border: none;
        box-shadow: none;
    }

    .product-info {
        /* Stack and center the main info block */
        display: flex;
        flex-direction: column;
        align-items: center; /* Horizontally centers the icon, text, and button */
        text-align: center;   /* Centers the text inside h3 and p */

        
        /* Original rules */
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .product-info h3,
    .product-info p {
        text-align: center;
    }

    .feature-item {
        /* Stack and center each feature item */
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px; /* Adjust gap for vertical stacking */
    }

    .feature-item svg {
        margin-top: 0;
        margin-bottom: 5px; /* Add space between icon and text */
    }


    .feature-item h3,
    .feature-item p {
        text-align: center;
    }


    .product-features {
        border-left: none;
        padding-left: 0;
    }

    .btn .btn-secondary {
       border-bottom: 1px solid var(--border-color);
    }

    .product-display{
        border-top: 1px solid #eee;
        border-radius: 0;
    }
}


/* This is the main centering container */
.main-container {
    max-width: 960px;
    margin: 40px auto;
}

/* Your main title */
.main-container h2 {
    font-family: var(--font-brand);
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}


#product-display,
#about-us {
    scroll-margin-top: 110px; 
    /* Adjust 100px to be the height of your navbar + a little space */
}


@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1; /* Puts image on top on mobile */
        margin-bottom: 2rem;
    }
    .about-text {
        text-align: center; /* Centers the text on mobile */
    }
}