/* ==========================================================================
   Roy Sabji Bhandar - Master Stylesheet
   Premium UI/UX Design System
   ========================================================================== */

@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');

/* --- Theme Variables --- */
:root {
    /* Colors - Light Theme */
    --primary: #2e7d32;
    --primary-light: #e8f5e9;
    --primary-dark: #1b5e20;
    --secondary: #f57c00;
    --secondary-light: #fff3e0;
    --secondary-dark: #e65100;
    --accent: #ffa000;
    
    --bg-main: #f9fcf8;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border: #e0e6dd;
    --border-glow: rgba(46, 125, 50, 0.15);
    
    --text-main: #2b3a2a;
    --text-muted: #5e6e5d;
    --text-light: #ffffff;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(46, 125, 50, 0.12);
    
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

[data-theme="dark"] {
    /* Colors - Dark Theme */
    --primary: #4caf50;
    --primary-light: #142813;
    --primary-dark: #2e7d32;
    --secondary: #ff9800;
    --secondary-light: #3e2723;
    --secondary-dark: #f57c00;
    --accent: #ffb74d;
    
    --bg-main: #0c120a;
    --bg-surface: #141f11;
    --bg-glass: rgba(20, 31, 17, 0.85);
    --border: #243521;
    --border-glow: rgba(76, 175, 80, 0.15);
    
    --text-main: #e8f5e9;
    --text-muted: #9bb098;
    --text-light: #0c120a;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* --- Language Toggle Display Rules --- */
[data-lang="en"] .lang-bn { display: none !important; }
[data-lang="bn"] .lang-en { display: none !important; }

/* --- CSS Reset & Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-main);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

ul {
    list-style: none;
}

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

/* --- Header / Navigation Bar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    transition: var(--transition);
}

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

.logo-img {
    height: 55px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.logo-img:hover {
    transform: rotate(10deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

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

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

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

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

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

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Icon Buttons (Theme, Lang, Cart, Menu) */
.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-main);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-surface);
    transition: var(--transition);
}

.menu-toggle {
    display: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* --- Section Formatting --- */
.section {
    padding: 100px 0;
}

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

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

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '🍃';
    font-size: 1.2rem;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: none;
}

/* --- Hero Section (Home) --- */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(46, 125, 50, 0.04), transparent);
    overflow: hidden;
}

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

.hero-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-glow);
}

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

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-search {
    background: var(--bg-surface);
    padding: 8px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    gap: 8px;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-search input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    color: var(--text-main);
}

.hero-search input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
}

.hero-img {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: var(--transition);
    max-width: 90%;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.floating-card {
    position: absolute;
    z-index: 3;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: bounce 6s infinite ease-in-out;
}

.fc-1 {
    top: 10%;
    left: -5%;
}

.fc-2 {
    bottom: 10%;
    right: -2%;
    animation-delay: 3s;
}

.fc-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.fc-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.fc-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Categories Section --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.cat-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    transition: var(--transition);
}

.category-card:hover .cat-icon-container {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.cat-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

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

.cat-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cat-link:hover {
    gap: 8px;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.features-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.features-img {
    transition: var(--transition);
    width: 100%;
}

.features-visual:hover .features-img {
    transform: scale(1.05);
}

.features-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.features-overlay h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.feature-text p {
    color: var(--text-muted);
}

/* --- Product Cards Grid --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-badge.out-of-stock {
    background: var(--text-muted);
}

.product-image-container {
    height: 200px;
    background: var(--primary-light);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--bg-surface) 20%, transparent 60%);
    opacity: 0.4;
}

.product-img {
    height: 70%;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.1));
}

.product-card:hover .product-img {
    transform: scale(1.1) rotate(5deg);
}

.product-info {
    padding: 20px;
}

.product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.product-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.add-to-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card:hover .add-to-cart-btn {
    background: var(--primary);
    color: white;
}

.add-to-cart-btn:hover {
    transform: scale(1.1);
}

/* --- Cart Slide-out Drawer --- */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    z-index: 1100;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.3rem;
}

.close-cart-btn {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.close-cart-btn:hover {
    color: var(--primary);
}

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

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    margin-top: 50px;
}

.cart-empty-message span {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-item-img-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-img-box img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 2px;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-qty-btn:hover {
    background: var(--border);
    color: var(--text-main);
}

.cart-qty-num {
    padding: 0 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-remove {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-left: 8px;
}

.cart-item-remove:hover {
    color: #e53935;
}

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

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cart-summary-row span:last-child {
    color: var(--primary-dark);
}

.cart-checkout-btn {
    width: 100%;
}

/* --- Checkout Modal --- */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 1200;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 480px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-modal-btn {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.close-modal-btn:hover {
    color: var(--primary);
}

.modal-body label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    background: var(--bg-main);
    color: var(--text-main);
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--border-glow);
}

/* --- Testimonials (Home) --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.testimonial-card::after {
    content: '“';
    position: absolute;
    top: 10px;
    right: 32px;
    font-size: 5rem;
    font-family: 'Outfit';
    color: var(--primary-light);
    line-height: 1;
    z-index: 1;
}

.test-content {
    position: relative;
    z-index: 2;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.test-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.test-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.test-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- About Us Page Layout --- */
.about-hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(245, 124, 0, 0.03));
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-intro-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-intro-visual {
    position: relative;
}

.about-intro-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-intro-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: white;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
    max-width: 260px;
}

