/*
Theme Name: Flavor Coffee
Theme URI: https://example.com/flavor-coffee
Author: Custom
Author URI: https://example.com
Description: Premium Coffee Shop Theme for WooCommerce - Modern, elegant design for coffee businesses
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flavor-coffee
Tags: woocommerce, e-commerce, custom-colors, custom-logo, custom-menu, featured-images, full-width-template
WooCommerce: 8.0
*/

/* ========================================
   CSS Variables - Coffee Color Scheme
======================================== */
:root {
    /* Primary Colors */
    --fc-primary: #4A3428;
    --fc-primary-dark: #2D1F17;
    --fc-primary-light: #6B4D3E;

    /* Secondary Colors */
    --fc-secondary: #C4A77D;
    --fc-secondary-dark: #A68B5B;
    --fc-secondary-light: #D4C4A8;

    /* Accent Colors */
    --fc-accent: #D4A574;
    --fc-accent-dark: #B8895A;

    /* Neutral Colors */
    --fc-white: #FFFFFF;
    --fc-cream: #FAF7F2;
    --fc-beige: #F5EFE6;
    --fc-gray-light: #E8E2DA;
    --fc-gray: #8B8680;
    --fc-gray-dark: #5A5652;
    --fc-black: #1A1A1A;

    /* Typography */
    --fc-font-primary: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fc-font-heading: 'Playfair Display', Georgia, serif;
    --fc-font-accent: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --fc-spacing-xs: 0.5rem;
    --fc-spacing-sm: 1rem;
    --fc-spacing-md: 1.5rem;
    --fc-spacing-lg: 2rem;
    --fc-spacing-xl: 3rem;
    --fc-spacing-xxl: 5rem;

    /* Border Radius */
    --fc-radius-sm: 4px;
    --fc-radius-md: 8px;
    --fc-radius-lg: 16px;
    --fc-radius-full: 50%;

    /* Shadows */
    --fc-shadow-sm: 0 2px 4px rgba(74, 52, 40, 0.08);
    --fc-shadow-md: 0 4px 12px rgba(74, 52, 40, 0.12);
    --fc-shadow-lg: 0 8px 24px rgba(74, 52, 40, 0.16);

    /* Transitions */
    --fc-transition: all 0.3s ease;
    --fc-transition-fast: all 0.15s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--fc-font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fc-black);
    background-color: var(--fc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--fc-spacing-sm);
    color: var(--fc-gray-dark);
}

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

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

/* ========================================
   Container & Layout
======================================== */
.fc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--fc-spacing-md);
}

.fc-container-narrow {
    max-width: 1200px;
}

.fc-container-wide {
    max-width: 1600px;
}

.fc-section {
    padding: var(--fc-spacing-xxl) 0;
}

.fc-section-sm {
    padding: var(--fc-spacing-xl) 0;
}

/* ========================================
   Header Styles
======================================== */
.fc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--fc-white);
    transition: var(--fc-transition);
}

.fc-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--fc-shadow-md);
}

/* Top Bar */
.fc-topbar {
    background: var(--fc-primary-dark);
    color: var(--fc-white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.fc-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fc-topbar a {
    color: var(--fc-secondary-light);
}

.fc-topbar a:hover {
    color: var(--fc-white);
}

/* Main Header */
.fc-header-main {
    padding: var(--fc-spacing-md) 0;
    border-bottom: 1px solid var(--fc-gray-light);
}

.fc-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--fc-spacing-lg);
}

/* Logo */
.fc-logo {
    flex-shrink: 0;
}

.fc-logo a {
    display: flex;
    align-items: center;
    gap: var(--fc-spacing-xs);
    font-family: var(--fc-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fc-primary-dark);
}

.fc-logo img {
    max-height: 50px;
    width: auto;
}

.fc-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

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

/* Search Bar */
.fc-search-bar {
    flex: 1;
    max-width: 500px;
}

.fc-search-form {
    display: flex;
    border: 2px solid var(--fc-gray-light);
    border-radius: var(--fc-radius-md);
    overflow: hidden;
    transition: var(--fc-transition);
}

.fc-search-form:focus-within {
    border-color: var(--fc-primary);
}

.fc-search-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 0.9375rem;
    outline: none;
}

.fc-search-form button {
    padding: 12px 20px;
    background: var(--fc-primary);
    border: none;
    color: var(--fc-white);
    cursor: pointer;
    transition: var(--fc-transition);
}

