/*
Theme Name: FreshCart
Theme URI: https://freshcart.example.com
Author: FreshCart Studio
Author URI: https://freshcart.example.com
Description: A vibrant, modern WooCommerce theme designed for fresh vegetables, fruits, and organic produce stores. Features a clean, nature-inspired design with smooth animations and full WooCommerce integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: freshcart
Tags: woocommerce, e-commerce, food, organic, vegetables, fruits, custom-menu, custom-logo, featured-images, theme-options

FreshCart WordPress Theme, (C) 2024 FreshCart Studio
FreshCart is distributed under the terms of the GNU GPL v2 or later.
*/

/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    /* Primary Palette - Earthy Greens */
    --fc-green-50: #f0fdf4;
    --fc-green-100: #dcfce7;
    --fc-green-200: #bbf7d0;
    --fc-green-300: #86efac;
    --fc-green-400: #4ade80;
    --fc-green-500: #22c55e;
    --fc-green-600: #16a34a;
    --fc-green-700: #15803d;
    --fc-green-800: #166534;
    --fc-green-900: #14532d;

    /* Accent - Warm Orange */
    --fc-orange-50: #fff7ed;
    --fc-orange-100: #ffedd5;
    --fc-orange-200: #fed7aa;
    --fc-orange-300: #fdba74;
    --fc-orange-400: #fb923c;
    --fc-orange-500: #f97316;
    --fc-orange-600: #ea580c;

    /* Neutrals */
    --fc-white: #ffffff;
    --fc-cream: #fefcf3;
    --fc-sand: #f5f0e8;
    --fc-gray-100: #f3f4f6;
    --fc-gray-200: #e5e7eb;
    --fc-gray-300: #d1d5db;
    --fc-gray-400: #9ca3af;
    --fc-gray-500: #6b7280;
    --fc-gray-600: #4b5563;
    --fc-gray-700: #374151;
    --fc-gray-800: #1f2937;
    --fc-gray-900: #111827;

    /* Typography */
    --fc-font-display: 'DM Serif Display', Georgia, serif;
    --fc-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --fc-font-accent: 'Caveat', cursive;

    /* Spacing */
    --fc-container: 1280px;
    --fc-gap: 2rem;
    --fc-radius: 12px;
    --fc-radius-sm: 8px;
    --fc-radius-lg: 20px;

    /* Shadows */
    --fc-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --fc-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --fc-shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --fc-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

    /* Transitions */
    --fc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --fc-transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =========================================
   BASE RESET
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--fc-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--fc-gray-800);
    background-color: var(--fc-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--fc-green-700);
    text-decoration: none;
    transition: var(--fc-transition);
}

a:hover {
    color: var(--fc-green-500);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fc-font-display);
    color: var(--fc-gray-900);
    line-height: 1.2;
    font-weight: 400;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* =========================================
   UTILITY CLASSES
   ========================================= */
.fc-container {
    max-width: var(--fc-container);
    margin: 0 auto;
    padding: 0 var(--fc-gap);
}

.fc-section {
    padding: 5rem 0;
}

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

.fc-section-title h2 {
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.fc-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-green-400), var(--fc-orange-400));
    border-radius: 2px;
}

.fc-section-title p {
    color: var(--fc-gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.fc-handwritten {
    font-family: var(--fc-font-accent);
    color: var(--fc-green-600);
    font-size: 1.4em;
}

.fc-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fc-badge--organic {
    background: var(--fc-green-100);
    color: var(--fc-green-800);
}

.fc-badge--sale {
    background: var(--fc-orange-500);
    color: var(--fc-white);
}

.fc-badge--new {
    background: var(--fc-green-500);
    color: var(--fc-white);
}

/* Buttons */
.fc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--fc-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--fc-transition-bounce);
    text-decoration: none;
    line-height: 1;
}