.about-intro-card h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.about-intro-card p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Owner/Team section */
.owner-card-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.owner-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.owner-img-box {
    background: var(--primary-light);
    height: 100%;
    min-height: 350px;
}

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

.owner-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.owner-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.owner-name {
    font-size: 2rem;
    margin-bottom: 12px;
}

.owner-bio {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.owner-socials {
    display: flex;
    gap: 12px;
}

/* Timeline/Process flow */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: 12px;
    top: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.timeline-item:hover .timeline-badge {
    background: var(--primary);
    color: white;
}

.timeline-content h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Products Page Catalog UI --- */
.products-layout {
    padding-top: 150px;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.search-box input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-main);
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--border-glow);
}

.search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* --- Gallery Layout --- */
.gallery-layout {
    padding-top: 150px;
}

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

.gallery-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-surface);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    padding: 24px;
    text-align: center;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

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

.gallery-overlay i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Video Showcase Section */
.video-showcase {
    background: var(--primary-light);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 80px;
}

.video-info h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.video-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.video-frame-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
}

.video-frame-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.close-lightbox-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    color: white;
    font-size: 2rem;
}

/* --- Contact Us Layout --- */
.contact-layout {
    padding-top: 150px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

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

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-social-section {
    margin-top: 16px;
}

.contact-social-section h4 {
    margin-bottom: 12px;
}

.social-links-row {
    display: flex;
    gap: 12px;
}

.social-links-row a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-link-btn.facebook { background: #3b5998; }
.social-link-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link-btn.youtube { background: #ff0000; }

.social-link-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    filter: brightness(1.1);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.contact-form-card p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.form-textarea {
    resize: none;
    height: 120px;
}

.form-feedback {
    display: none;
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-feedback.success {
    display: block;
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-feedback.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid rgba(198, 40, 40, 0.2);
}

/* Map Mock Card */
.map-mock-section {
    margin-top: 60px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 350px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.map-mock-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    background-image: radial-gradient(var(--border) 2px, transparent 2px);
    background-size: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-mock-overlay {
    position: absolute;
    z-index: 5;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--border-radius);
    max-width: 320px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.map-mock-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.map-mock-overlay p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

/* --- Footer --- */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 32px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-col h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 280px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Keyframe Animations --- */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-grid, 
    .features-grid, 
    .about-intro-grid, 
    .owner-grid, 
    .video-showcase, 
    .contact-grid {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-badge, 
    .hero-desc, 
    .hero-search {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-image-wrapper {
        margin-top: 40px;
        order: -1;
    }
    
    .features-grid, 
    .about-intro-grid, 
    .owner-grid, 
    .video-showcase, 
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .owner-img-box {
        min-height: 250px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-surface);
        border-top: 1px solid var(--border);
        flex-direction: column;
        padding: 40px 24px;
        align-items: stretch;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .nav-container {
        padding: 8px 0;
    }
    .logo-img {
        height: 44px;
    }
    .brand-title {
        font-size: 1.1rem;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
