/*
Theme Name: R² Koda Theme
Theme URI: https://r2koda.com
Author: R² Koda Team
Author URI: https://r2koda.com
Description: Custom WordPress theme for R² Koda - B2B pickleball equipment supplier. Modern design with product showcase and inquiry functionality.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: r2koda
Tags: custom-background, threaded-comments, translation-ready
*/

/* ========================================
   CSS Reset & Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
    background-color: #ffffff;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* ========================================
   Layout Utilities
   ======================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

.grid {
    display: grid;
    gap: 2rem;
}

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   Navigation
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    z-index: 50;
    border-bottom: 1px solid #e5e7eb;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e63946;
}

.site-logo a {
    color: inherit;
}

.main-navigation ul {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .main-navigation ul {
        display: flex;
    }
}

.main-navigation a {
    color: #374151;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #e63946;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-switcher a {
    color: #4b5563;
    font-size: 0.875rem;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.language-switcher a:hover {
    color: #e63946;
}

.language-switcher span {
    color: #d1d5db;
}

.cta-button {
    display: none;
    background-color: #e63946;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
    .cta-button {
        display: inline-block;
    }
}

.cta-button:hover {
    background-color: #c62828;
}

.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom right, #fef2f2, #fee2e2);
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }
}

.hero-badge {
    display: inline-block;
    background-color: #fee2e2;
    color: #991b1b;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #111827;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .highlight {
    color: #e63946;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-button-primary {
    background-color: #e63946;
    color: #ffffff;
}

.hero-button-primary:hover {
    background-color: #c62828;
}

.hero-button-secondary {
    border: 2px solid #d1d5db;
    color: #374151;
}

.hero-button-secondary:hover {
    border-color: #e63946;
    color: #e63946;
}

/* ========================================
   Category Cards Section
   ======================================== */