.fc-btn--primary {
    background: var(--fc-green-600);
    color: var(--fc-white);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.fc-btn--primary:hover {
    background: var(--fc-green-700);
    color: var(--fc-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.fc-btn--secondary {
    background: var(--fc-white);
    color: var(--fc-green-700);
    border: 2px solid var(--fc-green-200);
}

.fc-btn--secondary:hover {
    border-color: var(--fc-green-500);
    color: var(--fc-green-600);
    transform: translateY(-2px);
}

.fc-btn--orange {
    background: var(--fc-orange-500);
    color: var(--fc-white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.fc-btn--orange:hover {
    background: var(--fc-orange-600);
    color: var(--fc-white);
    transform: translateY(-2px);
}

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
.fc-announcement {
    background: var(--fc-green-800);
    color: var(--fc-green-100);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.fc-announcement a {
    color: var(--fc-orange-300);
    text-decoration: underline;
    font-weight: 700;
}

.fc-announcement a:hover {
    color: var(--fc-orange-200);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.fc-header {
    background: var(--fc-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--fc-shadow-sm);
    transition: var(--fc-transition);
}

.fc-header.scrolled {
    box-shadow: var(--fc-shadow-md);
}

.fc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--fc-gap);
    max-width: var(--fc-container);
    margin: 0 auto;
    gap: 2rem;
}

/* Logo */
.fc-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.fc-logo__icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--fc-green-500), var(--fc-green-700));
    border-radius: var(--fc-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--fc-white);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.fc-logo__text {
    font-family: var(--fc-font-display);
    font-size: 1.6rem;
    color: var(--fc-gray-900);
    line-height: 1;
}

.fc-logo__tagline {
    font-size: 0.7rem;
    color: var(--fc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Navigation */
.fc-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.fc-nav__list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.fc-nav__item {
    position: relative;
}

.fc-nav__link {
    display: block;
    padding: 0.5rem 1.25rem;
    color: var(--fc-gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--fc-radius-sm);
    transition: var(--fc-transition);
}

.fc-nav__link:hover,
.fc-nav__link--active {
    color: var(--fc-green-700);
    background: var(--fc-green-50);
}

/* Dropdown */
.fc-nav__item:hover .fc-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fc-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    box-shadow: var(--fc-shadow-lg);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--fc-transition);
    border: 1px solid var(--fc-gray-100);
    z-index: 100;
}

.fc-nav__dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    color: var(--fc-gray-700);
    border-radius: var(--fc-radius-sm);
    font-size: 0.9rem;
}

.fc-nav__dropdown a:hover {
    background: var(--fc-green-50);
    color: var(--fc-green-700);
}

.fc-nav__dropdown-icon {
    font-size: 1.25rem;
    width: 32px;
    text-align: center;
}

/* Header Actions */
.fc-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.fc-header__action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: var(--fc-gray-600);
    font-size: 1.25rem;
    transition: var(--fc-transition);
    position: relative;
}

.fc-header__action-btn:hover {
    background: var(--fc-green-50);
    color: var(--fc-green-700);
}

.fc-header__cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--fc-orange-500);
    color: var(--fc-white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile Menu Toggle */
.fc-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
}

.fc-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--fc-gray-700);
    border-radius: 2px;
    transition: var(--fc-transition);
}

/* Search Bar */
.fc-search-bar {
    display: flex;
    align-items: center;
    background: var(--fc-gray-100);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    flex: 1;
    max-width: 400px;
    border: 2px solid transparent;
    transition: var(--fc-transition);
}

.fc-search-bar:focus-within {
    background: var(--fc-white);
    border-color: var(--fc-green-300);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.fc-search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--fc-font-body);
    font-size: 0.9rem;
    color: var(--fc-gray-800);
    width: 100%;
    padding: 0.25rem 0.5rem;
}

.fc-search-bar input::placeholder {
    color: var(--fc-gray-400);
}

.fc-search-bar button {
    border: none;
    background: none;
    cursor: pointer;
    color: var(--fc-gray-400);
    font-size: 1.1rem;
    padding: 0.25rem;
    transition: var(--fc-transition);
}

.fc-search-bar button:hover {
    color: var(--fc-green-600);
}