.fc-search-form button:hover {
    background: var(--fc-primary-dark);
}

/* Header Actions */
.fc-header-actions {
    display: flex;
    align-items: center;
    gap: var(--fc-spacing-md);
}

.fc-header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--fc-primary);
    font-size: 0.75rem;
    border-radius: var(--fc-radius-sm);
    transition: var(--fc-transition);
}

.fc-header-action:hover {
    background: var(--fc-beige);
    color: var(--fc-primary-dark);
}

.fc-header-action svg {
    width: 24px;
    height: 24px;
}

.fc-cart-count {
    position: relative;
}

.fc-cart-count .count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--fc-accent);
    color: var(--fc-white);
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: var(--fc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.fc-nav-wrap {
    background: var(--fc-cream);
    border-bottom: 1px solid var(--fc-gray-light);
}

.fc-nav {
    display: flex;
    justify-content: center;
    gap: var(--fc-spacing-xs);
}

.fc-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    font-weight: 500;
    color: var(--fc-primary);
    position: relative;
}

.fc-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--fc-accent);
    transform: translateX(-50%);
    transition: var(--fc-transition);
}

.fc-nav a:hover,
.fc-nav a.active {
    color: var(--fc-accent-dark);
}

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

.fc-nav-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Menu */
.fc-mobile-toggle {
    display: none;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.fc-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fc-primary);
    margin: 5px 0;
    transition: var(--fc-transition);
}

/* ========================================
   Hero Section
======================================== */
.fc-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 140px;
}

.fc-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fc-hero-slide.active {
    opacity: 1;
}

.fc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.fc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(45, 31, 23, 0.85) 0%,
            rgba(74, 52, 40, 0.6) 50%,
            rgba(45, 31, 23, 0.4) 100%);
}

.fc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--fc-white);
    padding: var(--fc-spacing-xl);
}

padding: var(--fc-spacing-xl);
}

/* ========================================
   Portal Section (New)
======================================== */
.fc-portal-section {
    padding: var(--fc-spacing-lg) 0;
    background: var(--fc-white);
}

.fc-portal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    /* Very tight gap for grid look */
    background: var(--fc-gray);
    /* Border color effect */
    border: 1px solid var(--fc-gray);
}

.fc-portal-item {
    background: var(--fc-white);
    padding: var(--fc-spacing-lg) var(--fc-spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
}

.fc-portal-item:hover {
    background: var(--fc-bg-light);
}

.fc-portal-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--fc-spacing-sm);
    color: var(--fc-primary);
}

.fc-portal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--fc-primary);
}

.fc-portal-desc {
    font-size: 0.875rem;
    color: var(--fc-text-light);
    margin-top: 8px;
}

/* ========================================
   Service Bar (New)
======================================== */
.fc-service-bar {
    padding: var(--fc-spacing-lg) 0;
    border-top: 1px solid var(--fc-border);
    background: var(--fc-white);
}

.fc-service-grid {
    display: flex;
    justify-content: space-between;
    gap: var(--fc-spacing-md);
}

.fc-service-item {
    display: flex;
    align-items: center;
    gap: var(--fc-spacing-sm);
    flex: 1;
    justify-content: center;
}

.fc-service-icon {
    width: 48px;
    height: 48px;
    color: var(--fc-primary);
}

.fc-service-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--fc-primary);
}

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


/* Layout Utilities */
.fc-container {
    max-width: var(--fc-container-width);
    margin: 0 auto;
    padding: 0 var(--fc-spacing-md);
}

.fc-section {
    padding: var(--fc-spacing-lg) 0;
}

/* Typography */
.fc-section-title {
    font-size: var(--fc-font-size-h2);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--fc-spacing-md);
    color: var(--fc-primary);
}

.fc-section-subtitle {
    font-size: var(--fc-font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: var(--fc-text-light);
    margin-bottom: var(--fc-spacing-xs);
}

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

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

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

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

.fc-section-subtitle {
    font-family: var(--fc-font-accent);
    font-size: 1rem;
    color: var(--fc-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--fc-spacing-xs);
}

.fc-section-title {
    font-size: 2.5rem;
    color: var(--fc-primary-dark);
}

.fc-section-desc {
    max-width: 600px;
    margin: var(--fc-spacing-sm) auto 0;
    color: var(--fc-gray);
}

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

.fc-category-card {
    position: relative;
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    box-shadow: var(--fc-shadow-sm);
    transition: var(--fc-transition);
}

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

.fc-category-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.fc-category-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--fc-transition);
}

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

