/* ===================================
   Garden Craft - Fresh Garden Light Theme
   Professional green & orange color scheme
   =================================== */

/* === 1. BASE STYLES & TYPOGRAPHY === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-darker);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: var(--text);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(1.75rem, 6vw, 6rem);
    letter-spacing: 0.04em;
}
h2 { font-size: clamp(1.35rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.15rem, 3.5vw, 1.75rem); }
h4 { font-size: clamp(1.05rem, 3vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1.25rem;
    font-weight: 400;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

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

::selection {
    background: var(--accent);
    color: var(--bg-dark);
}

/* === 2. ANIMATIONS & KEYFRAMES === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--border); }
    50% { border-color: var(--accent); }
}

.fade-in-up {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-fill-mode: both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === 3. LAYOUT CONTAINERS === */
.gc-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gc-container-wide {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
}

.gc-container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === 4. NAVIGATION === */
.gc-navbar {
    background: linear-gradient(180deg, rgba(46, 125, 74, 0.98) 0%, rgba(46, 125, 74, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(46, 125, 74, 0.15);
}

.gc-navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.gc-logo {
    display: flex;
    align-items: center;
}

.gc-logo-img {
    height: 44px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
}

.gc-nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.gc-nav-pills {
    display: flex;
    align-items: center;
    gap: 40px;
}

.gc-nav-pill {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color 0.25s ease;
}

.gc-nav-pill:hover,
.gc-nav-pill.active {
    color: #ffffff;
}

.gc-nav-pill::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.gc-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #ffffff;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gc-nav-cta:hover {
    background: var(--accent-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 120, 48, 0.3);
}

.gc-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.gc-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* === 5. BUTTONS === */
.gc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.gc-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.gc-btn:hover::before {
    left: 100%;
}

.gc-btn-primary {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.gc-btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px -8px rgba(224, 120, 48, 0.4);
}

.gc-btn-green {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.gc-btn-green:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px -8px rgba(46, 125, 74, 0.4);
}

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

.gc-btn-outline:hover {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--accent);
}

/* White outline buttons for use on dark/green backgrounds */
.gc-btn-outline-white {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.gc-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.gc-btn-outline-green {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.gc-btn-outline-green:hover {
    background: var(--primary);
    color: #ffffff;
}

/* === 6. HERO SECTION === */
.gc-hero-split {
    background: linear-gradient(165deg, #2E7D4A 0%, #247A3A 40%, #1F5533 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.gc-hero-split::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.gc-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 32px;
}

.gc-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 6vw, 5.5rem);
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gc-hero-title-accent {
    color: var(--accent-light);
    display: block;
}

.gc-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 520px;
}

.gc-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.gc-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.gc-hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.gc-hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: rgba(0, 0, 0, 0.2);
    z-index: -2;
}

.gc-hero-img-main {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.gc-product-label {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background: var(--surface);
    padding: 24px;
    border: 1px solid var(--border);
}

.gc-product-label-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.gc-product-label-header svg {
    color: var(--accent);
    flex-shrink: 0;
}

.gc-product-label-header strong {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gc-product-label-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* === 7. SECTIONS === */
.gc-section {
    padding: 120px 0;
    position: relative;
}

.gc-section-light {
    background: var(--bg-darker);
}

.gc-section-gray {
    background: var(--surface);
}

.gc-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.gc-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text);
    margin-bottom: 20px;
}

.gc-section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === 7a. PAGE HERO & CONTENT (default pages) === */
.gc-page-hero {
    background: linear-gradient(165deg, #2E7D4A 0%, #247A3A 40%, #1F5533 100%);
    padding: 140px 0 60px;
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.gc-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.gc-page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
}

.gc-page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

.gc-page-content {
    background: var(--bg-darker);
    padding: 80px 0 120px;
}

/* Wide content for SEO text */
.gc-content-wide {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    column-count: 2;
    column-gap: 48px;
}

.gc-content-wide h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 40px 0 16px;
    column-span: all;
}

.gc-content-wide h2:first-child {
    margin-top: 0;
}

.gc-content-wide h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin: 32px 0 12px;
}

.gc-content-wide p {
    margin-bottom: 16px;
    break-inside: avoid;
}

.gc-content-wide ul,
.gc-content-wide ol {
    margin: 16px 0;
    padding-left: 24px;
    break-inside: avoid;
}