/* =========================================
   HERO SECTION
   ========================================= */
.fc-hero {
    position: relative;
    background: linear-gradient(135deg, var(--fc-green-50) 0%, var(--fc-cream) 50%, var(--fc-orange-50) 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.fc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: fc-pulse 8s ease-in-out infinite;
}

.fc-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: fc-pulse 10s ease-in-out infinite reverse;
}

@keyframes fc-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.fc-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.fc-hero__content {
    animation: fc-slideUp 0.8s ease-out;
}

@keyframes fc-slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fc-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--fc-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fc-green-700);
    margin-bottom: 1.5rem;
    box-shadow: var(--fc-shadow-sm);
}

.fc-hero__label-dot {
    width: 8px;
    height: 8px;
    background: var(--fc-green-500);
    border-radius: 50%;
    animation: fc-blink 2s ease-in-out infinite;
}

@keyframes fc-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.fc-hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--fc-gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.fc-hero__title span {
    color: var(--fc-green-600);
    position: relative;
}

.fc-hero__title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--fc-green-200);
    border-radius: 4px;
    z-index: -1;
}

.fc-hero__text {
    font-size: 1.15rem;
    color: var(--fc-gray-500);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.8;
}

.fc-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.fc-hero__stats {
    display: flex;
    gap: 2.5rem;
}

.fc-hero__stat {
    text-align: center;
}

.fc-hero__stat-number {
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    color: var(--fc-gray-900);
    display: block;
}

.fc-hero__stat-label {
    font-size: 0.8rem;
    color: var(--fc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fc-hero__image {
    position: relative;
    animation: fc-slideUp 0.8s ease-out 0.2s both;
}

.fc-hero__image img {
    border-radius: var(--fc-radius-lg);
    box-shadow: var(--fc-shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.fc-hero__float-card {
    position: absolute;
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--fc-shadow-md);
    animation: fc-float 3s ease-in-out infinite;
}

.fc-hero__float-card--1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.fc-hero__float-card--2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes fc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fc-hero__float-card span {
    font-size: 1.5rem;
    display: block;
    text-align: center;
    margin-bottom: 0.25rem;
}

.fc-hero__float-card small {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fc-gray-600);
    white-space: nowrap;
}

/* Leaf Decorations */
.fc-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: fc-leaf-fall 15s linear infinite;
    z-index: 0;
}

@keyframes fc-leaf-fall {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(800px) rotate(720deg); opacity: 0; }
}

/* =========================================
   FEATURES / TRUST STRIP
   ========================================= */
.fc-trust-strip {
    background: var(--fc-white);
    border-top: 1px solid var(--fc-gray-100);
    border-bottom: 1px solid var(--fc-gray-100);
    padding: 2rem 0;
}

.fc-trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.fc-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.fc-trust-item__icon {
    width: 48px;
    height: 48px;
    background: var(--fc-green-50);
    border-radius: var(--fc-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.fc-trust-item__text h4 {
    font-family: var(--fc-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--fc-gray-800);
    margin-bottom: 0.15rem;
}

.fc-trust-item__text p {
    font-size: 0.8rem;
    color: var(--fc-gray-400);
    margin: 0;
}

/* =========================================
   CATEGORY CARDS
   ========================================= */
.fc-categories {
    background: var(--fc-cream);
}

.fc-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.fc-category-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--fc-transition-bounce);
    position: relative;
    overflow: hidden;
}

.fc-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fc-green-400), var(--fc-green-600));
    transform: scaleX(0);
    transition: var(--fc-transition);
}

.fc-category-card:hover {
    border-color: var(--fc-green-200);
    transform: translateY(-6px);
    box-shadow: var(--fc-shadow-md);
}

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

.fc-category-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--fc-transition-bounce);
}

.fc-category-card:hover .fc-category-card__icon {
    transform: scale(1.15) rotate(-5deg);
}

.fc-category-card__name {
    font-family: var(--fc-font-display);
    font-size: 1.1rem;
    color: var(--fc-gray-800);
    margin-bottom: 0.25rem;
}

