/* ==========================================================================
   HS BAKES LLP - Stylesheet
   Warm, Appetizing, and Premium Design System
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Color Variables & Styling Tokens */
:root {
    /* Color Palette */
    --primary-color: #5D4037;       /* Rich Cocoa Brown */
    --primary-dark: #3E2723;        /* Dark Espresso */
    --primary-light: #8D6E63;       /* Warm Clay */
    --secondary-color: #E6A15C;     /* Golden Honey Accent */
    --secondary-dark: #C67C38;      /* Terracotta Accent */
    --secondary-light: #FFF3E0;     /* Cream Butter Accent */
    --background-color: #F3E8D4;    /* Warm Cream/Beige Tone */
    --card-background: #FFFFFF;     /* Pure White */
    --text-main: #3E2723;           /* Dark Brown Text */
    --text-muted: #795548;          /* Soft Clay Text */
    --text-light: #A1887F;          /* Muted Gray-Brown */
    --border-color: #EFEBE9;        /* Delicate Cream-Gray Border */
    --fresh-badge-bg: #E8F5E9;      /* Organic Mint Green */
    --fresh-badge-text: #2E7D32;    /* Dark Mint Text */
    --alert-error-bg: #FFEBEE;
    --alert-error-text: #C62828;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadow & Radius */
    --shadow-sm: 0 2px 4px rgba(93, 64, 55, 0.05);
    --shadow-md: 0 8px 16px rgba(93, 64, 55, 0.08);
    --shadow-lg: 0 16px 32px rgba(93, 64, 55, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transition */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

body {
    background-color: var(--background-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
}

/* Global Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    background-color: rgba(243, 232, 212, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

header.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: var(--background-color);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.logo-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header Utilities */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Toggle Switch */
.lang-toggle {
    background-color: var(--secondary-light);
    border: 1px solid var(--secondary-color);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.lang-toggle:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* CTA Button */
.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Main Section Offset */
main {
    margin-top: var(--header-height);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #FDF7EC 0%, #F3E8D4 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-tag {
    display: inline-block;
    background-color: var(--secondary-light);
    color: var(--secondary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--secondary-dark);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background-color: rgba(93, 64, 55, 0.05);
    transform: translateY(-2px);
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
}

.hero-image-container:hover img {
    transform: scale(1.03);
}

/* Feature Sections / Generic Sections Styling */
.section {
    padding: 100px 0;
}

.section-alt {
    background-color: #EADDC9;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-tag {
    color: var(--secondary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.highlight-card {
    background-color: var(--card-background);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
}

.highlight-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.highlight-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Video Gallery Grid */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.video-card {
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    background-color: #000;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-body {
    padding: 24px;
    text-align: center;
}

.video-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.video-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Manufactured Carousel (Made Fresh by Us) */
.fresh-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.fresh-card {
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    transition: var(--transition-normal);
}

.fresh-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fresh-card-img {
    width: 45%;
    min-height: 240px;
    position: relative;
}

.fresh-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.fresh-card-body {
    width: 55%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fresh-badge {
    background-color: var(--fresh-badge-bg);
    color: var(--fresh-badge-text);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    align-self: flex-start;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.fresh-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.fresh-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.fresh-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* Menu Page / Product Cards */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.tab-btn {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-img {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f7ede2;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.product-price {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-dark);
}

/* Custom Cake Form (Wizards) & Contact Forms */
.form-card {
    background-color: var(--card-background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
}

.form-header {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 40px;
    text-align: center;
}

.form-header h2 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 2rem;
}

.form-header p {
    color: var(--secondary-light);
    font-size: 0.95rem;
}

.form-body {
    padding: 48px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn var(--transition-normal);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.progress-step {
    width: 32px;
    height: 32px;
    background-color: var(--background-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
    transition: var(--transition-normal);
}

.progress-step.active {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: #fff;
}

.progress-step.completed {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--background-color);
    color: var(--text-main);
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 161, 92, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.form-navigation .btn-secondary {
    padding: 10px 24px;
    cursor: pointer;
}

.form-navigation .btn-primary {
    padding: 10px 24px;
}

/* Success Message Container */
.submission-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: var(--fresh-badge-text);
    margin-bottom: 24px;
}

.whatsapp-alert-btn {
    background-color: #25D366;
    color: white;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.whatsapp-alert-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-features {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feat-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    line-height: 1;
}

.about-feat-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.about-feat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact & Map Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}

.contact-info-card {
    background-color: var(--card-background);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 24px;
    text-align: center;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-content p, .info-content a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 380px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Gallery Lightbox */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 240px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(93, 64, 55, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 39, 35, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-align: center;
    width: 100%;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-wa {
    background-color: transparent;
    padding: 0;
    overflow: hidden;
}

.float-call {
    background-color: transparent;
    padding: 0;
    overflow: hidden;
}

/* Admin Styling */
.admin-login-container {
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.admin-dashboard {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - var(--header-height));
}

.admin-sidebar {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-nav-btn {
    background: none;
    border: none;
    color: var(--text-light);
    text-align: left;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.admin-nav-btn:hover, .admin-nav-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

.admin-content-area {
    padding: 48px;
    background-color: var(--background-color);
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    background-color: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-table th, .admin-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.admin-table tr:hover {
    background-color: var(--background-color);
}

.badge-manuf {
    background-color: var(--secondary-light);
    color: var(--secondary-dark);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-btn-group {
    display: flex;
    gap: 8px;
}

.btn-danger {
    background-color: var(--alert-error-bg);
    color: var(--alert-error-text);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-danger:hover {
    background-color: var(--alert-error-text);
    color: #fff;
}

/* Footer Section */
footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 64px 0 24px 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 24px;
    font-family: Georgia, 'Times New Roman', serif;
}

.footer-col h3 span {
    color: var(--secondary-color);
}

.footer-col p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--primary-color);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fresh-carousel {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        gap: 32px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .fresh-card {
        flex-direction: column;
    }
    
    .fresh-card-img {
        width: 100%;
        height: 200px;
    }
    
    .fresh-card-body {
        width: 100%;
    }
    
    .form-body {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .admin-dashboard {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding: 16px;
    }
}

/* ==========================================================================
   Team / Leadership Styles
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-photo-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px auto;
    border: 4px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.team-card:hover .team-photo-container {
    border-color: var(--secondary-color);
    transform: scale(1.03);
}

.team-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.team-role {
    font-size: 0.9rem;
    color: var(--secondary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==========================================================================
   Shopping Cart & E-commerce System
   ========================================================================== */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.cart-controls {
    display: flex;
    align-items: center;
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-add-to-cart:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--secondary-light);
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    padding: 4px 10px;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background-color: rgba(93, 64, 55, 0.1);
}

.qty-val {
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 16px;
    text-align: center;
    color: var(--primary-dark);
}

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Opposite side of WhatsApp/Call floating buttons */
    background-color: var(--primary-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition-normal);
    border: 2px solid var(--secondary-color);
    transform: scale(0);
}

.floating-cart.visible {
    transform: scale(1);
}

.floating-cart:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--primary-dark);
}

.cart-icon-wrapper {
    position: relative;
    font-size: 1.6rem;
}

.cart-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

/* Slide-out Cart Sidebar */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 39, 35, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.cart-sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: var(--background-color);
    box-shadow: var(--shadow-lg);
    z-index: 1002;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
    font-size: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--card-background);
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.cart-item-price {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.cart-item-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2px 6px;
}

.cart-item-qty-btn {
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-qty-val {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 14px;
    text-align: center;
}

.cart-footer {
    background-color: var(--card-background);
    border-top: 1px solid var(--border-color);
    padding: 24px;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.cart-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-checkout-form input, .cart-checkout-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background-color: var(--background-color);
    color: var(--text-main);
}

.cart-checkout-form input:focus, .cart-checkout-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-checkout {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    margin-top: 8px;
}

.btn-checkout:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}