.gc-content-wide li {
    margin-bottom: 6px;
}

.gc-content-wide a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gc-content-wide a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .gc-content-wide {
        column-count: 1;
    }

    .gc-page-hero {
        padding: 120px 0 50px;
        margin-top: 70px;
    }

    .gc-page-content {
        padding: 60px 0 80px;
    }
}

/* === 7b. PRODUCTS PAGE BENTO GRID === */
.gc-products-hero {
    background: linear-gradient(165deg, #2E7D4A 0%, #247A3A 40%, #1F5533 100%);
    padding: 140px 0 80px;
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.gc-products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.gc-products-hero-content {
    position: relative;
    z-index: 2;
}

.gc-products-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gc-products-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.gc-categories-section {
    background: var(--bg-darker);
    padding: 80px 0 120px;
}

/* Bento Grid - 5 items layout */
.gc-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gc-bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid var(--border);
}

/* Featured card - spans 2 columns */
.gc-bento-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 660px;
}

.gc-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -16px rgba(46, 125, 74, 0.2);
    border-color: var(--primary);
}

.gc-bento-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gc-bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gc-bento-card:hover .gc-bento-image img {
    transform: scale(1.08);
}

.gc-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 46, 34, 0.95) 0%,
        rgba(26, 46, 34, 0.7) 40%,
        rgba(26, 46, 34, 0.3) 70%,
        transparent 100%
    );
    z-index: 2;
}

.gc-bento-content {
    position: relative;
    z-index: 3;
    padding: 32px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gc-bento-featured .gc-bento-content {
    padding: 48px;
    gap: 16px;
}

.gc-bento-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(224, 120, 48, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    width: fit-content;
}

.gc-bento-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.gc-bento-featured .gc-bento-title {
    font-size: 2rem;
}

.gc-bento-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gc-bento-featured .gc-bento-desc {
    font-size: 16px;
    -webkit-line-clamp: 3;
}

.gc-bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.gc-bento-link svg {
    transition: transform 0.3s ease;
}

.gc-bento-card:hover .gc-bento-link {
    color: var(--accent);
}

.gc-bento-card:hover .gc-bento-link svg {
    transform: translateX(4px);
}

/* Responsive bento */
@media (max-width: 1024px) {
    .gc-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gc-bento-featured {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }

    .gc-bento-card {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .gc-bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gc-bento-featured {
        grid-column: span 1;
        min-height: 280px;
    }

    .gc-bento-card {
        min-height: 200px;
    }

    .gc-bento-content {
        padding: 16px;
    }

    .gc-bento-featured .gc-bento-content {
        padding: 24px;
    }

    .gc-bento-featured .gc-bento-title {
        font-size: 1.25rem;
    }

    .gc-bento-title {
        font-size: 1rem;
    }

    .gc-products-hero {
        padding: 100px 0 50px;
        margin-top: 70px;
    }
}

/* === 7c. CATEGORY PAGE (BLOG) === */
.gc-category-hero {
    background: linear-gradient(165deg, #2E7D4A 0%, #247A3A 40%, #1F5533 100%);
    padding: 140px 0 60px;
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.gc-category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.gc-category-hero-content {
    position: relative;
    z-index: 2;
}

.gc-category-hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 30px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gc-category-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gc-category-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.gc-category-products {
    background: var(--bg-darker);
    padding: 60px 0 100px;
}

/* Flexible 3-column product grid */
.gc-product-grid-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Product Card V2 - cleaner design */
.gc-product-card-v2 {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.gc-product-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(46, 125, 74, 0.15);
    border-color: var(--primary);
}

.gc-product-card-image {
    position: relative;
    width: 100%;
    padding-top: 85%;
    background: #f8faf9;
    overflow: hidden;
}

.gc-product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gc-product-card-v2:hover .gc-product-card-image img {
    transform: scale(1.05);
}

.gc-product-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
}

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

.gc-product-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.3;
}

.gc-product-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 67px;
}

.gc-product-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: auto;
    transition: all 0.3s ease;
}

.gc-product-card-action svg {
    transition: transform 0.3s ease;
}

.gc-product-card-v2:hover .gc-product-card-action {
    color: var(--accent);
}