.fc-category-card__count {
    font-size: 0.8rem;
    color: var(--fc-gray-400);
}

/* =========================================
   PRODUCT CARDS (WooCommerce Override)
   ========================================= */
.fc-products__grid,
ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fc-product-card,
ul.products li.product {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    overflow: hidden;
    transition: var(--fc-transition-bounce);
    position: relative;
    border: 1px solid var(--fc-gray-100);
}

.fc-product-card:hover,
ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: var(--fc-shadow-lg);
    border-color: var(--fc-green-200);
}

.fc-product-card__image,
ul.products li.product a img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    display: block;
    transition: var(--fc-transition);
}

.fc-product-card:hover .fc-product-card__image img,
ul.products li.product:hover a img {
    transform: scale(1.05);
}

.fc-product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

ul.products li.product .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--fc-orange-500);
    color: var(--fc-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fc-product-card__quick-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--fc-transition);
}

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

.fc-product-card__quick-btn {
    width: 36px;
    height: 36px;
    background: var(--fc-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--fc-shadow);
    transition: var(--fc-transition);
}

.fc-product-card__quick-btn:hover {
    background: var(--fc-green-500);
    color: var(--fc-white);
}

.fc-product-card__body,
ul.products li.product a {
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    display: block;
}

.fc-product-card__category {
    font-size: 0.75rem;
    color: var(--fc-green-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.fc-product-card__name,
ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--fc-font-display);
    font-size: 1.15rem;
    color: var(--fc-gray-800);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.fc-product-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.fc-product-card__weight {
    font-size: 0.8rem;
    color: var(--fc-gray-400);
}

.fc-product-card__rating,
ul.products li.product .star-rating {
    display: flex;
    gap: 2px;
    font-size: 0.75rem;
    color: var(--fc-orange-400);
}

.fc-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem 1.25rem;
}

.fc-product-card__price,
ul.products li.product .price {
    font-family: var(--fc-font-display);
    font-size: 1.35rem;
    color: var(--fc-green-700);
}

.fc-product-card__price del,
ul.products li.product .price del {
    font-size: 0.85rem;
    color: var(--fc-gray-400);
    margin-right: 0.5rem;
}

.fc-product-card__price ins,
ul.products li.product .price ins {
    text-decoration: none;
    color: var(--fc-orange-600);
}

.fc-product-card__add-btn,
ul.products li.product .button,
ul.products li.product .add_to_cart_button,
.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: var(--fc-green-600);
    color: var(--fc-white) !important;
    border: none;
    border-radius: 50px;
    font-family: var(--fc-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--fc-transition-bounce);
    text-decoration: none;
}

.fc-product-card__add-btn:hover,
ul.products li.product .button:hover,
ul.products li.product .add_to_cart_button:hover,
.single_add_to_cart_button:hover {
    background: var(--fc-green-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    color: var(--fc-white) !important;
}

/* WooCommerce product added to cart */
ul.products li.product .added_to_cart {
    display: inline-flex;
    padding: 0.4rem 1rem;
    background: var(--fc-orange-100);
    color: var(--fc-orange-600);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* =========================================
   BANNER / CTA
   ========================================= */
.fc-banner {
    background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-900));
    border-radius: var(--fc-radius-lg);
    padding: 4rem;
    color: var(--fc-white);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fc-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.fc-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 30%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.fc-banner__content {
    position: relative;
    z-index: 1;
}

.fc-banner__label {
    font-family: var(--fc-font-accent);
    font-size: 1.3rem;
    color: var(--fc-orange-300);
    margin-bottom: 0.5rem;
}

.fc-banner__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--fc-white);
    margin-bottom: 1rem;
}

.fc-banner__text {
    color: var(--fc-green-200);
    margin-bottom: 2rem;
    max-width: 450px;
}

.fc-banner__image {
    position: relative;
    z-index: 1;
}

