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

:root {
    /* Brand Colors */
    --primary: #1E5E3A;        /* Deep Forest Green */
    --primary-light: #2D8C57;  /* Fresh Leaf Green */
    --primary-bg: #F4F7F5;     /* Soft Mint tint */
    --accent: #E28743;         /* Warm Teracotta/Amber */
    --accent-light: #F2A154;   /* Light Amber */
    
    /* Neutrals */
    --dark: #1E293B;           /* Deep Slate Gray */
    --gray-600: #475569;
    --gray-400: #94A3B8;
    --gray-200: #E2E8F0;
    --gray-50: #F8FAFC;
    --white: #FFFFFF;
    
    /* Design Variables */
    --font-sans: 'Outfit', sans-serif;
    --font-cursive: 'Caveat', cursive;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -2px rgba(0,0,0,0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --max-width: 1200px;
}

/* CSS Reset & Core Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--dark);
    background-color: var(--gray-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: var(--transition);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

.cursive {
    font-family: var(--font-cursive);
    font-size: 1.6rem;
    color: var(--accent);
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

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

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

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

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

.icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
}

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
}

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

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

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-light);
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

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

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

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

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

.hero-features {
    display: flex;
    gap: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

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

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 94, 58, 0.05);
    border-radius: 50%;
    filter: blur(20px);
}

.hero-illustration {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    padding: 16px;
    border: 8px solid rgba(255,255,255,0.7);
    max-width: 420px;
}

.hero-illustration img {
    border-radius: var(--radius-md);
}

/* Category Grid Section */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 64px;
}

.category-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

.category-icon {
    font-size: 2.5rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 4px;
}

/* Products Layout */
.products-section {
    padding: 64px 0;
    background-color: var(--white);
}

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

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

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
    transform: translateY(-2px);
}

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

.product-img-wrapper {
    height: 180px;
    background-color: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.product-illustration-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(30, 94, 58, 0.04) 0%, rgba(226, 135, 67, 0.04) 100%);
}

.product-illustration-placeholder span.label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    background-color: rgba(255,255,255,0.85);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.product-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.product-card h3 a:hover {
    color: var(--primary);
}

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

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

.product-price-wrapper {
    display: flex;
    flex-direction: column;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.product-unit {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
}

.add-to-cart-btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

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

/* Package Types Section */
.packages-section {
    padding: 64px 0;
    background-color: var(--primary-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
}

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

.package-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: inline-block;
}

.package-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.package-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.package-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--primary-bg);
    color: var(--primary);
    border-radius: 30px;
}

/* Footer Section */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 64px 0 24px 0;
    border-top: 4px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
    color: var(--white);
}

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

.footer-col p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

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

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

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

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

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--accent-light);
}

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

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast-notification {
    background-color: var(--white);
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-message {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

/* Shop Filters & Controls */
.shop-container {
    padding: 48px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
}

.sidebar {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    align-self: flex-start;
}

.filter-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.category-filter-list {
    list-style: none;
}

.category-filter-item {
    margin-bottom: 12px;
}

.category-filter-btn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 4px 0;
    font-weight: 500;
}

.category-filter-btn.active, .category-filter-btn:hover {
    color: var(--primary);
    font-weight: 600;
}

.category-count {
    background-color: var(--gray-50);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

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

.search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background-color: var(--white);
}

.search-input:focus {
    border-color: var(--primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 140, 87, 0.1);
}

.search-box-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    font-size: 0.9rem;
    outline: none;
}

/* Product Details Layout */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px 0;
}

.product-detail-visual {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-detail-title {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-detail-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.product-detail-desc {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 32px;
}

.product-detail-meta {
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 0;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    font-size: 0.95rem;
}

.meta-label {
    font-weight: 700;
    color: var(--dark);
}

.meta-value {
    color: var(--gray-600);
}

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

.qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 52px;
    background-color: var(--white);
}

.qty-btn {
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-600);
}

.qty-btn:hover {
    background-color: var(--gray-50);
    color: var(--primary);
}

.qty-input {
    width: 48px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-detail-add {
    flex-grow: 1;
    height: 52px;
}

/* Cart Page Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 32px;
    padding: 48px 0;
}

.cart-table-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.cart-empty-state {
    text-align: center;
    padding: 64px 32px;
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.cart-empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cart-empty-state p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    gap: 16px;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-details {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background-color: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid var(--gray-200);
}

.cart-item-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.cart-item-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 100px;
    text-align: right;
}

.cart-item-remove {
    color: #EF4444;
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 50%;
}

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

.cart-summary-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    align-self: flex-start;
}

.cart-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.summary-row.total {
    border-top: 1px solid var(--gray-200);
    padding-top: 16px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.btn-checkout {
    width: 100%;
}

/* Checkout Page Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    padding: 48px 0;
}

.checkout-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.checkout-section-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

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

.form-group.half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-600);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    outline: none;
    font-family: var(--font-sans);
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(45, 140, 87, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.radio-label:hover {
    background-color: var(--gray-50);
}

.radio-label input:checked + .radio-content {
    color: var(--primary);
}

.radio-label input {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.radio-content {
    display: flex;
    flex-direction: column;
}

.radio-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.radio-desc {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Page Banner (For secondary pages) */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.page-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* About & Story Style */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    padding: 64px 0;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

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

.stat-item {
    border-left: 4px solid var(--accent);
    padding-left: 16px;
}

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

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.animate-slide-in {
    animation: slideIn 0.3s forwards ease-out;
}

.animate-fade-out {
    animation: fadeOut 0.3s forwards ease-in;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-illustration {
        margin: 0 auto;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none; /* Can be toggled with JS */
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-item {
        border-left: none;
        border-top: 3px solid var(--accent);
        padding-left: 0;
        padding-top: 12px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Needs a burger menu toggler */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .form-group.half {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-price {
        text-align: left;
        min-width: auto;
    }
}