.fc-category-content {
    padding: var(--fc-spacing-md);
    text-align: center;
}

.fc-category-name {
    font-size: 1.25rem;
    margin-bottom: var(--fc-spacing-xs);
}

.fc-category-count {
    color: var(--fc-gray);
    font-size: 0.875rem;
}

/* ========================================
   Products Section
======================================== */
.fc-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--fc-spacing-xl);
}

.fc-products-tabs {
    display: flex;
    gap: var(--fc-spacing-sm);
}

.fc-tab-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--fc-gray-light);
    border-radius: var(--fc-radius-sm);
    font-weight: 500;
    color: var(--fc-gray);
    cursor: pointer;
    transition: var(--fc-transition);
}

.fc-tab-btn:hover,
.fc-tab-btn.active {
    border-color: var(--fc-primary);
    color: var(--fc-primary);
}

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

/* Product Card */
.fc-product-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius-md);
    overflow: hidden;
    transition: var(--fc-transition);
}

.fc-product-card:hover {
    box-shadow: var(--fc-shadow-md);
}

.fc-product-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--fc-beige);
}

.fc-product-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--fc-transition);
}

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

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

.fc-badge {
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--fc-radius-sm);
}

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

.fc-badge-sale {
    background: #E53935;
    color: var(--fc-white);
}

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

.fc-product-actions {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: var(--fc-transition);
}

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

.fc-product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--fc-radius-full);
    background: var(--fc-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--fc-shadow-md);
    transition: var(--fc-transition);
}

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

.fc-product-action-btn svg {
    width: 18px;
    height: 18px;
}

.fc-product-content {
    padding: var(--fc-spacing-md);
}

.fc-product-brand {
    font-size: 0.75rem;
    color: var(--fc-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.fc-product-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--fc-spacing-xs);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fc-product-name a {
    color: var(--fc-black);
}

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

.fc-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--fc-spacing-xs);
}

.fc-stars {
    display: flex;
    gap: 2px;
    color: var(--fc-accent);
}

.fc-rating-count {
    font-size: 0.75rem;
    color: var(--fc-gray);
}

.fc-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

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

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

.fc-price-discount {
    font-size: 0.875rem;
    font-weight: 700;
    color: #E53935;
}

/* ========================================
   Banner Section
======================================== */
.fc-banner {
    position: relative;
    padding: var(--fc-spacing-xxl) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fc-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(45, 31, 23, 0.9) 0%,
            rgba(45, 31, 23, 0.6) 50%,
            transparent 100%);
}

.fc-banner-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    color: var(--fc-white);
}

.fc-banner-subtitle {
    font-family: var(--fc-font-accent);
    font-size: 1rem;
    color: var(--fc-secondary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fc-banner-title {
    font-size: 2.5rem;
    color: var(--fc-white);
    margin: var(--fc-spacing-sm) 0;
}

.fc-banner-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--fc-spacing-lg);
}

/* ========================================
   Features Section
======================================== */
.fc-features {
    background: var(--fc-primary-dark);
    color: var(--fc-white);
}

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

.fc-feature {
    text-align: center;
    padding: var(--fc-spacing-lg);
}

.fc-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--fc-spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--fc-radius-full);
}

.fc-feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--fc-secondary);
}

.fc-feature-title {
    font-size: 1.125rem;
    color: var(--fc-white);
    margin-bottom: var(--fc-spacing-xs);
}

.fc-feature-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Story Section
======================================== */
.fc-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fc-spacing-xxl);
    align-items: center;
}

.fc-story-image {
    position: relative;
}

.fc-story-image img {
    width: 100%;
    border-radius: var(--fc-radius-lg);
}

.fc-story-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--fc-accent);
    border-radius: var(--fc-radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--fc-white);
    box-shadow: var(--fc-shadow-lg);
}

.fc-story-badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.fc-story-badge-text {
    font-size: 0.875rem;
}

.fc-story-content {
    padding-left: var(--fc-spacing-lg);
}

/* ========================================
   Instagram Section
======================================== */
.fc-instagram {
    background: var(--fc-beige);
}