.fc-banner__image img {
    border-radius: var(--fc-radius);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.fc-testimonials {
    background: var(--fc-white);
}

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

.fc-testimonial-card {
    background: var(--fc-cream);
    border-radius: var(--fc-radius);
    padding: 2rem;
    position: relative;
    transition: var(--fc-transition);
    border: 1px solid var(--fc-gray-100);
}

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

.fc-testimonial-card__quote {
    font-size: 3rem;
    color: var(--fc-green-200);
    font-family: var(--fc-font-display);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fc-testimonial-card__text {
    color: var(--fc-gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.fc-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fc-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fc-green-300), var(--fc-green-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--fc-white);
    font-weight: 700;
}

.fc-testimonial-card__name {
    font-weight: 700;
    color: var(--fc-gray-800);
    font-size: 0.95rem;
}

.fc-testimonial-card__role {
    font-size: 0.8rem;
    color: var(--fc-gray-400);
}

.fc-testimonial-card__stars {
    color: var(--fc-orange-400);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* =========================================
   NEWSLETTER
   ========================================= */
.fc-newsletter {
    background: var(--fc-green-50);
    border-top: 1px solid var(--fc-green-100);
}

.fc-newsletter__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.fc-newsletter__title {
    margin-bottom: 0.75rem;
}

.fc-newsletter__text {
    color: var(--fc-gray-500);
    margin-bottom: 2rem;
}

.fc-newsletter__form {
    display: flex;
    gap: 0.75rem;
    max-width: 460px;
    margin: 0 auto;
}

.fc-newsletter__input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--fc-green-200);
    border-radius: 50px;
    font-family: var(--fc-font-body);
    font-size: 0.95rem;
    outline: none;
    background: var(--fc-white);
    transition: var(--fc-transition);
}

.fc-newsletter__input:focus {
    border-color: var(--fc-green-400);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

/* =========================================
   FOOTER
   ========================================= */
.fc-footer {
    background: var(--fc-gray-900);
    color: var(--fc-gray-300);
    padding-top: 4rem;
}

.fc-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fc-footer__brand .fc-logo__text {
    color: var(--fc-white);
}

.fc-footer__brand p {
    color: var(--fc-gray-400);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
}

.fc-footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.fc-footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-gray-400);
    font-size: 1.1rem;
    transition: var(--fc-transition);
}

.fc-footer__social a:hover {
    background: var(--fc-green-600);
    color: var(--fc-white);
}

.fc-footer__column h4 {
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.fc-footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fc-footer__column li {
    margin-bottom: 0.6rem;
}

.fc-footer__column a {
    color: var(--fc-gray-400);
    font-size: 0.9rem;
    transition: var(--fc-transition);
}

.fc-footer__column a:hover {
    color: var(--fc-green-400);
    padding-left: 4px;
}

.fc-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--fc-gray-500);
}

