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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', 'Quicksand', sans-serif;
    line-height: 1.8;
    color: var(--dark);
    overflow-x: hidden;
    padding-top: 0;
    background: var(--light);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --primary: #047857;
    --primary-light: #059669;
    --primary-dark: #047857;
    --secondary: #f97316;
    --accent: #f97316;
    --dark: #064e3b;
    --light: #d1fae5;
    --white: #ffffff;
    --gray: #6b7280;
    --border: #a7f3d0;
    --gradient-1: linear-gradient(135deg, #047857 0%, #059669 100%);
    --gradient-2: linear-gradient(135deg, #059669 0%, #047857 100%);
}
body { font-family: 'Plus Jakarta Sans', sans-serif; }
/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 142, 90, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 142, 90, 0.4);
    background: var(--gradient-2);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Navigation - Organic Floating Style */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 2rem;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
    transform: translateX(-50%) translateY(-2px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
}

.logo-since {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
    margin-left: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-icon-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

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

.nav-icon-btn:active {
    transform: scale(0.95);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Unique per site */
.hero-var.hero-var-3{min-height:75vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:160px 24px;background:linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);position:relative;}
.hero-var-3-overlay{position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");opacity:0.5;}
.hero-var-3-content{position:relative;z-index:2;max-width:720px;}
.hero-var-3-badge{display:inline-block;padding:0.4rem 1rem;background:rgba(255,255,255,0.15);border-radius:6px;color:rgba(255,255,255,0.95);font-size:0.85rem;font-weight:600;margin-bottom:1.25rem;}
.hero-var-3-title{font-size:clamp(2.5rem,5vw,4rem);font-weight:800;color:#fff;margin-bottom:1rem;letter-spacing:-0.02em;}
.hero-var-3-desc{font-size:1.15rem;color:rgba(255,255,255,0.85);line-height:1.7;margin-bottom:2rem;}
.hero-var-3-cta{display:inline-block;padding:16px 36px;background:#fff;color:var(--primary);border-radius:10px;font-weight:700;text-decoration:none;transition:transform 0.2s,box-shadow 0.2s;}
.hero-var-3-cta:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(0,0,0,0.2);}




/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.category-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.category-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Shop Section - Organic Layout */
.shop-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--dark);
    font-weight: 900;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
}

.section-title::before {
    content: '✨';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.5;
}

.section-title::after {
    content: '✨';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.5;
}

.shop-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-toggle-sidebar {
    display: none;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.view-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-options select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Sidebar */
.sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

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

.sidebar-header h3 {
    margin: 0;
    color: var(--dark);
}

.close-sidebar {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h4 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1rem;
}

.filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
}

.price-filters,
.category-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-filters label,
.category-filters label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.price-filters input,
.category-filters input {
    cursor: pointer;
}

/* Products */
.products-container {
    flex: 1;
}

.products-info {
    margin-bottom: 1rem;
    color: var(--gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(99, 102, 241, 0.08);
    border: 2px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(135deg, white 0%, var(--light) 100%);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    border-color: var(--primary);
    background: white;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--light);
    display: block;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 30px 30px 0 0;
}

.product-card:hover .product-image {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.product-image[src=""],
.product-image:not([src]) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.product-action-btn {
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-action-btn:hover {
    background: var(--primary);
    color: white;
}

.product-action-btn .fa-heart.active {
    color: #e74c3c;
}

.product-info {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 0 0 30px 30px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-price .current {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary);
}

.product-price .original {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.product-price .discount {
    font-size: 0.8rem;
    color: #e74c3c;
    font-weight: bold;
}

.product-actions-bottom {
    display: flex;
    gap: 0.5rem;
}

.btn-add-cart {
    flex: 1;
    padding: 14px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover {
    background: var(--gradient-2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination button {
    padding: 10px 15px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover,
.pagination button.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-large {
    max-width: 800px;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    background: none;
    border: none;
}

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

.search-box {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.search-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.search-results {
    margin-top: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.cart-sidebar::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cart-sidebar.active::before {
    opacity: 1;
    pointer-events: all;
}

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

.cart-header h2 {
    margin: 0;
    color: var(--dark);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.close-cart:hover {
    color: var(--dark);
    transform: scale(1.2);
}

.close-cart:active {
    transform: scale(0.9);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    color: var(--gray);
    padding: 2rem;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--light);
    flex-shrink: 0;
}

.cart-item-image[src=""],
.cart-item-image:not([src]) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

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

.cart-item-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.cart-item-price {
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity button {
    width: 25px;
    height: 25px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 4px;
    cursor: pointer;
}

.cart-item-quantity input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* Newsletter - Organic Design */
.newsletter {
    padding: 100px 0;
    background: var(--light);
    color: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.newsletter h2 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 3rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.newsletter h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.newsletter p {
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--dark);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.since-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #cbd5e0;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .logo-since {
        font-size: 0.65rem;
        margin-left: 1.5rem;
    }

    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        order: 2;
        gap: 0.5rem;
    }

    .nav-icon-btn {
        font-size: 1rem;
        padding: 0.4rem;
    }

    .badge {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        width: 300px;
        height: 100vh;
        z-index: 1400;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1399;
        pointer-events: all;
    }

    .close-sidebar {
        display: block;
    }

    .btn-toggle-sidebar {
        display: block;
    }

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

    .cart-sidebar {
        width: 100%;
        right: -100%;
        z-index: 2000;
    }

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

    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 1.5rem;
    }

    .nav-logo {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-minimal {
        padding: 150px 0 100px;
        min-height: auto;
    }

    .hero-minimal-title {
        font-size: 3rem;
    }

    .hero-minimal-description {
        font-size: 1.1rem;
    }

    .hero-minimal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-split {
        padding: 150px 0 100px;
        min-height: auto;
    }

    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }

    .hero-split-title {
        font-size: 2.8rem;
    }

    .hero-split-description {
        font-size: 1.1rem;
    }

    .hero-split-stats {
        gap: 2rem;
    }

    .split-stat-number {
        font-size: 2rem;
    }

    .hero-split-right {
        height: 400px;
    }

    .hero-banner {
        padding: 150px 0 100px;
        min-height: auto;
    }

    .hero-banner-title {
        font-size: 3rem;
    }

    .hero-banner-description {
        font-size: 1.1rem;
    }

    .hero-banner-features {
        gap: 2rem;
    }

    .hero-slider {
        padding: 150px 0 100px;
        min-height: auto;
    }

    .hero-slide-title {
        font-size: 2.8rem;
    }

    .hero-slide-description {
        font-size: 1.1rem;
    }

    .hero-slide-stats {
        gap: 2rem;
    }

    .slide-stat-number {
        font-size: 2.5rem;
    }

    .hero-card {
        padding: 150px 0 100px;
        min-height: auto;
    }

    .hero-card-content {
        padding: 2.5rem;
    }

    .hero-card-title {
        font-size: 2.5rem;
    }

    .hero-card-description {
        font-size: 1.1rem;
    }

    .hero-card-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-organic {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }

    .hero-title-organic {
        font-size: 2.5rem;
    }

    .hero-description-organic {
        font-size: 1.1rem;
    }

    .hero-right-organic {
        height: 400px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }

    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 1rem 1.5rem;
        border-radius: 30px;
    }

    .hero-slider {
        height: 400px;
        margin-top: 70px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-controls {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {

    .categories-grid,
    .featured-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .nav-logo h2 {
        font-size: 1rem;
    }

    .logo-since {
        display: none;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
/* Cart/Wishlist sidebar - layout and text fix */
.cart-sidebar { background: var(--white); }
.cart-item-info { min-width: 0; flex: 1; }
.cart-item-title { overflow-wrap: break-word; word-break: break-word; white-space: normal; font-size: 0.9rem; line-height: 1.35; margin-bottom: 0.5rem; color: var(--dark); }
.cart-item { align-items: flex-start; }
.cart-item-image { flex-shrink: 0; }
.cart-item-remove { flex-shrink: 0; }
.cart-header h2 { font-size: 1.25rem; font-weight: 700; }
