/*
Theme Name: Modern Furniture
Theme URI: https://www.clickmuebles.com
Author: Antigravity AI
Author URI: https://www.clickmuebles.com
Description: A premium, minimalist furniture theme for showcasing high-end products.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: modern-furniture
*/

/* =========================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================= */
:root {
    /* Colors */
    --primary: #2c3e50;       /* Navy Charcoal */
    --secondary: #f1f2f6;     /* Cool Light Gray */
    --accent: #e67e22;        /* Vibrant Orange */
    --accent-dark: #d35400;   /* Darker Orange */
    --text: #2c3e50;          /* Navy Charcoal Text */
    --text-light: #7f8c8d;    
    --text-muted: #95a5a6;    
    --bg: #ffffff;
    --card-bg: #f5f6fa;       /* Light Gray Card BG */
    --border: #e1e2e6;        

    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #e67e22 0%, #ff9f43 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    --gradient-hero: linear-gradient(135deg, #f5f6fa 0%, #e1e2e6 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.04);
    --shadow: 0 10px 40px rgba(44, 62, 80, 0.06);
    --shadow-lg: 0 25px 60px rgba(44, 62, 80, 0.1);
    --shadow-accent: 0 10px 30px rgba(230, 126, 34, 0.2);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
    padding: 8px 16px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 15px auto 0;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    font-family: 'Barlow', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accent {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.72rem;
    white-space: nowrap !important;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
    padding: 12px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.logo {
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.main-nav ul {
    display: flex;
    gap: 22px;
    align-items: center;
}

.main-nav a {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Nav Highlight - Optimizador de Cortes */
.main-nav a.nav-highlight {
    color: var(--primary);
    font-weight: 700;
    background: transparent;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap !important;
    border: 1.5px solid var(--primary);
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
}

.main-nav a.nav-highlight:hover {
    background: var(--primary);
    color: white;
}

.main-nav a.nav-highlight::after {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .header-actions {
        display: none;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 80px 0 100px;
    background: var(--gradient-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 25px;
}

.hero-content h1 {
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
}

.hero-image>img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 20px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-icon {
    font-size: 2rem;
}

.hero-floating-card strong {
    display: block;
    font-size: 0.95rem;
}

.hero-floating-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =========================================
   CATEGORIES SECTION
   ========================================= */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.category-card.category-large {
    grid-row: span 2;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    transform: translateY(10px);
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-overlay h3 {
    color: white;
    margin-bottom: 5px;
}

.category-overlay span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* =========================================
   PRODUCTS GRID
   ========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    z-index: 10;
}

.product-badge.new {
    background: #22c55e;
}

.product-badge.sale {
    background: #ef4444;
}

.product-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--secondary);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.action-btn:hover {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.reviews {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-price {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary);
}

.product-price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
    background: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =========================================
   OPTIMIZER CTA SECTION
   ========================================= */
.optimizer-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    overflow: hidden;
}

.optimizer-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.optimizer-cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.optimizer-cta-content>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.optimizer-features {
    margin-bottom: 30px;
}

.optimizer-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Optimizer Mockup */
.optimizer-mockup {
    background: #0d0d0d;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    padding: 15px 20px;
    background: #1a1a1a;
    display: flex;
    gap: 8px;
}

.mockup-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.mockup-content {
    padding: 30px;
}

.board-preview {
    background: linear-gradient(135deg, #c5a059 0%, #d4b87a 100%);
    border-radius: var(--radius-sm);
    height: 200px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
    padding: 4px;
}

.cut-piece {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    animation: fadeInPiece 0.5s ease-out forwards;
    opacity: 0;
}

.piece-1 {
    grid-column: span 2;
    grid-row: span 2;
    animation-delay: 0.1s;
}

.piece-2 {
    grid-column: span 2;
    animation-delay: 0.2s;
}

.piece-3 {
    animation-delay: 0.3s;
}

.piece-4 {
    animation-delay: 0.4s;
}

.piece-5 {
    grid-column: span 2;
    animation-delay: 0.5s;
}

@keyframes fadeInPiece {
    to {
        opacity: 1;
    }
}

.stats-preview {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 15px 30px;
    background: rgba(197, 160, 89, 0.2);
    border-radius: var(--radius-sm);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .optimizer-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   ABOUT PREVIEW SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid white;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    padding: 10px 0;
    color: var(--text);
    font-weight: 500;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    background: var(--secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-card.featured {
    background: var(--gradient-dark);
    color: white;
    transform: scale(1.05);
}

.testimonial-card.featured .testimonial-author strong {
    color: white;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info strong {
    display: block;
    color: var(--primary);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   NEWSLETTER SECTION
   ========================================= */
.newsletter-section {
    background: var(--gradient-dark);
    color: white;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-content>p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    white-space: nowrap;
}

.newsletter-content small {
    opacity: 0.6;
    font-size: 0.8rem;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    padding: 80px 0 40px;
    background: var(--primary);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-about p {
    opacity: 0.7;
    line-height: 1.8;
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.5;
    font-size: 0.85rem;
}

/* =========================================
   PAGE HEADERS
   ========================================= */
.page-header {
    padding: 80px 0;
    background: var(--gradient-hero);
    text-align: center;
}

.page-header-large {
    padding: 120px 0;
}

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   SHOP LAYOUT
   ========================================= */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 50px;
}

.shop-sidebar {
    padding-right: 30px;
    border-right: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 35px;
}

.filter-group h4 {
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 5px 0;
    display: block;
}

.filter-list a:hover,
.filter-list a.active {
    color: var(--accent);
    font-weight: 600;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.results-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    background: white;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* =========================================
   VALUES SECTION
   ========================================= */
.values-section {
    background: var(--secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px;
}

.team-image {
    margin-bottom: 20px;
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    background: var(--gradient-dark);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: var(--gradient-accent);
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--secondary);
    padding: 50px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Map Section */
.map-section {
    height: 400px;
    background: var(--secondary);
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
}

.map-overlay {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-overlay p {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--secondary);
    padding: 30px;
    border-radius: var(--radius);
}

.faq-item h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-floating-card {
        left: 20px;
        bottom: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .category-card.category-large {
        grid-row: span 1;
    }

    .features-grid,
    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        height: 400px;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .filter-group {
        margin-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .features-grid,
    .values-grid,
    .team-grid,
    .stats-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 20px;
    }

    .hero-floating-card {
        display: none;
    }

    .about-images {
        height: 300px;
    }

    .about-img-2 {
        display: none;
    }

    .about-img-1 {
        width: 100%;
        height: 100%;
    }
}