.fc-footer__payments {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.fc-footer__payments span {
    font-size: 1.5rem;
    opacity: 0.5;
}

/* =========================================
   WOOCOMMERCE - SHOP PAGE
   ========================================= */
.woocommerce-page .fc-shop-header {
    background: linear-gradient(135deg, var(--fc-green-50), var(--fc-cream));
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.woocommerce-page .fc-shop-header h1 {
    margin-bottom: 0.5rem;
}

.woocommerce-page .woocommerce-breadcrumb {
    font-size: 0.85rem;
    color: var(--fc-gray-400);
    margin-bottom: 1rem;
}

.woocommerce-page .woocommerce-breadcrumb a {
    color: var(--fc-green-600);
}

.woocommerce-page .woocommerce-result-count {
    color: var(--fc-gray-500);
    font-size: 0.9rem;
}

.woocommerce-page .woocommerce-ordering select {
    padding: 0.6rem 2rem 0.6rem 1rem;
    border: 2px solid var(--fc-gray-200);
    border-radius: var(--fc-radius-sm);
    font-family: var(--fc-font-body);
    font-size: 0.9rem;
    background: var(--fc-white);
    cursor: pointer;
    transition: var(--fc-transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.woocommerce-page .woocommerce-ordering select:focus {
    border-color: var(--fc-green-400);
}

/* Shop Sidebar */
.fc-shop-sidebar .widget {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--fc-gray-100);
}

.fc-shop-sidebar .widget-title {
    font-family: var(--fc-font-display);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--fc-green-100);
}

.fc-shop-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fc-shop-sidebar .widget li {
    margin-bottom: 0.5rem;
}

.fc-shop-sidebar .widget a {
    color: var(--fc-gray-600);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-radius: var(--fc-radius-sm);
    transition: var(--fc-transition);
}

.fc-shop-sidebar .widget a:hover {
    color: var(--fc-green-600);
    padding-left: 8px;
}

.fc-shop-sidebar .widget .count {
    background: var(--fc-gray-100);
    padding: 0.1rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--fc-gray-500);
}

/* Price Filter */
.woocommerce .widget_price_filter .ui-slider {
    background: var(--fc-gray-200);
    border: none;
    height: 6px;
    border-radius: 3px;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background: var(--fc-green-500);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background: var(--fc-white);
    border: 3px solid var(--fc-green-500);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    top: -7px;
    cursor: pointer;
    outline: none;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
    background: var(--fc-green-600);
    color: var(--fc-white);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    border: none;
    font-family: var(--fc-font-body);
    font-weight: 600;
    cursor: pointer;
}

/* =========================================
   WOOCOMMERCE - SINGLE PRODUCT
   ========================================= */
.woocommerce div.product {
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: var(--fc-shadow-sm);
}

.woocommerce div.product div.images {
    border-radius: var(--fc-radius);
    overflow: hidden;
}

.woocommerce div.product div.images img {
    border-radius: var(--fc-radius);
}

.woocommerce div.product .product_title {
    font-family: var(--fc-font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.woocommerce div.product .price {
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    color: var(--fc-green-700);
    margin-bottom: 1rem;
}

.woocommerce div.product .price del {
    color: var(--fc-gray-400);
    font-size: 1.1rem;
}

.woocommerce div.product .price ins {
    text-decoration: none;
    color: var(--fc-orange-600);
}

.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 1rem;
}

.woocommerce div.product .star-rating {
    color: var(--fc-orange-400);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--fc-gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--fc-gray-100);
}

/* Quantity Input */
.woocommerce .quantity .qty {
    width: 80px;
    padding: 0.6rem;
    border: 2px solid var(--fc-gray-200);
    border-radius: var(--fc-radius-sm);
    font-family: var(--fc-font-body);
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: var(--fc-transition);
}

.woocommerce .quantity .qty:focus {
    border-color: var(--fc-green-400);
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--fc-gray-100);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--fc-gray-500);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--fc-transition);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--fc-green-700);
    border-bottom-color: var(--fc-green-500);
}

.woocommerce div.product .woocommerce-tabs .panel {
    color: var(--fc-gray-600);
    line-height: 1.8;
}

/* Related Products */
.woocommerce div.product .related.products h2,
.woocommerce div.product .upsells.products h2 {
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* =========================================
   WOOCOMMERCE - CART
   ========================================= */
.woocommerce-cart .woocommerce {
    margin-top: 2rem;
}

.woocommerce table.shop_table {
    border: none;
    border-radius: var(--fc-radius);
    overflow: hidden;
    background: var(--fc-white);
    box-shadow: var(--fc-shadow-sm);
}

.woocommerce table.shop_table th {
    background: var(--fc-green-50);
    color: var(--fc-gray-700);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.25rem;
    border: none;
}

.woocommerce table.shop_table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--fc-gray-100);
    vertical-align: middle;
}

.woocommerce table.shop_table td.product-name a {
    font-family: var(--fc-font-display);
    font-size: 1.05rem;
    color: var(--fc-gray-800);
}

