@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7d9b76;
    --secondary-color: #d4a574;
    --accent-color: #e8c39e;
    --text-dark: #2c3e50;
    --text-light: #666;
    --bg-light: #fafaf8;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Spectral', Georgia, serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 1.5rem 0 1rem;
    background: linear-gradient(135deg, rgba(125, 155, 118, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
}

.logo-section {
    text-align: center;
}

.brand-name {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: none;
}

.brand-tagline {
    font-family: 'Spectral', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Horizontal Tab Navigation */
.nav-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-top: 1px solid rgba(125, 155, 118, 0.2);
    padding: 0;
}

.nav-tab {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 1.2rem 2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Spectral', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tab:hover {
    color: var(--primary-color);
    background: rgba(125, 155, 118, 0.05);
    border-bottom-color: var(--primary-color);
}

.nav-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(125, 155, 118, 0.08);
    font-weight: 600;
}

.cart-tab {
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 0;
    max-width: 200px;
}

.cart-tab:hover {
    background: var(--secondary-color) !important;
    border-bottom-color: transparent !important;
}

.cart-icon-minimal {
    font-size: 1.1rem;
    margin-right: 0.3rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.black-owned-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-subtext {
    font-size: 1.1rem !important;
    font-style: italic;
    margin-bottom: 2rem !important;
    opacity: 0.9 !important;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Products Section */
.products-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Tabs */
.tabs-container {
    width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Crimson Text', Georgia, serif;
}

.tab-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-radius: 10px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-button {
    background: none;
    border: none;
    cursor: pointer;
}

.nav-dropdown .dropdown-content {
    font-size: 0.9rem;
}

.nav-dropdown .dropdown-content a {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
}

.tab-button.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Membership Styles */
.membership-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.membership-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.membership-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.membership-tier {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.membership-tier:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.membership-tier.featured {
    border: 3px solid var(--secondary-color);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: var(--shadow);
}

.tier-header {
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.tier-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.tier-benefits {
    padding: 2rem;
}

.tier-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tier-benefits li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.membership-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.membership-button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.membership-note {
    text-align: center;
    padding: 2rem;
    background: rgba(125, 155, 118, 0.1);
    border-radius: 10px;
}

.membership-note p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* Bundles Section */
.bundles-content {
    padding: 2rem 0;
}

.bundles-title {
    text-align: center;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bundles-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bundle-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bundle-card.featured-bundle {
    border: 3px solid var(--secondary-color);
}

.bundle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 10;
}

.bundle-badge.popular {
    background: var(--secondary-color);
}

.bundle-header {
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--white);
}

.bundle-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bundle-header h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.bundle-details {
    padding: 2rem;
}

.bundle-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bundle-items {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bundle-items li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.bundle-items li:last-child {
    border-bottom: none;
}

.bundle-product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 1px dashed var(--primary-color);
}

.bundle-product-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    border-bottom-style: solid;
}

.bundle-pricing {
    text-align: center;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    background: rgba(125, 155, 118, 0.05);
    border-radius: 10px;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.bundle-price {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.savings {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
}

.bundles-note {
    text-align: center;
    padding: 2rem;
    background: rgba(125, 155, 118, 0.1);
    border-radius: 10px;
    margin-top: 2rem;
}

.bundles-note p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 1.5rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.product-icon {
    font-size: 4rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    min-height: 3rem;
}

.product-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 0.5rem;
}

.add-to-cart:hover {
    background: var(--secondary-color);
}

.view-details {
    display: block;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.view-details:hover {
    text-decoration: underline;
}

.view-details-button {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.view-details-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(125, 155, 118, 0.3);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-light);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.cart-items {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.cart-item-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.cart-item-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary-color);
}

.remove-item {
    background: #e74c3c;
    color: var(--white);
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.checkout-button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-button:hover {
    background: var(--primary-color);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Product Detail Page */
.product-detail {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.product-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-detail-image {
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image .product-icon {
    font-size: 8rem;
}

.product-detail-info h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-detail-info .product-price {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-detail-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ingredients-section,
.benefits-section {
    margin-top: 2rem;
}

.ingredients-section h3,
.benefits-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ingredients-section ul,
.benefits-section ul {
    list-style: none;
    padding-left: 0;
}

.ingredients-section li,
.benefits-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.ingredients-section li:before,
.benefits-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.usage-section {
    margin-top: 2rem;
}

.usage-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.usage-section p {
    margin-bottom: 1rem;
}

.back-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--text-light);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    margin-top: 2rem;
    transition: background 0.3s;
}

.back-button:hover {
    background: var(--text-dark);
}

/* FAQ Page */
.faq-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.faq-question {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Page */
.about-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.about-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 1.3rem;
}

.about-content {
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
}

.about-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2rem;
    }
}