.gc-product-card-v2:hover .gc-product-card-action svg {
    transform: translateX(4px);
}

/* Category content section */
.gc-category-content {
    background: var(--surface);
    padding: 80px 0 100px;
}

.gc-content-prose {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.gc-content-prose h2 {
    font-size: 1.75rem;
    color: var(--text);
    margin: 48px 0 20px;
}

.gc-content-prose h2:first-child {
    margin-top: 0;
}

.gc-content-prose h3 {
    font-size: 1.35rem;
    color: var(--text);
    margin: 36px 0 16px;
}

.gc-content-prose p {
    margin-bottom: 20px;
}

.gc-content-prose ul,
.gc-content-prose ol {
    margin: 20px 0;
    padding-left: 24px;
}

.gc-content-prose li {
    margin-bottom: 8px;
}

.gc-content-prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gc-content-prose a:hover {
    color: var(--accent);
}

/* Responsive category page */
@media (max-width: 1024px) {
    .gc-product-grid-flex {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .gc-product-grid-flex {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gc-category-hero {
        padding: 90px 0 32px;
        margin-top: 70px;
    }

    .gc-category-hero-title {
        font-size: 1.5rem;
    }

    .gc-category-products {
        padding: 32px 0 48px;
    }

    .gc-product-card-content {
        padding: 16px;
    }

    .gc-product-card-title {
        font-size: 1rem;
    }
}

/* === 8. CARDS & CATEGORY CARDS === */
.gc-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gc-category-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 48px 32px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gc-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gc-category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(196, 105, 61, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gc-category-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.15);
}

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

.gc-category-card:hover::after {
    opacity: 1;
}

.gc-category-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gc-category-icon svg {
    width: 72px;
    height: 72px;
    color: var(--primary-light);
}

.gc-category-card:hover .gc-category-icon {
    transform: scale(1.15);
}

.gc-category-card:hover .gc-category-icon svg {
    color: var(--accent);
}

.gc-category-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gc-category-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.gc-category-count {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Generic cards */
.gc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.gc-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.12);
}

.gc-card-header {
    margin-bottom: 20px;
}

.gc-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gc-card-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* === HOME PAGE CATEGORIES === */
.gc-home-categories {
    background: var(--surface);
    padding: 80px 0 100px;
}

.gc-home-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    margin-top: 48px;
}

.gc-home-category-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    grid-column: span 2;
}

.gc-home-category-large {
    grid-column: span 3;
}

.gc-home-category-bg {
    position: absolute;
    inset: 0;
    background: var(--primary-dark);
}

.gc-home-category-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gc-home-category-card:hover .gc-home-category-bg img {
    transform: scale(1.08);
}

.gc-home-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    transition: background 0.4s ease;
}

.gc-home-category-card:hover .gc-home-category-overlay {
    background: linear-gradient(180deg, rgba(46,125,74,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.gc-home-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.gc-home-category-count {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gc-home-category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
}

.gc-home-category-large .gc-home-category-title {
    font-size: 1.75rem;
}

.gc-home-category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.gc-home-category-link svg {
    transition: transform 0.3s ease;
}

.gc-home-category-card:hover .gc-home-category-link {
    color: #ffffff;
}

.gc-home-category-card:hover .gc-home-category-link svg {
    transform: translateX(4px);
}

/* === HOME PAGE ABOUT === */
.gc-home-about {
    background: var(--bg-darker);
    padding: 60px 0 70px;
}

.gc-home-about-inner {
    max-width: 720px;
}

.gc-home-about-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gc-home-about-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.gc-home-about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 8px;
    transition: color 0.25s ease;
}

.gc-home-about-link:hover {
    color: var(--accent);
}

.gc-home-about-link svg {
    transition: transform 0.3s ease;
}

.gc-home-about-link:hover svg {
    transform: translateX(4px);
}

/* === HOME PAGE STATS === */
.gc-home-stats {
    background: linear-gradient(165deg, #2E7D4A 0%, #247A3A 40%, #1F5533 100%);
    padding: 100px 0;
    position: relative;
}

.gc-home-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.gc-home-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gc-home-stats-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gc-home-stats-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0 0 32px;
}

.gc-home-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gc-home-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.gc-home-stat:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.gc-home-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.gc-home-stat-label {
    font-family: var(--font-heading);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Responsive home page */
@media (max-width: 1024px) {
    .gc-home-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gc-home-category-card,
    .gc-home-category-large {
        grid-column: span 1;
        min-height: 240px;
    }

    .gc-home-stats-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .gc-home-stats-content {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .gc-home-categories {
        padding: 48px 0 60px;
    }

    .gc-home-categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gc-home-category-card {
        min-height: 160px;
    }

    .gc-home-category-content {
        padding: 20px;
    }

    .gc-home-category-title {
        font-size: 1.15rem;
    }

    .gc-home-stats {
        padding: 48px 0;
    }

    .gc-home-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gc-home-stat {
        padding: 20px;
    }

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

/* === 9. STATS SECTION === */
.gc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--surface);
    border: 1px solid var(--border);
}

.gc-stat-item {
    padding: 48px 32px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
}

.gc-stat-item:last-child {
    border-right: none;
}

.gc-stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1;
}

.gc-stat-label {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* === 10. GRID SYSTEM === */
.gc-grid {
    display: grid;
    gap: 30px;
}

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

/* === 11. PRODUCTS === */
.gc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gc-product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.gc-product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.15);
}

.gc-product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--bg-darker);
    overflow: hidden;
}

