/* ==========================================================================
   GREENSCAPE - Garden & Outdoor Living Store
   Complete CSS Stylesheet - No External Images
   ========================================================================== */

/* ==========================================================================
   CSS Variables - Garden Theme Colors
   ========================================================================== */
:root {
    /* Primary Garden Greens */
    --primary: #4CAF50;
    --primary-dark: #2E7D32;
    --primary-light: #81C784;

    /* Secondary Lime/Light Greens */
    --secondary: #8BC34A;
    --secondary-dark: #689F38;
    --secondary-light: #AED581;

    /* Accent Brown/Earth Tones */
    --accent: #795548;
    --accent-dark: #5D4037;
    --accent-light: #8D6E63;

    /* Background Colors */
    --bg-cream: #FEFEFE;
    --bg-sage: #E8F5E9;
    --bg-sand: #F5F0E6;
    --bg-leaf: #C8E6C9;
    --bg-warm: #EFEBE9;

    /* Text Colors */
    --text-dark: #2E3B2E;
    --text-body: #4A4A4A;
    --text-light: #6B6B6B;
    --text-muted: #9E9E9E;
    --white: #FFFFFF;
    --black: #1A1A1A;

    /* Status Colors */
    --success: #4CAF50;
    --error: #E53935;
    --warning: #FFC107;
    --info: #2196F3;

    /* Border Colors */
    --border-light: #E0E0E0;
    --border-medium: #BDBDBD;
    --border-green: #A5D6A7;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.16);
    --shadow-green: 0 4px 16px rgba(76, 175, 80, 0.25);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito', 'Open Sans', sans-serif;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1400px;
    --container-narrow: 900px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: var(--space-lg) auto 0;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.section-footer {
    text-align: center;
    margin-top: var(--space-3xl);
}

.bg-sage {
    background-color: var(--bg-sage);
}

/* ==========================================================================
   Placeholder Image Styles - Core Component
   ========================================================================== */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding: var(--space-md);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

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

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.top-bar a {
    transition: opacity var(--transition-fast);
}

.top-bar a:hover {
    opacity: 0.8;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.main-nav {
    background: var(--white);
    padding: var(--space-md) 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    font-weight: 500;
    color: var(--text-body);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-md);
    right: var(--space-md);
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Nav Icons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-body);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

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

.nav-icon .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-normal);
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: var(--white);
    z-index: 2;
}

.slide-content .subtitle {
    display: inline-block;
    background: var(--secondary);
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.slide-content h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    line-height: 1.8;
}

.slide-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 10;
    border: none;
    cursor: pointer;
}

.slider-control:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: var(--space-xl);
}

.slider-next {
    right: var(--space-xl);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ==========================================================================
   Categories Section
   ========================================================================== */
.categories-section {
    padding: var(--space-4xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    transition: transform var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-card .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    font-size: 1rem;
    letter-spacing: 3px;
    transition: transform var(--transition-slow);
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
    z-index: 2;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(76, 175, 80, 0.95) 0%, rgba(76, 175, 80, 0.5) 100%);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: all var(--transition-normal);
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

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

.category-card:hover .category-icon i {
    color: var(--primary);
}

.category-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.category-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.category-card:hover .category-overlay p {
    max-height: 100px;
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-section {
    padding: var(--space-4xl) 0;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image .placeholder-image {
    min-height: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg-leaf) 100%);
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1px;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image .placeholder-image {
    transform: scale(1.08);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    z-index: 2;
}

.product-badge {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

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

.badge-sale {
    background: var(--error);
    color: var(--white);
}

.badge-bestseller {
    background: var(--accent);
    color: var(--white);
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-normal);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

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

/* Product Quick Add */
.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-md);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.product-quick-add:hover {
    background: var(--primary-dark);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
}

/* Product Info */
.product-info {
    padding: var(--space-lg);
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    display: block;
}

.product-title {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.product-title a {
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 0.8rem;
    color: var(--warning);
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ==========================================================================
   Seasonal Section
   ========================================================================== */
.seasonal-section {
    padding: var(--space-4xl) 0;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.seasonal-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
}

.seasonal-card .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.seasonal-placeholder {
    font-size: 1.25rem !important;
}

.seasonal-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-2xl);
    color: var(--white);
    z-index: 2;
}

.season-tag {
    display: inline-block;
    background: var(--secondary);
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    width: fit-content;
}

.seasonal-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.seasonal-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* ==========================================================================
   Features Bar
   ========================================================================== */
.features-bar {
    background: var(--bg-sage);
    padding: var(--space-2xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-align: left;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   Tips Section
   ========================================================================== */
.tips-section {
    padding: var(--space-4xl) 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.tip-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.tip-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tip-image .placeholder-image {
    height: 100%;
    min-height: 100%;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: transform var(--transition-slow);
}

.tip-placeholder {
    font-size: 0.875rem !important;
}

.tip-card:hover .tip-image .placeholder-image {
    transform: scale(1.08);
}

.tip-content {
    padding: var(--space-lg);
}

.tip-meta {
    display: flex;
    gap: var(--space-lg);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.tip-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.tip-content h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.tip-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition-fast);
}

.read-more:hover {
    gap: var(--space-md);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-4xl) 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.newsletter-content p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    font-size: 1.0625rem;
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-about {
    padding-right: var(--space-xl);
}

.footer-about .logo {
    margin-bottom: var(--space-lg);
}

.footer-about .logo-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

.footer-about .logo-text {
    color: var(--white);
}

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

.footer-about > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-md);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: var(--space-sm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.payment-icons {
    display: flex;
    gap: var(--space-md);
}

.payment-icons i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-about {
        grid-column: span 2;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content {
        max-width: 500px;
        left: 5%;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

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

    .seasonal-card {
        height: 350px;
    }

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

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* Mobile Landscape & Large Phones */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
    }

    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }

    .slide-content {
        left: var(--space-lg);
        right: var(--space-lg);
        max-width: none;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-control {
        width: 45px;
        height: 45px;
    }

    .slider-prev {
        left: var(--space-md);
    }

    .slider-next {
        right: var(--space-md);
    }

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

    .category-card {
        height: 250px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

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

    .feature-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about {
        grid-column: span 1;
        padding-right: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .section {
        padding: var(--space-3xl) 0;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-slider {
        height: 55vh;
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: 1.75rem;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .slide-buttons .btn {
        width: 100%;
    }

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

    .product-image {
        height: 250px;
    }

    .seasonal-card {
        height: 300px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 1.25rem;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .hero-slider {
        min-height: 350px;
    }

    .slide-content .subtitle {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-sm);
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}
