/* Forever Living Custom CSS */

/* Color Variables */
:root {
    --forever-yellow: #FFD700;
    --forever-yellow-bright: #FFDD00;
    --forever-yellow-dark: #FFC107;
    --forever-yellow-light: #FFF9C4;
    --forever-orange: #FFA726;
    --forever-white: #ffffff;
    --forever-cream: #f8f9fa;
    --forever-gray: #6c757d;
    --forever-dark: #212529;
    --forever-black: #000000;
    --forever-text-dark: #1A1A1A;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--forever-dark);
    padding-top: 76px; /* Account for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

/* Custom Button Styles */
.btn-forever-yellow {
    background-color: var(--forever-yellow-bright);
    border-color: var(--forever-text-dark);
    color: var(--forever-text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--forever-text-dark);
}

.btn-forever-yellow:hover,
.btn-forever-yellow:focus {
    background-color: var(--forever-yellow-dark);
    border-color: var(--forever-text-dark);
    color: var(--forever-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.4);
}

.btn-outline-forever-yellow {
    color: var(--forever-yellow);
    border-color: var(--forever-yellow);
    font-weight: 600;
    transition: all 0.3s ease;
    border-width: 2px;
}

.btn-outline-forever-yellow:hover,
.btn-outline-forever-yellow:focus {
    background-color: var(--forever-yellow);
    border-color: var(--forever-yellow);
    color: var(--forever-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.4);
}

/* Utility Classes */
.text-forever-yellow {
    color: var(--forever-yellow) !important;
}

.bg-forever-yellow {
    background-color: var(--forever-yellow) !important;
}

.text-forever-gold {
    color: var(--forever-gold) !important;
}

/* Navigation Styles */
.navbar {
    background-color: var(--forever-white) !important;
    border-bottom: 3px solid var(--forever-yellow-bright);
    padding: 1rem 0;
    min-height: 76px;
}

.navbar .container-fluid {
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #000000 !important;
    font-weight: 700;
}

/* Hamburger Menu Button */
.hamburger-menu-btn {
    background: var(--forever-yellow-bright);
    border: 2px solid var(--forever-text-dark);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    color: var(--forever-text-dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hamburger-menu-btn:hover {
    background: var(--forever-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.4);
}

/* Brand Name Centered */
.navbar-brand.mx-auto {
    position: relative;
    flex-grow: 1;
    text-align: center;
    margin: 0 1rem;
}

/* Horizontal Navigation Tabs (Right Side) */
.horizontal-nav {
    display: flex !important;
    justify-content: flex-end;
}

.horizontal-nav .nav {
    border: none;
    gap: 0.5rem;
}

.horizontal-nav .nav-link {
    color: var(--forever-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    background: transparent;
}

.horizontal-nav .nav-link:hover {
    background: var(--forever-yellow-light);
    border-color: var(--forever-yellow);
    color: var(--forever-yellow-dark) !important;
}
    transform: translateY(-2px);
}

.horizontal-nav .nav-link.active {
    background: var(--forever-yellow-bright);
    color: var(--forever-text-dark) !important;
    border-color: var(--forever-text-dark);
    border-width: 2px;
    box-shadow: 0 4px 15px rgba(255, 221, 0, 0.4);
}

.horizontal-nav .nav-link i {
    font-size: 0.9rem;
}





/* Offcanvas Hamburger Menu Styles */
.offcanvas {
    background: linear-gradient(135deg, #fff9e6, var(--forever-yellow-light));
    border-right: 3px solid var(--forever-yellow-bright);
}

.offcanvas-header {
    background: var(--forever-yellow-bright);
    color: var(--forever-text-dark);
    border-bottom: 2px solid var(--forever-yellow-dark);
}

.offcanvas-title {
    font-weight: 700;
    color: var(--forever-text-dark);
}

.category-menu-list {
    padding: 1rem 0;
}

.category-menu-list li {
    margin-bottom: 0.5rem;
}

.category-menu-link {
    display: block;
    color: var(--forever-text-dark);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
}

.category-menu-link:hover {
    background: var(--forever-yellow-bright);
    color: var(--forever-text-dark);
    text-decoration: none;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(255, 221, 0, 0.3);
}

.category-menu-link i {
    color: var(--forever-yellow-dark);
    font-size: 1.1rem;
}

/* Main Content Full Width */
.main-content-full-width {
    padding: 2rem;
    background: var(--forever-white);
    min-height: calc(100vh - 76px);
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #FFD700 0%, #FFDD00 50%, #FFC107 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    margin-bottom: 2rem;
    border-radius: 15px;
    color: var(--forever-white);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.min-vh-60 {
    min-height: 60vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border: none;
    padding: 0;
}

.promo-banner {
    background: var(--forever-yellow-bright);
    border: 2px solid var(--forever-text-dark);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(255, 221, 0, 0.4);
    color: var(--forever-text-dark);
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.promo-icon {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-right: 0.75rem;
    animation: pulse 2s infinite;
}

.promo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forever-white);
}

.promo-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.hero-action-cards {
    margin-top: 3rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    color: var(--forever-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.bestseller-card {
    border-top: 4px solid #ffd700;
    overflow: hidden;
}



.bestseller-badge {
    position: absolute;
    top: -10px;
    background: #ffd700;
    color: var(--forever-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.bestseller-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 1rem;
}

.bestseller-title {
    color: var(--forever-yellow-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn-bestseller {
    background: linear-gradient(135deg, var(--forever-yellow), #ffd700);
    color: var(--forever-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-bestseller:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: var(--forever-dark);
}



.join-card {
    border-top: 4px solid var(--forever-yellow);
}

.join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 1rem;
}

.btn-join-heart {
    background: linear-gradient(135deg, var(--forever-yellow), #ffd700);
    border: 2px solid var(--forever-yellow-dark);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-join-heart:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.join-heart-icon {
    font-size: 2.5rem;
    color: var(--forever-dark);
    margin: 0;
}

.join-title {
    color: var(--forever-yellow-dark);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.join-icon {
    width: 80px;
    height: 80px;
    background: var(--forever-yellow-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.join-icon i {
    font-size: 2.5rem;
    color: var(--forever-text-dark);
}

.join-title {
    color: var(--forever-yellow-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-join {
    background: var(--forever-yellow-bright);
    color: var(--forever-text-dark);
    border: 2px solid var(--forever-text-dark);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-join:hover {
    background: var(--forever-yellow-dark);
    color: var(--forever-text-dark);
    border-color: var(--forever-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.4);
}

.card-action-text {
    font-size: 0.9rem;
    color: var(--forever-gray);
    margin: 0;
    font-weight: 500;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Featured Products Section */
.featured-products-section {
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.featured-title {
    color: var(--forever-dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-grid {
    max-width: 100%;
}

.product-placeholder {
    text-align: center;
    padding: 1.5rem;
    background: var(--forever-white);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #f0f0f0;
}

.product-placeholder:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-image-placeholder {
    width: 120px;
    height: 180px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottle Placeholders */
.bottle-placeholder {
    width: 80px;
    height: 160px;
    position: relative;
    border-radius: 5px 5px 15px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bottle-cap {
    width: 85px;
    height: 20px;
    position: absolute;
    top: -10px;
    left: -2.5px;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bottle-body {
    width: 100%;
    height: 140px;
    border-radius: 5px 5px 15px 15px;
}

.bottle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Bottle Colors */
.yellow-bottle .bottle-body {
    background: linear-gradient(145deg, #ffd700, #ffed4e);
}

.pink-bottle .bottle-body {
    background: linear-gradient(145deg, #ff69b4, #ff8fa3);
}

.orange-bottle .bottle-body {
    background: linear-gradient(145deg, #ff8c00, #ffa500);
}

.peach-bottle .bottle-body {
    background: linear-gradient(145deg, #ffcba4, #ffd4a3);
}

/* Can Placeholders */
.can-placeholder {
    width: 60px;
    height: 140px;
    position: relative;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.can-top {
    width: 65px;
    height: 15px;
    position: absolute;
    top: -5px;
    left: -2.5px;
    background: #silver;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.can-body {
    width: 100%;
    height: 135px;
    border-radius: 0;
}

.can-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.red-can .can-body {
    background: linear-gradient(145deg, #dc143c, #ff1744);
}

.product-name {
    color: var(--forever-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 1rem 0 0 0;
    line-height: 1.3;
}

/* Empty Placeholders */
.empty-placeholder {
    border: 2px dashed #ddd;
    background: #fafafa;
}

.empty-placeholder:hover {
    border-color: var(--forever-green);
    background: #f0f8f0;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.placeholder-icon {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-placeholder:hover .placeholder-icon {
    color: var(--forever-green);
}

.placeholder-text {
    color: #999;
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
}

.empty-placeholder:hover .placeholder-text {
    color: var(--forever-green);
}

/* Educational Carousel Section */
.educational-carousel-section {
    padding: 3rem 0;
    background: #f8f9fa;
    margin-bottom: 2rem;
    border-radius: 15px;
}

.carousel-slide {
    padding: 3rem 2rem;
    background: var(--forever-white);
    border-radius: 15px;
    margin: 0 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-content h3 {
    color: var(--forever-yellow-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.carousel-content p {
    color: var(--forever-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.carousel-image-placeholder {
    background: #fff9e6;
    border: 2px dashed var(--forever-yellow-dark);
    border-radius: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-image-placeholder:hover {
    background: var(--forever-yellow-light);
    border-color: var(--forever-yellow-dark);
}

.carousel-icon {
    font-size: 4rem;
    color: var(--forever-yellow-dark);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.placeholder-label {
    color: var(--forever-gray);
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    color: var(--forever-yellow-dark);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--forever-yellow-bright);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
}

.carousel-indicators button {
    background-color: var(--forever-yellow-bright);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--forever-white);
    margin-bottom: 2rem;
}

.about-title {
    color: var(--forever-yellow-dark);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.about-text {
    color: var(--forever-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--forever-dark);
}

.feature-point span {
    font-weight: 500;
}

.about-images {
    padding-left: 2rem;
}

.about-image-placeholder {
    background: #fff9e6;
    border: 2px dashed var(--forever-yellow-dark);
    border-radius: 10px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder:hover {
    background: var(--forever-yellow-light);
    border-color: var(--forever-yellow-dark);
    transform: scale(1.02);
}

.about-image-placeholder i {
    font-size: 2.5rem;
    color: var(--forever-yellow-dark);
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.about-image-placeholder .placeholder-text {
    color: var(--forever-gray);
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Single Professional Image Container */
.about-image-container.single-professional-image {
    border: 3px solid var(--forever-yellow-dark);
    border-radius: 15px;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fff9e6, var(--forever-yellow-light));
    box-shadow: 0 8px 25px rgba(255, 221, 0, 0.3);
    transition: all 0.3s ease;
}

.about-image-container.single-professional-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 221, 0, 0.4);
}

.professional-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

/* Wellness Guide Section Enhancements */
.wellness-guide-section {
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fdff, #fff9e6) !important;
    min-height: 500px !important;
    display: block !important;
    visibility: visible !important;
    border: 1px solid red !important;
    opacity: 1 !important;
}

.guide-image-placeholder {
    background: #fffdf0;
    border: 2px dashed var(--forever-yellow);
    border-radius: 15px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.guide-image-placeholder:hover {
    background: var(--forever-yellow-light);
    border-color: var(--forever-yellow-dark);
}

.guide-image-placeholder .placeholder-text {
    color: var(--forever-gray);
    font-weight: 500;
    margin: 1rem 0 0 0;
    font-size: 0.9rem;
}

.guide-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid var(--forever-yellow);
    border-radius: 0 8px 8px 0;
}

/* Educational Carousel Specific Styles */
.educational-slide {
    padding: 2rem;
    background: var(--forever-white);
    border-radius: 15px;
    margin: 0 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.educational-image-placeholder {
    background: #fff9e6;
    border: 2px dashed var(--forever-yellow-dark);
    border-radius: 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.educational-image-placeholder:hover {
    background: var(--forever-yellow-light);
    border-color: var(--forever-yellow-dark);
    transform: scale(1.02);
}

.educational-icon {
    font-size: 5rem;
    color: var(--forever-yellow-dark);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.educational-slide h4 {
    color: var(--forever-yellow-dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}






.guide-header {
    margin-bottom: 3rem;
}

.main-guide-image {
    height: 200px;
    margin: 0 auto 2rem auto;
    max-width: 300px;
}

.guide-main-title {
    font-size: 2.5rem;
    color: var(--forever-yellow-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.guide-subtitle {
    font-size: 1.2rem;
    color: var(--forever-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.guide-quote {
    background: linear-gradient(135deg, var(--forever-green-light) 0%, #f0f8f0 100%);
    border: none;
    border-radius: 15px;
    padding: 2rem;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--forever-dark);
    margin: 2rem auto;
    max-width: 600px;
    text-align: center !important;
    display: inline-block;
}

.wellness-categories {
    margin-top: 3rem;
}

.wellness-category-card {
    background: var(--forever-white);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wellness-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--forever-green);
}

.wellness-category-card.featured-category {
    background: linear-gradient(135deg, var(--forever-green-light) 0%, #f0f8f0 100%);
    border-color: var(--forever-green);
}

.wellness-category-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--forever-dark);
}

.wellness-table-placeholder {
    background: #f8f9fa;
    border: 2px dashed var(--forever-green);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wellness-table-placeholder .placeholder-text {
    font-weight: 600;
    color: var(--forever-green);
    margin-bottom: 0.5rem;
}

.wellness-table-placeholder small {
    color: var(--forever-gray);
    font-size: 0.9rem;
}

.final-quote {
    background: linear-gradient(135deg, var(--forever-green) 0%, var(--forever-green-dark) 100%);
    color: var(--forever-white);
    padding: 3rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 3rem;
}

.welcome-card {
    background: var(--forever-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--forever-green);
}

.welcome-title {
    color: var(--forever-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.welcome-text {
    color: var(--forever-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.welcome-icon {
    font-size: 4rem;
    color: var(--forever-green-light);
    opacity: 0.7;
}



.wellness-guide-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--forever-green-light);
}

.guide-title {
    color: var(--forever-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.guide-description {
    color: var(--forever-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.guide-features li {
    padding: 0.5rem 0;
    font-weight: 500;
}

.guide-icon {
    font-size: 4rem;
    color: var(--forever-green);
    opacity: 0.8;
}

/* Section Styles */
.section-title {
    color: var(--forever-green);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--forever-green);
    margin: 1rem auto;
}

.section-subtitle {
    color: var(--forever-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Products Section */
.products-section {
    padding: 3rem 0;
    background-color: var(--forever-cream);
    border-radius: 15px;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--forever-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--forever-green);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.2);
}

.product-icon {
    font-size: 3rem;
    color: var(--forever-green);
    margin-bottom: 1.5rem;
}

.product-card h5 {
    color: var(--forever-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--forever-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Opportunity Section */
.opportunity-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--forever-green) 0%, var(--forever-green-dark) 100%);
    color: var(--forever-white);
    border-radius: 15px;
    margin-bottom: 3rem;
}

.opportunity-section .section-title {
    color: var(--forever-white);
}

.opportunity-section .section-title::after {
    background-color: var(--forever-white);
}

.opportunity-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--forever-green-light);
    margin-bottom: 1rem;
}

.feature-item h6 {
    color: var(--forever-white);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--forever-dark) !important;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer h6 {
    color: var(--forever-green-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--forever-green-light) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar-fixed {
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        top: auto;
    }
    
    .main-content-area {
        margin-left: 0;
        padding: 1rem;
    }
    
    .sidebar-content {
        padding: 1rem;
    }
    
    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .category-list li {
        margin-bottom: 0;
        flex: 0 0 auto;
    }
    
    .sidebar-link {
        padding: 0.5rem 1rem;
        border: 1px solid #ddd;
        border-radius: 20px;
        font-size: 0.85rem;
        background: white;
    }
    
    .sidebar-link:hover,
    .sidebar-link.active {
        background: var(--forever-green);
        color: white;
        border-color: var(--forever-green);
    }
    
    .products-grid .row {
        margin-bottom: 1rem;
    }
    
    .product-placeholder {
        height: 250px;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .product-image-placeholder {
        width: 100px;
        height: 150px;
    }
    
    .bottle-placeholder {
        width: 60px;
        height: 120px;
    }
    
    .can-placeholder {
        width: 45px;
        height: 100px;
    }
    

    
    .hero-section {
        min-height: 50vh;
        padding: 3rem 0;
    }
    
    .carousel-slide {
        padding: 2rem 1rem;
        margin: 0;
    }
    
    .carousel-content h3 {
        font-size: 1.5rem;
    }
    
    .carousel-image-placeholder {
        height: 200px;
        margin-top: 2rem;
    }
    
    .carousel-icon {
        font-size: 3rem;
    }
    
    .about-images {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-image-placeholder {
        height: 120px;
    }
    
    .about-image-placeholder i {
        font-size: 2rem;
    }
    
    .guide-image-placeholder {
        height: 200px;
        margin-top: 2rem;
    }
    
    .educational-image-placeholder {
        height: 250px;
    }
    
    .educational-icon {
        font-size: 3.5rem;
    }
    
    .educational-slide h4 {
        font-size: 1.3rem;
    }
    
    .youtube-image-placeholder {
        height: 200px;
    }
    
    .youtube-icon {
        font-size: 3.5rem;
    }
    
    .guide-main-title {
        font-size: 2rem;
    }
    
    .guide-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .wellness-category-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .wellness-table-placeholder {
        padding: 1.5rem;
        min-height: 100px;
    }
    
    .final-quote {
        padding: 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .sidebar-content {
        padding: 0.75rem;
    }
    
    .sidebar-title {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .sidebar-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .main-content-area {
        padding: 0.75rem;
    }
    
    .featured-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .products-grid .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .product-placeholder {
        height: 220px;
        padding: 0.75rem;
    }
    
    .product-image-placeholder {
        width: 80px;
        height: 120px;
    }
    
    .bottle-placeholder {
        width: 50px;
        height: 100px;
    }
    
    .bottle-cap {
        width: 55px;
        height: 15px;
        left: -2.5px;
    }
    
    .bottle-body {
        height: 90px;
    }
    
    .can-placeholder {
        width: 35px;
        height: 80px;
    }
    
    .can-top {
        width: 40px;
        height: 12px;
        left: -2.5px;
    }
    
    .can-body {
        height: 75px;
    }
    
    .product-name {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .placeholder-icon {
        font-size: 2rem;
    }
    
    .placeholder-text {
        font-size: 0.8rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .col-md-6 {
        margin-bottom: 2rem;
    }
    
    .hero-section {
        min-height: 40vh;
        padding: 2rem 0;
    }
    
    .carousel-slide {
        padding: 1.5rem 1rem;
    }
    
    .carousel-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-image-placeholder {
        height: 150px;
    }
    
    .carousel-icon {
        font-size: 2.5rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-image-placeholder {
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .about-image-placeholder i {
        font-size: 1.5rem;
    }
    
    .about-image-placeholder .placeholder-text {
        font-size: 0.8rem;
    }
    
    .guide-image-placeholder {
        height: 150px;
    }
    
    .guide-disclaimer {
        padding: 0.75rem;
        margin-top: 1rem;
    }
    
    .educational-image-placeholder {
        height: 180px;
    }
    
    .educational-icon {
        font-size: 2.5rem;
    }
    
    .educational-slide {
        padding: 1.5rem 1rem;
    }
    
    .educational-slide h4 {
        font-size: 1.1rem;
    }
    
    .youtube-card {
        padding: 2rem 1rem;
    }
    
    .youtube-image-placeholder {
        height: 150px;
    }
    
    .youtube-icon {
        font-size: 2.5rem;
    }
    
    .main-guide-image {
        height: 150px;
    }
    
    .guide-main-title {
        font-size: 1.8rem;
    }
    
    .guide-subtitle {
        font-size: 1rem;
    }
    
    .guide-quote {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .wellness-category-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .wellness-category-card h4 {
        font-size: 1rem;
    }
    
    .wellness-table-placeholder {
        padding: 1rem;
        min-height: 80px;
    }
    
    .final-quote {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--forever-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--forever-green-dark);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .navbar,
    .sidebar,
    .footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .hero-section {
        background: none !important;
        color: var(--forever-dark) !important;
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff9e6, var(--forever-yellow-light));
    margin-bottom: 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(255, 221, 0, 0.2);
    border: 2px solid var(--forever-yellow-bright);
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: #fff9e6;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 221, 0, 0.3);
    background: var(--forever-yellow-light);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--forever-yellow-dark);
    margin-bottom: 1rem;
}

.contact-item h5 {
    color: var(--forever-yellow-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--forever-gray);
    margin: 0;
    line-height: 1.5;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Navigation responsive */
    .navbar {
        padding: 0.5rem 0;
        flex-wrap: wrap;
    }
    
    .hamburger-menu-btn {
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
    }
    
    .navbar-brand.mx-auto {
        position: static;
        transform: none;
        margin: 0 auto;
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .horizontal-nav {
        width: 100%;
        justify-content: center;
        order: 3;
    }
    
    .horizontal-nav .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }
    
    .horizontal-nav .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        margin: 0.1rem;
    }
    
    .horizontal-nav .nav-link i {
        font-size: 0.8rem;
    }
    
    /* Main content full width on mobile */
    .main-content-full-width {
        padding: 1rem;
    }
    
    /* Contact section mobile */
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-card {
        padding: 2rem 1rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    /* Hamburger menu mobile adjustments */
    .category-menu-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Adjust body padding for mobile */
    body {
        padding-top: 120px; /* Space for wrapped navigation */
    }
}

@media (max-width: 576px) {
    /* Extra small screens */
    .navbar-brand.mx-auto {
        font-size: 1rem;
    }
    
    .hamburger-menu-btn {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
    }
    
    .horizontal-nav .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    body {
        padding-top: 130px; /* Even more space for smaller screens */
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .contact-icon {
        font-size: 1.8rem;
    }
    
    .category-menu-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Product Image Styling */
.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 221, 0, 0.3);
}

/* Carousel Category Image Styling */
.carousel-category-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 221, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.carousel-description {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.educational-image-placeholder {
    text-align: center;
    padding: 2rem;
}

.educational-slide h4 {
    color: var(--forever-green);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1.5rem 0 0.5rem 0;
}

/* Wellness Guide Styling */
.wellness-guide-image {
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 221, 0, 0.2);
    margin: 0 auto 2rem auto;
    display: block;
}

.guide-main-title {
    font-size: 2.5rem;
    color: var(--forever-green);
    font-weight: bold;
    margin: 2rem 0 1rem 0;
}

.guide-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.guide-quote {
    background: linear-gradient(135deg, #eafaf1, #f8fff8);
    border-left: 6px solid var(--forever-green);
    padding: 2rem;
    font-style: italic;
    font-size: 1.2rem;
    margin: 2rem 0;
    border-radius: 8px;
    color: #2c3e50;
}

/* Wellness Tables */
.wellness-section-title {
    font-size: 1.8rem;
    color: var(--forever-green);
    font-weight: bold;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 3px solid var(--forever-yellow);
    padding-bottom: 0.5rem;
}

.wellness-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0 1rem 0;
    color: #856404;
}

.wellness-table {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.wellness-table caption {
    caption-side: top;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--forever-green);
    margin-bottom: 1rem;
    padding: 1rem 0;
}

.wellness-table thead th {
    background: linear-gradient(135deg, var(--forever-green), #2ecc71);
    color: white;
    font-weight: bold;
    padding: 1.2rem;
    border: none;
    text-align: left;
}

.wellness-table tbody td {
    padding: 1rem 1.2rem;
    border-bottom: 2px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    vertical-align: top;
}

.wellness-table tbody td:last-child {
    border-right: none;
}

.wellness-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.wellness-table tbody tr:hover {
    background: #e8f5e8;
    transition: background 0.3s ease;
}

.wellness-table thead th {
    background: linear-gradient(135deg, var(--forever-green), #2ecc71);
    color: white;
    font-weight: bold;
    padding: 1.2rem;
    border: none;
    border-right: 2px solid white;
    text-align: left;
}

.wellness-table thead th:last-child {
    border-right: none;
}

.wellness-disclaimer {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.final-quote {
    background: linear-gradient(135deg, #eafaf1, #f8fff8);
    border-left: 6px solid var(--forever-green);
    padding: 2rem;
    font-style: italic;
    font-size: 1.3rem;
    margin: 3rem 0;
    border-radius: 8px;
    color: #2c3e50;
    max-width: 800px;
    margin: 3rem auto;
}
/* Cache bust 1755366050 */