.category-section {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

.category-card {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    border: 2px solid #fee2e2;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #e63946;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.category-description {
    color: #4b5563;
    margin-bottom: 1rem;
}

.category-link {
    color: #e63946;
    font-weight: 500;
}

/* ========================================
   Product Showcase Section
   ======================================== */

.products-section {
    background-color: #f9fafb;
}

.product-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(to bottom right, #f3f4f6, #e5e7eb);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    color: #e63946;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.product-description {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.product-features {
    color: #6b7280;
    font-size: 0.875rem;
}

.product-inquiry {
    background-color: #e63946;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-inquiry:hover {
    background-color: #c62828;
}

/* ========================================
   About Section
   ======================================== */

.about-section {
    background-color: #ffffff;
}

.about-content {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #111827;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
}

.about-text {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom right, #fef2f2, #ffffff);
    border-radius: 1rem;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: #4b5563;
}

/* ========================================
   Trust Badges Section
   ======================================== */

.trust-section {
    background-color: #f9fafb;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-card {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-0.5rem);
}

.trust-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #fee2e2, #fecaca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trust-icon svg {
    width: 2rem;
    height: 2rem;
    color: #e63946;
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.trust-description {
    color: #4b5563;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(to right, #e63946, #c62828);
    color: #ffffff;
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #fee2e2;
    margin-bottom: 2rem;
}

.cta-button-primary {
    background-color: #ffffff;
    color: #e63946;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button-primary:hover {
    background-color: #f3f4f6;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
    background-color: #111827;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column h4 {
    font-weight: 600;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ========================================
   Responsive Utilities
   ======================================== */

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
}

@media (min-width: 768px) {
    .show-mobile {
        display: none;
    }
}

/* ========================================
   JTT Shocks Theme Styles
   Based on original Next.js design
   ======================================== */

/* Hero Section - JTT Style */
.hero-section-jtt {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #111827, #374151);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('/banner01.JPG');
    background-size: cover;
    background-position: center 100px;
    background-repeat: no-repeat;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 1rem 4rem;
}

@media (min-width: 768px) {
    .hero-content-wrapper {
        padding: 8rem 1.5rem 4rem;
    }
}

@media (min-width: 1280px) {
    .hero-content-wrapper {
        padding: 8rem 2rem 4rem;
    }
}

.hero-left {
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .hero-left {
        margin-bottom: 0;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-title-accent {
    color: #e63946;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-features {
        gap: 1rem;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    color: #e63946;
    flex-shrink: 0;
}

.hero-search-wrapper {
    max-width: 48rem;
    margin: 6rem auto 0;
}

.hero-search-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-search-label {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.hero-search-form {
    display: flex;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .hero-search-form {
        flex-direction: row;
    }
}

.hero-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
}

.hero-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.5);
    border-color: #e63946;
}

.hero-search-button {
    padding: 0.75rem 1.5rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-search-button:hover {
    background-color: #c62828;
}

/* Category Section - JTT Style */
.category-section-jtt {
    padding: 4rem 0;
    background-color: #f3f4f6;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card-jtt {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card-jtt:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.category-image-placeholder {
    position: relative;
    height: 13rem;
    overflow: hidden;
    background: linear-gradient(to bottom, #000000, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    font-size: 3rem;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #ffffff;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.category-description {
    font-size: 0.875rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.category-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 600;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.category-button:hover {
    background-color: #c62828;
}

/* Product Showcase - JTT Style */
.product-showcase-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.products-grid-jtt {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .products-grid-jtt {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid-jtt {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card-jtt {
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #ffffff;
}

.product-image-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder {
    font-size: 4rem;
}

.product-info-jtt {
    padding: 1rem;
}

.product-category-badge {
    color: #e63946;
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.product-title-jtt {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.product-excerpt {
    color: #4b5563;
    font-size: 0.875rem;
    margin: 0;
}

.view-all-button {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    border: 2px solid #e63946;
    color: #e63946;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    background-color: #e63946;
    color: #ffffff;
}

/* About Section - JTT Style */
.about-section-jtt {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.about-grid-jtt {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid-jtt {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background-color: #f3f4f6;
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: #e63946;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.experience-number {
    font-size: 2.25rem;
    font-weight: 700;
}

.experience-label {
    font-size: 0.875rem;
}

.about-content-jtt {
    padding: 0;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e63946;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.about-main-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.about-text {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #e63946;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-top: 0.125rem;
}

.feature-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Trust Section - JTT Style */
.trust-section-jtt {
    padding: 2.5rem 0;
    background-color: #e63946;
    color: #ffffff;
}

.trust-header {
    text-align: center;
    margin-bottom: 2rem;
}

.trust-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.trust-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

@media (min-width: 768px) {
    .trust-stats-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.trust-stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-stat-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.trust-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .trust-stat-value {
        font-size: 1.875rem;
    }
}

.trust-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .trust-stat-label {
        font-size: 1rem;
    }
}

/* Why Choose Section - JTT Style */
.why-choose-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advantage-card {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.advantage-image-placeholder {
    width: 100%;
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background-color: #e5e7eb;
}

.advantage-content {
    padding: 1.5rem;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.advantage-number {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #e63946;
    color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

/* Promotion Section - JTT Style */
.promotion-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #111827, #374151);
    color: #ffffff;
}

.promotion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .promotion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.promotion-content {
    color: #ffffff;
}

.promotion-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.promotion-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

@media (min-width: 768px) {
    .promotion-title {
        font-size: 2.5rem;
    }
}

.promotion-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.promotion-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.promotion-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.promotion-check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #e63946;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.promotion-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.promotion-button:hover {
    background-color: #c62828;
}

.promotion-image-wrapper {
    position: relative;
}

.promotion-image-placeholder {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    font-size: 4rem;
    background-color: #ffffff;
}

.promotion-badge-b2b {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: #e63946;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

/* Newsletter Section - JTT Style */
.newsletter-section {
    padding: 4rem 0;
    background-color: #f3f4f6;
}

.newsletter-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.newsletter-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
}

.newsletter-button {
    padding: 0.75rem 2rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #c62828;
}

/* Page Hero - Shared */
.page-hero-section {
    position: relative;
    background: linear-gradient(to bottom right, #111827, #374151);
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero-section > .container {
    position: relative;
    z-index: 10;
}

.page-hero-content {
    text-align: center;
}

.page-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .page-hero-title {
        font-size: 3.75rem;
    }
}

.text-accent {
    color: #e63946;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: #e5e7eb;
}

@media (min-width: 768px) {
    .page-hero-subtitle {
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-main-content {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.about-section-block {
    margin-bottom: 4rem;
}

.about-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e63946;
    margin-bottom: 2rem;
    color: #111827;
}

.company-profile-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .company-profile-card {
        padding: 3rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

.company-profile-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.company-profile-text {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.highlight-text {
    font-weight: 600;
    color: #e63946;
}

.company-profile-image-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
}

.experience-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.experience-intro {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .features-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-feature-card {
    text-align: center;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.feature-feature-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #e63946;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-feature-icon {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.feature-feature-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-feature-description {
    font-size: 0.875rem;
    color: #4b5563;
}

.factory-gallery-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.gallery-intro {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.factory-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .factory-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .factory-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    aspect-video: 1/1;
    background-color: #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-image-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.gallery-caption {
    padding: 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    text-align: center;
}

.about-cta-section {
    background: linear-gradient(to right, #111827, #374151);
    border-radius: 0.5rem;
    padding: 3rem;
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-button-primary {
    background-color: #e63946;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.cta-button-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-main-content {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.contact-info-title {
    font-size: 1.875rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e63946;
    margin-bottom: 2rem;
    color: #111827;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
}

.contact-info-icon-wrapper {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #e63946;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
}

.contact-info-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-info-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.125rem;
}

.business-hours {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.business-hours-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.business-hours-row {
    display: flex;
    justify-content: space-between;
    color: #4b5563;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.contact-form-title {
    font-size: 1.875rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e63946;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-form-intro {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.5);
    border-color: #e63946;
}

.form-submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-button:hover {
    background-color: #c62828;
}

.contact-cta-section {
    background: linear-gradient(to right, #111827, #374151);
    border-radius: 0.5rem;
    padding: 3rem;
    text-align: center;
    color: #ffffff;
    margin-top: 4rem;
}

.contact-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-cta-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-cta-buttons {
        flex-direction: row;
    }
}

.contact-cta-button-primary {
    background-color: #e63946;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.contact-cta-button-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

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

/* ========================================
   404 Error Page Styles
   ======================================== */

.error-404 {
    padding: 6rem 0;
    text-align: center;
}

.error-404__content {
    max-width: 700px;
    margin: 0 auto;
}

.error-404__icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.error-404__title {
    font-size: 5rem;
    font-weight: 800;
    color: #e63946;
    margin-bottom: 0.5rem;
}

.error-404__subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.error-404__description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.error-404__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-404__search {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.error-404__help {
    text-align: left;
}

.error-404__help h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.error-404__help ul {
    list-style: none;
    padding: 0;
}

.error-404__help li {
    margin-bottom: 0.75rem;
}

.error-404__help a {
    color: #e63946;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.error-404__help a:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* ========================================
   Mobile Menu Styles
   ======================================== */

/* ========================================
   Mobile Menu Styles
   ======================================== */

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-button.is-active svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-actions {
        order: 3;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        padding: 2rem 0;
    }

    .main-navigation.mobile-menu--open {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid #f3f4f6;
    }

    .main-navigation a {
        padding: 1rem 0;
        display: block;
    }

    .site-header.mobile-menu-open {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

/* ========================================
   Front Page Styles
   ======================================== */

/* ========================================
   Front Page Styles
   ======================================== */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="200" cy="150" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="400" r="150" fill="rgba(255,255,255,0.1)"/></svg>') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title-accent {
    display: block;
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Value Proposition */
.value-section {
    padding: 5rem 0;
    background: #ffffff;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Featured Products */
.featured-section {
    padding: 5rem 0;
    background: #f3f4f6;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.no-featured {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 1rem;
    color: #6b7280;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Categories */
.categories-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.category-card {
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #e63946;
    box-shadow: 0 10px 25px -5px rgba(230, 57, 70, 0.15);
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.category-card--go .category-badge {
    background: #10b981;
}

.category-card--plus .category-badge {
    background: #3b82f6;
}

.category-card--pro .category-badge {
    background: #e63946;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.category-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn--outline {
    background: transparent;
    border: 2px solid #e63946;
    color: #e63946;
}

.btn--outline:hover {
    background: #e63946;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e63946 0%, #dc2626 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn--primary {
    background: #ffffff;
    color: #e63946;
    border-color: #ffffff;
}

.cta-section .btn--primary:hover {
    background: #f3f4f6;
    border-color: #f3f4f6;
}

.cta-section .btn--secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-section .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

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

    .cta-title {
        font-size: 1.75rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

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

/* ========================================
   Contact Page Styles
   ======================================== */

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.contact-page__header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-page__intro {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

.contact-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .contact-page__layout {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* Contact Form */
.contact-page__form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-page__form h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-product-reference {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 1rem;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert--success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

/* Contact Info */
.contact-page__info {
    height: fit-content;
}

.contact-info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.contact-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.contact-info-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.contact-info-content p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-info-content a {
    color: #e63946;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-content a:hover {
    color: #dc2626;
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-links a {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #e5e7eb;
    color: #111827;
}

/* ========================================
   Language Switcher
   ======================================== */

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.language-switcher__btn:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: scale(1.05);
}

.language-switcher__icon {
    font-size: 1.125rem;
    line-height: 1;
}

.language-switcher__label {
    line-height: 1;
}

/* ========================================
   Product Single Page Styles
   ======================================== */

.product-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.product-single__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 900px) {
    .product-single__layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #e63946;
}

.breadcrumb .separator {
    color: #9ca3af;
}

.breadcrumb .current {
    color: #1f2937;
    font-weight: 500;
}

/* Product Gallery */
.product-single__gallery {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.product-single__main-image {
    background: #f9fafb;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-single__main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-single__thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.product-single__thumbnails img {
    width: 100%;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.product-single__placeholder {
    background: #f3f4f6;
    border-radius: 1rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1rem;
}

/* Product Details */
.product-single__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.product-single__model {
    display: inline-block;
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.product-single__model .label {
    font-weight: 600;
    color: #6b7280;
}

.product-single__model .value {
    color: #111827;
    font-weight: 600;
}

.product-single__short-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 2rem;
}

.product-single__commerce {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.product-single__price {
    font-size: 2rem;
    font-weight: 700;
    color: #e63946;
}

.product-single__price .label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.product-single__moq .label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.product-single__moq .value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

/* Status Badge */
.product-single__status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-single__status--out_of_stock {
    background: #fee2e2;
    color: #991b1b;
}

.product-single__status--coming_soon {
    background: #dbeafe;
    color: #1e40af;
}

.product-single__status--discontinued {
    background: #f3f4f6;
    color: #6b7280;
}

/* Category Badge */
.product-single__category-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.product-single__category-badge--go {
    background: #10b981;
    color: #ffffff;
}

.product-single__category-badge--plus {
    background: #3b82f6;
    color: #ffffff;
}

.product-single__category-badge--pro {
    background: #e63946;
    color: #ffffff;
}

/* CTA Buttons */
.product-single__cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn--primary {
    background: #e63946;
    color: #ffffff;
    border: 2px solid #e63946;
}

.btn--primary:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.btn--secondary {
    background: transparent;
    color: #111827;
    border: 2px solid #d1d5db;
}

.btn--secondary:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

/* Product Description & Specs */
.product-single__description,
.product-single__specifications {
    margin-top: 3rem;
}

.product-single__description h2,
.product-single__specifications h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.product-single__description .content {
    line-height: 1.75;
    color: #4b5563;
}

.product-specs-table {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
}

.product-specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table th,
.product-specs-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.product-specs-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    width: 40%;
}

.product-specs-table td {
    color: #6b7280;
}

.product-specs-table tr:last-child th,
.product-specs-table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   Product Archive / Grid Styles
   ======================================== */

.product-archive {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.product-archive__header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-archive__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.product-archive__count {
    color: #6b7280;
    font-size: 1rem;
}

/* Filters */
.product-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-group label {
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.filter-select {
    padding: 0.625rem 2rem 0.625rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.filter-select:hover {
    border-color: #9ca3af;
}

.filter-select:focus {
    outline: none;
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.product-card__image {
    position: relative;
    background: #f9fafb;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-card__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Badges */
.product-card__badge {
    position: absolute;
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.product-card__badge--featured {
    top: 1rem;
    left: 1rem;
    background: #fbbf24;
    color: #92400e;
}

.product-card__badge--category {
    top: 1rem;
    right: 1rem;
    color: #ffffff;
}

.product-card__badge--category.go {
    background: #10b981;
}

.product-card__badge--category.plus {
    background: #3b82f6;
}

.product-card__badge--category.pro {
    background: #e63946;
}

/* Product Card Info */
.product-card__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__model {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-card__title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card__title a:hover {
    color: #e63946;
}

.product-card__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 1rem;
}

.product-card__link {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.product-card__link:hover {
    transform: translateX(4px);
}

/* Empty State */
.product-archive__empty {
    text-align: center;
    padding: 4rem 2rem;
}

.product-archive__empty h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #111827;
}

.product-archive__empty p {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Pagination */
.product-archive__pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.product-archive__pagination .page-numbers {
    display: flex;
    gap: 0.5rem;
}

.product-archive__pagination a,
.product-archive__pagination span {
    padding: 0.625rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
}

.product-archive__pagination a:hover {
    border-color: #e63946;
    color: #e63946;
}

.product-archive__pagination .current {
    background: #e63946;
    border-color: #e63946;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .product-single__title {
        font-size: 1.75rem;
    }

    .product-single__commerce {
        flex-direction: column;
        gap: 1rem;
    }

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

    .product-archive__filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        width: 100%;
    }
}

/* ========================================
   Dark Theme for Front Page
   ======================================== */

/* Hero Section - Dark Theme */
.hero-section--dark {
    position: relative;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0d1016 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section--dark .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 26, 0.8) 100%);
    pointer-events: none;
}

.hero-section--dark .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.hero-section--dark .hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-section--dark .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-section--dark .hero-title {
        font-size: 4.5rem;
    }
}

.hero-section--dark .hero-subtitle {
    font-size: 1.25rem;
    color: #b8c5d6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-section--dark .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-section--dark .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-section--dark .hero-cta {
        flex-direction: row;
    }
}

/* Value Section - Dark Theme */
.value-section--dark {
    background: linear-gradient(180deg, #0d1016 0%, #1a1f2e 100%);
    padding: 5rem 0;
    position: relative;
}

.value-section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.value-section--dark .value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .value-section--dark .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-section--dark .value-card {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-section--dark .value-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.value-section--dark .value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-section--dark .value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-section--dark .value-card p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Featured Product Showcase - Dark */
.featured-showcase--dark {
    background: #0a0e1a;
    padding: 6rem 0;
    position: relative;
}

.featured-showcase--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.featured-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 968px) {
    .featured-showcase__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.featured-showcase__image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-showcase__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-showcase__image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
}

.featured-showcase__image .placeholder-image span {
    color: #d4af37;
    font-size: 1.25rem;
    font-weight: 600;
}

.featured-showcase__content {
    padding: 2rem;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0e1a;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-showcase__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .featured-showcase__title {
        font-size: 3rem;
    }
}

.featured-showcase__model {
    font-size: 1.25rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.featured-showcase__description {
    font-size: 1.125rem;
    color: #b8c5d6;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-showcase__cta {
    display: flex;
    gap: 1rem;
}

/* Categories Section - Dark */
.categories-section--dark {
    background: linear-gradient(180deg, #1a1f2e 0%, #0d1016 100%);
    padding: 6rem 0;
    position: relative;
}

.categories-section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.categories-section--dark .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.categories-section--dark .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.categories-section--dark .section-subtitle {
    font-size: 1.25rem;
    color: #b8c5d6;
}

.categories-section--dark .categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .categories-section--dark .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.categories-section--dark .category-card {
    background: rgba(26, 31, 46, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.categories-section--dark .category-card:hover {
    transform: translateY(-1rem);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.categories-section--dark .category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0e1a;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.categories-section--dark .category-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.categories-section--dark .category-card p {
    color: #b8c5d6;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.categories-section--dark .btn--outline {
    border-color: rgba(212, 175, 55, 0.5);
    color: #d4af37;
}

.categories-section--dark .btn--outline:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
    color: #0a0e1a;
}

/* CTA Section - Dark */
.cta-section--dark {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0d1016 100%);
    padding: 6rem 0;
    position: relative;
}

.cta-section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section--dark .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section--dark .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-section--dark .cta-title {
        font-size: 3rem;
    }
}

.cta-section--dark .cta-description {
    font-size: 1.25rem;
    color: #b8c5d6;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-section--dark .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-section--dark .cta-buttons {
        flex-direction: row;
    }
}

/* Dark Theme Button Styles */
.hero-section--dark .btn--primary,
.value-section--dark .btn--primary,
.featured-showcase--dark .btn--primary,
.categories-section--dark .btn--primary,
.cta-section--dark .btn--primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0e1a;
    border: 2px solid #d4af37;
    font-weight: 700;
}

.hero-section--dark .btn--primary:hover,
.value-section--dark .btn--primary:hover,
.featured-showcase--dark .btn--primary:hover,
.categories-section--dark .btn--primary:hover,
.cta-section--dark .btn--primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    border-color: #f4d03f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.hero-section--dark .btn--outline,
.value-section--dark .btn--outline,
.featured-showcase--dark .btn--outline,
.categories-section--dark .btn--outline,
.cta-section--dark .btn--outline {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    font-weight: 600;
}

.hero-section--dark .btn--outline:hover,
.value-section--dark .btn--outline:hover,
.featured-showcase--dark .btn--outline:hover,
.categories-section--dark .btn--outline:hover,
.cta-section--dark .btn--outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

/* Mobile Responsive Adjustments for Dark Theme */
@media (max-width: 768px) {
    .hero-section--dark {
        min-height: 70vh;
    }

    .featured-showcase--dark {
        padding: 4rem 0;
    }

    .categories-section--dark {
        padding: 4rem 0;
    }

    .cta-section--dark {
        padding: 4rem 0;
    }

    .featured-showcase__content {
        padding: 1rem;
    }

    .categories-section--dark .category-card {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   Header - Dark Theme
   ======================================== */

.site-header--dark {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header--dark .site-logo a {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.site-header--dark .site-logo a:hover {
    color: #d4af37;
}

.site-header--dark .site-logo__tagline {
    color: #b8c5d6;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

.site-header--dark .main-navigation a {
    color: #b8c5d6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-header--dark .main-navigation a:hover {
    color: #d4af37;
}

.site-header--dark .cta-button {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0e1a;
    font-weight: 600;
}

.site-header--dark .cta-button:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.site-header--dark .mobile-menu-button {
    color: #ffffff;
}

.site-header--dark .mobile-menu-button:hover {
    color: #d4af37;
}

/* Language Switcher - Dark Theme */
.site-header--dark .language-switcher {
    color: #b8c5d6;
}

.site-header--dark .language-switcher:hover {
    color: #d4af37;
}

@media (max-width: 768px) {
    .site-header--dark .site-logo__tagline {
        display: none;
    }

    .site-header--dark .main-navigation {
        background: rgba(10, 14, 26, 0.98);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .site-header--dark .main-navigation a {
        color: #ffffff;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .site-header--dark .main-navigation a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #d4af37;
    }
}