.woocommerce table.shop_table td.product-thumbnail img {
    border-radius: var(--fc-radius-sm);
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.woocommerce table.shop_table td.product-remove a {
    color: var(--fc-gray-400) !important;
    font-size: 1.25rem;
}

.woocommerce table.shop_table td.product-remove a:hover {
    color: #e53e3e !important;
}

/* Cart Totals */
.woocommerce .cart_totals {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 2rem;
    box-shadow: var(--fc-shadow-sm);
}

.woocommerce .cart_totals h2 {
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.woocommerce .cart_totals table {
    border: none;
}

.woocommerce .cart_totals table th {
    padding: 0.75rem 0;
    font-weight: 600;
    color: var(--fc-gray-600);
    border-top: 1px solid var(--fc-gray-100);
}

.woocommerce .cart_totals table td {
    padding: 0.75rem 0;
    text-align: right;
    border-top: 1px solid var(--fc-gray-100);
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fc-gray-900);
}

.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button {
    display: block;
    background: var(--fc-green-600);
    color: var(--fc-white);
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1.5rem;
    transition: var(--fc-transition-bounce);
}

.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--fc-green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

/* Coupon */
.woocommerce .coupon input {
    padding: 0.6rem 1rem;
    border: 2px solid var(--fc-gray-200);
    border-radius: 50px;
    font-family: var(--fc-font-body);
    outline: none;
    transition: var(--fc-transition);
}

.woocommerce .coupon input:focus {
    border-color: var(--fc-green-400);
}

.woocommerce .coupon button,
.woocommerce button[name="update_cart"] {
    background: var(--fc-green-600);
    color: var(--fc-white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--fc-font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--fc-transition);
}

.woocommerce .coupon button:hover,
.woocommerce button[name="update_cart"]:hover {
    background: var(--fc-green-700);
}

/* =========================================
   WOOCOMMERCE - CHECKOUT
   ========================================= */
.woocommerce-checkout .woocommerce {
    margin-top: 2rem;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    border: 2px solid var(--fc-green-100);
    border-radius: var(--fc-radius);
    padding: 1.5rem;
    background: var(--fc-white);
}

.woocommerce-checkout #customer_details {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 2rem;
    box-shadow: var(--fc-shadow-sm);
}

.woocommerce-checkout h3 {
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--fc-green-100);
}

.woocommerce form .form-row label {
    font-weight: 600;
    color: var(--fc-gray-700);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--fc-gray-200);
    border-radius: var(--fc-radius-sm);
    font-family: var(--fc-font-body);
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    transition: var(--fc-transition);
    background: var(--fc-white);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--fc-green-400);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

/* Order Review */
.woocommerce-checkout #order_review_heading {
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout #order_review {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 2rem;
    box-shadow: var(--fc-shadow-sm);
}

/* Place Order */
.woocommerce #place_order {
    background: var(--fc-green-600);
    color: var(--fc-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--fc-transition-bounce);
    width: 100%;
    margin-top: 1rem;
}

.woocommerce #place_order:hover {
    background: var(--fc-green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

/* =========================================
   WOOCOMMERCE - MY ACCOUNT
   ========================================= */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 1.5rem;
    box-shadow: var(--fc-shadow-sm);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 0.25rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--fc-radius-sm);
    color: var(--fc-gray-600);
    font-weight: 500;
    transition: var(--fc-transition);
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: var(--fc-green-50);
    color: var(--fc-green-700);
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 2rem;
    box-shadow: var(--fc-shadow-sm);
}

/* =========================================
   WooCommerce Messages & Notices
   ========================================= */
.woocommerce-message {
    background: var(--fc-green-50);
    border-top-color: var(--fc-green-500);
    border-radius: var(--fc-radius-sm);
    padding: 1rem 1.5rem;
    color: var(--fc-green-800);
}

.woocommerce-info {
    background: var(--fc-green-50);
    border-top-color: var(--fc-green-400);
    border-radius: var(--fc-radius-sm);
    padding: 1rem 1.5rem;
}

.woocommerce-error {
    background: #fef2f2;
    border-top-color: #ef4444;
    border-radius: var(--fc-radius-sm);
    padding: 1rem 1.5rem;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    color: var(--fc-green-600);
}

/* =========================================
   PAGINATION
   ========================================= */