.gc-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gc-product-body {
    padding: 24px;
}

.gc-product-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
}

.gc-product-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.gc-product-category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(196, 105, 61, 0.15);
    padding: 6px 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gc-product-footer {
    padding: 0 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gc-product-link {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gc-product-link:hover {
    color: var(--accent-light);
}

/* === 12. PRODUCT PAGE V2 === */
.gc-product-hero {
    background: linear-gradient(165deg, #2E7D4A 0%, #247A3A 40%, #1F5533 100%);
    padding: 120px 0 40px;
    margin-top: 80px;
    position: relative;
}

.gc-product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.gc-product-hero-inner {
    position: relative;
    z-index: 2;
}

.gc-product-hero-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: color 0.25s ease;
}

.gc-product-hero-category:hover {
    color: #ffffff;
}

.gc-product-hero-category svg {
    opacity: 0.6;
}

.gc-product-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.2;
}

.gc-product-page {
    background: var(--bg-darker);
    padding: 60px 0 60px;
}

.gc-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Gallery V2 */
.gc-product-gallery-v2 {
    position: sticky;
    top: 100px;
}

.gc-gallery-main {
    position: relative;
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.gc-gallery-main img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.gc-gallery-count {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(26, 46, 34, 0.9);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 6px;
}

.gc-gallery-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gc-gallery-thumb {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--surface);
}

.gc-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gc-gallery-thumb:hover {
    border-color: var(--primary-light);
}

.gc-gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(46, 125, 74, 0.2);
}

.gc-gallery-placeholder {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

/* Product Details V2 */
.gc-product-details {
    padding: 16px 0;
}

/* Product Details V2 */

.gc-product-lead {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.gc-product-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.gc-product-content p {
    margin-bottom: 16px;
}

.gc-product-content p:last-child {
    margin-bottom: 0;
}

.gc-product-actions-v2 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.gc-btn-lg {
    padding: 18px 32px;
    font-size: 13px;
}

/* Responsive product page */
@media (max-width: 1024px) {
    .gc-product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gc-product-gallery-v2 {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .gc-product-hero {
        padding: 90px 0 24px;
        margin-top: 70px;
    }

    .gc-product-hero-title {
        font-size: 1.25rem;
    }

    .gc-product-page {
        padding: 32px 0 48px;
    }

    .gc-product-grid {
        gap: 24px;
    }

    .gc-gallery-thumbs {
        gap: 8px;
    }

    .gc-gallery-thumb {
        width: 64px;
        height: 64px;
    }

    .gc-product-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .gc-product-actions-v2 {
        flex-direction: column;
    }

    .gc-product-actions-v2 .gc-btn {
        width: 100%;
        justify-content: center;
    }

    .gc-btn-lg {
        padding: 14px 24px;
        font-size: 12px;
    }
}

/* Legacy product styles (keeping for compatibility) */
.gc-product-single {
    padding: 60px 0;
    margin-top: 80px;
}

.gc-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.gc-product-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

.gc-product-main-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.gc-product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gc-product-thumb {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
    background: var(--surface);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.25s ease;
}

.gc-product-thumb:hover,
.gc-product-thumb.active {
    border-color: var(--accent);
}

.gc-product-info {
    padding: 20px 0;
}

.gc-product-info h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

.gc-product-meta {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.gc-product-meta-item {
    margin-bottom: 12px;
}

.gc-product-meta-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-right: 8px;
}

.gc-product-meta-value {
    font-size: 15px;
    color: var(--text);
}

.gc-product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.gc-product-specs {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 40px;
}

.gc-product-specs h3 {
    font-size: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.gc-product-specs dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 24px;
}

.gc-product-specs dt {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gc-product-specs dd {
    font-size: 14px;
    color: var(--text);
    margin: 0;
}

.gc-product-actions {
    display: flex;
    gap: 16px;
}

/* === 13. FOOTER === */
.gc-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 48px;
    margin-top: 120px;
    border-top: none;
}

.gc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.gc-footer-col h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gc-footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gc-footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(1.2);
}

.gc-footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 300px;
}

.gc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: block;
    padding: 6px 0;
    transition: all 0.25s ease;
}

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