.fc-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.fc-instagram-item {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.fc-instagram-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--fc-transition);
}

.fc-instagram-item:hover img {
    transform: scale(1.1);
}

.fc-instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74, 52, 40, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--fc-transition);
}

.fc-instagram-item:hover .fc-instagram-overlay {
    opacity: 1;
}

.fc-instagram-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--fc-white);
}

/* ========================================
   Footer
======================================== */
.fc-footer {
    background: var(--fc-primary-dark);
    color: var(--fc-white);
}

.fc-footer-main {
    padding: var(--fc-spacing-xxl) 0;
}

.fc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--fc-spacing-xl);
}

.fc-footer-brand {
    padding-right: var(--fc-spacing-xl);
}

.fc-footer-logo {
    font-family: var(--fc-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fc-white);
    margin-bottom: var(--fc-spacing-md);
}

.fc-footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: var(--fc-spacing-md);
}

.fc-footer-social {
    display: flex;
    gap: var(--fc-spacing-sm);
}

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

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

.fc-footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fc-white);
    margin-bottom: var(--fc-spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

.fc-footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.fc-footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--fc-secondary);
}

.fc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--fc-spacing-md) 0;
}

.fc-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.fc-payment-icons {
    display: flex;
    gap: var(--fc-spacing-sm);
}

.fc-payment-icons img {
    height: 24px;
    opacity: 0.7;
}

/* ========================================
   WooCommerce Overrides
======================================== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--fc-spacing-lg);
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
    float: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
}

.woocommerce ul.products li.product img {
    margin-bottom: 0;
    border-radius: var(--fc-radius-md) var(--fc-radius-md) 0 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    padding: var(--fc-spacing-sm) var(--fc-spacing-md) 0;
}

.woocommerce ul.products li.product .price {
    padding: 0 var(--fc-spacing-md);
    color: var(--fc-primary-dark);
    font-weight: 600;
}

.woocommerce ul.products li.product .button {
    margin: var(--fc-spacing-sm) var(--fc-spacing-md) var(--fc-spacing-md);
    background: var(--fc-primary);
    border-radius: var(--fc-radius-sm);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--fc-primary-dark);
}

.woocommerce span.onsale {
    background: #E53935;
    font-weight: 600;
}

.woocommerce .star-rating span::before {
    color: var(--fc-accent);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--fc-primary);
    color: var(--fc-white);
    font-weight: 600;
    border-radius: var(--fc-radius-sm);
    padding: 12px 24px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--fc-primary-dark);
    color: var(--fc-white);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background: var(--fc-accent);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: var(--fc-accent-dark);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {

    .fc-category-grid,
    .fc-products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .fc-footer-brand {
        grid-column: span 3;
        padding-right: 0;
        margin-bottom: var(--fc-spacing-lg);
    }
}

@media (max-width: 992px) {
    .fc-hero {
        margin-top: 120px;
    }

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

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

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

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

    .fc-story-badge {
        bottom: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }

    .fc-story-badge-number {
        font-size: 1.75rem;
    }

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

@media (max-width: 768px) {
    .fc-topbar {
        display: none;
    }

    .fc-header-inner {
        flex-wrap: wrap;
    }

    .fc-mobile-toggle {
        display: block;
    }

    .fc-nav-wrap {
        display: none;
    }

    .fc-nav-wrap.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--fc-white);
        z-index: 1001;
        padding-top: 80px;
    }

    .fc-nav {
        flex-direction: column;
        align-items: center;
    }

    .fc-hero {
        margin-top: 80px;
        height: 70vh;
        min-height: 500px;
    }

    .fc-hero-title {
        font-size: 2rem;
    }

    .fc-category-grid,
    .fc-products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--fc-spacing-md);
    }

    .fc-section {
        padding: var(--fc-spacing-xl) 0;
    }

    .fc-section-title {
        font-size: 1.75rem;
    }

    .fc-products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--fc-spacing-md);
    }

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

    .fc-footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    :root {
        font-size: 14px;
    }

    .fc-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--fc-spacing-sm);
    }

    .fc-products-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr 1fr;
        gap: var(--fc-spacing-sm);
    }

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

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

    .fc-footer-brand {
        grid-column: span 1;
    }

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

    .fc-hero-buttons {
        flex-direction: column;
    }

    .fc-btn {
        width: 100%;
    }
}