.woocommerce nav.woocommerce-pagination {
    margin-top: 3rem;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
    display: inline-flex;
    gap: 0.5rem;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    color: var(--fc-gray-600);
    border: 2px solid var(--fc-gray-200);
    transition: var(--fc-transition);
    background: var(--fc-white);
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--fc-green-400);
    color: var(--fc-green-600);
    background: var(--fc-green-50);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--fc-green-600);
    color: var(--fc-white);
    border-color: var(--fc-green-600);
}

/* =========================================
   BLOG / POSTS
   ========================================= */
.fc-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.fc-post-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    overflow: hidden;
    border: 1px solid var(--fc-gray-100);
    transition: var(--fc-transition);
}

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

.fc-post-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.fc-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--fc-transition);
}

.fc-post-card:hover .fc-post-card__image img {
    transform: scale(1.05);
}

.fc-post-card__body {
    padding: 1.5rem;
}

.fc-post-card__date {
    font-size: 0.8rem;
    color: var(--fc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.fc-post-card__title {
    font-family: var(--fc-font-display);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.fc-post-card__title a {
    color: var(--fc-gray-800);
}

.fc-post-card__title a:hover {
    color: var(--fc-green-600);
}

.fc-post-card__excerpt {
    color: var(--fc-gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Single Post */
.fc-single-post {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

.fc-single-post__header {
    margin-bottom: 2rem;
}

.fc-single-post__content {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 2.5rem;
    box-shadow: var(--fc-shadow-sm);
}

.fc-single-post__content p {
    color: var(--fc-gray-600);
    line-height: 1.9;
    font-size: 1.05rem;
}

.fc-single-post__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.fc-single-post__content img {
    border-radius: var(--fc-radius);
    margin: 1.5rem 0;
}

/* Comments */
.fc-comments {
    margin-top: 3rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--fc-gray-100);
}

/* =========================================
   SIDEBAR / WIDGETS
   ========================================= */
.fc-sidebar .widget {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--fc-gray-100);
}

.fc-sidebar .widget-title {
    font-family: var(--fc-font-display);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--fc-green-100);
}

/* =========================================
   404 PAGE
   ========================================= */
.fc-404 {
    text-align: center;
    padding: 6rem 0;
}

.fc-404__icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.fc-404__title {
    margin-bottom: 1rem;
}

.fc-404__text {
    color: var(--fc-gray-500);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .fc-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .fc-hero__text {
        margin-left: auto;
        margin-right: auto;
    }

    .fc-hero__actions {
        justify-content: center;
    }

    .fc-hero__stats {
        justify-content: center;
    }

    .fc-hero__image {
        max-width: 500px;
        margin: 0 auto;
    }

    .fc-hero__float-card {
        display: none;
    }

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

    .fc-banner {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .fc-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .fc-nav {
        display: none;
    }

    .fc-search-bar {
        display: none;
    }

    .fc-menu-toggle {
        display: flex;
    }

    /* Mobile Nav */
    .fc-nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--fc-white);
        z-index: 9999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .fc-nav.active .fc-nav__list {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .fc-nav.active .fc-nav__link {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }

    .fc-nav.active .fc-nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
    }
}

@media (max-width: 768px) {
    :root {
        --fc-gap: 1.25rem;
    }

    .fc-section {
        padding: 3rem 0;
    }

    .fc-trust-strip__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

    .fc-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fc-footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .fc-newsletter__form {
        flex-direction: column;
    }

    .fc-blog__grid {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .fc-hero__stats {
        gap: 1.5rem;
    }

    .fc-banner {
        padding: 2rem 1.5rem;
    }

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

/* =========================================
   ANIMATIONS ON SCROLL
   ========================================= */
.fc-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fc-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   ACCESSIBILITY
   ========================================= */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

:focus-visible {
    outline: 3px solid var(--fc-green-400);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 100000;
}

.skip-link:focus {
    display: block;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    padding: 15px 23px;
    background: var(--fc-green-600);
    color: var(--fc-white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 100001;
}