.gc-footer-company p,
.gc-footer-company-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.gc-footer-company-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.25s ease;
}

.gc-footer-company-info a:hover {
    color: var(--accent);
}

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

.gc-footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.gc-footer-legal {
    display: flex;
    gap: 32px;
}

.gc-footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.gc-footer-legal a:hover {
    color: var(--accent);
}

/* === 14. FORMS === */
.gc-form {
    max-width: 640px;
    margin: 0 auto;
}

.gc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gc-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gc-form-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
}

.gc-form-required {
    color: var(--accent);
    margin-left: 2px;
}

.gc-form-input,
.gc-form-textarea,
.gc-form-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.gc-form-input:focus,
.gc-form-textarea:focus,
.gc-form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 105, 61, 0.15);
}

.gc-form-input::placeholder,
.gc-form-textarea::placeholder {
    color: var(--text-muted);
}

.gc-form-textarea {
    min-height: 160px;
    resize: vertical;
}

.gc-form-submit {
    margin-top: 16px;
}

.gc-form-success {
    background: rgba(61, 107, 79, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary-light);
    padding: 20px 24px;
    margin-bottom: 24px;
    font-weight: 500;
}

.gc-form-errors {
    background: rgba(196, 105, 61, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent-light);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.gc-form-field-error {
    display: block;
    color: var(--accent);
    font-size: 13px;
    margin-top: 6px;
}

/* Contact Page */
.gc-contact-hero {
    background: linear-gradient(165deg, #2E7D4A 0%, #247A3A 40%, #1F5533 100%);
    padding: 80px 0 60px;
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.gc-contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.gc-contact-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    position: relative;
    color: #ffffff;
}

.gc-contact-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

.gc-contact-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.gc-contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.gc-contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 48px;
}

.gc-contact-form-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.gc-contact-form-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.gc-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gc-contact-info-card,
.gc-contact-hours-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 32px;
}

.gc-contact-info-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gc-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.gc-contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.gc-contact-info-item:first-of-type {
    padding-top: 0;
}

.gc-contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 105, 61, 0.15);
    flex-shrink: 0;
}

.gc-contact-info-icon svg {
    color: var(--accent);
}

.gc-contact-info-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.gc-contact-info-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

a.gc-contact-info-value:hover {
    color: var(--accent);
}

.gc-contact-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.gc-contact-hours-time {
    font-weight: 600;
    color: var(--accent);
}

.gc-contact-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--primary);
    padding: 20px;
}

.gc-contact-badge svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.gc-contact-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gc-contact-badge span {
    font-size: 13px;
    color: var(--text-muted);
}

/* === 15. UTILITIES === */
.gc-text-center { text-align: center; }
.gc-text-left { text-align: left; }
.gc-text-right { text-align: right; }

.gc-mt-1 { margin-top: 0.5rem; }
.gc-mt-2 { margin-top: 1rem; }
.gc-mt-3 { margin-top: 1.5rem; }
.gc-mt-4 { margin-top: 2rem; }
.gc-mt-5 { margin-top: 3rem; }

.gc-mb-1 { margin-bottom: 0.5rem; }
.gc-mb-2 { margin-bottom: 1rem; }
.gc-mb-3 { margin-bottom: 1.5rem; }
.gc-mb-4 { margin-bottom: 2rem; }
.gc-mb-5 { margin-bottom: 3rem; }

/* === 16. SCROLL TO TOP === */
.gc-scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.gc-scroll-top:hover {
    background: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(196, 105, 61, 0.5);
}

.gc-scroll-top.active {
    display: flex;
}

/* === 17. GALLERY MODAL === */
.gc-gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(26, 46, 34, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gc-gallery-modal.active {
    display: flex;
}

.gc-gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.gc-gallery-modal img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.gc-gallery-close,
.gc-gallery-prev,
.gc-gallery-next {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 12px 18px;
    transition: all 0.25s ease;
}

.gc-gallery-close:hover,
.gc-gallery-prev:hover,
.gc-gallery-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}

.gc-gallery-close { top: 20px; right: 20px; }
.gc-gallery-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.gc-gallery-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* Gallery buttons mobile touch targets */
@media (max-width: 768px) {
    .gc-gallery-close,
    .gc-gallery-prev,
    .gc-gallery-next {
        padding: 16px 20px;
        min-width: 48px;
        min-height: 48px;
    }
}

/* === 18. RESPONSIVE === */
@media (max-width: 1200px) {
    .gc-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 1024px) {
    .gc-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gc-hero-visual {
        order: -1;
    }

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

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

    .gc-stat-item:nth-child(2) {
        border-right: none;
    }

    .gc-stat-item:nth-child(1),
    .gc-stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .gc-product-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .gc-product-gallery {
        position: relative;
        top: auto;
    }

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

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

/* Mobile CTA button visibility */
.gc-nav-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .gc-navbar-wrapper {
        height: 70px;
    }

    .gc-logo-img {
        height: 40px; /* Increased from 36px */
    }

    .gc-nav-pills {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(46, 125, 74, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
        display: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .gc-nav-pills.active {
        display: flex;
    }

    /* Mobile menu touch targets */
    .gc-nav-pills .gc-nav-pill {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Hide desktop CTA, show mobile CTA */
    .gc-nav-cta-desktop {
        display: none;
    }

    .gc-nav-cta-mobile {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
        padding: 14px 24px;
    }

    .gc-nav-toggle {
        display: block;
        min-width: 44px;
        min-height: 44px;
        padding: 12px;
    }

    .gc-hero-split {
        padding: 80px 0 50px;
        margin-top: 70px;
        min-height: auto;
    }

    .gc-hero-grid {
        gap: 32px;
    }

    .gc-hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .gc-hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .gc-hero-badge {
        padding: 8px 14px;
        font-size: 10px;
        margin-bottom: 20px;
    }

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

    .gc-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; /* Increased from 16px */
    }

    .gc-stats-grid {
        grid-template-columns: 1fr;
    }

    .gc-stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .gc-stat-item:last-child {
        border-bottom: none;
    }

    .gc-section {
        padding: 60px 0;
    }

    .gc-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gc-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .gc-footer-legal {
        flex-direction: column;
        gap: 12px;
    }

    .gc-contact-form-card {
        padding: 24px;
    }

    .gc-products-hero {
        padding: 100px 0 50px;
    }

    .gc-page-hero {
        padding: 100px 0 40px;
    }

    .gc-grid-2,
    .gc-grid-3,
    .gc-grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gc-products-grid {
        grid-template-columns: 1fr;
    }

    .gc-hero-split {
        padding: 70px 0 40px;
    }

    .gc-hero-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .gc-hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .gc-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .gc-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 12px;
    }

    .gc-section {
        padding: 48px 0;
    }

    .gc-section-header {
        margin-bottom: 36px;
    }

    .gc-stat-item {
        padding: 24px 16px;
    }

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

    .gc-product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .gc-gallery-thumb {
        width: 60px;
        height: 60px;
    }

    .gc-gallery-thumbs {
        gap: 8px;
    }

    .gc-products-hero {
        padding: 80px 0 40px;
    }

    .gc-page-hero {
        padding: 80px 0 32px;
    }

    .gc-footer-grid {
        gap: 24px;
    }

    .gc-contact-form-card {
        padding: 20px;
    }

    .gc-container,
    .gc-container-narrow,
    .gc-container-wide {
        padding: 0 12px;
    }
}
