/*
Theme Name: Chico Fab Lab
Theme URI: https://chicofablab.org
Author: Chico Fab Lab
Author URI: https://chicofablab.org
Description: Bold industrial theme for Chico Fab Lab makerspace - dark theme with orange accents
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chicofablab
*/

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

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

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

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

.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

.site-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* Main Navigation Menu */
.main-nav {
    display: flex;
    gap: 40px;
    list-style: none;
}

.main-nav li {
    list-style: none;
}

.main-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: #f08017;
}

/* Nav CTA Button */
.nav-cta {
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    color: #000 !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(240, 128, 23, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section with Integrated News
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 120px 60px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 128, 23, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(240, 128, 23, 0.4);
    color: #000;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: #f08017;
    color: #f08017;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

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

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #f08017;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured News Card in Hero */
.hero-news {
    display: block;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(240, 128, 23, 0.2);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.hero-news:hover {
    border-color: rgba(240, 128, 23, 0.5);
    box-shadow: 0 30px 80px rgba(240, 128, 23, 0.15);
    transform: translateY(-5px);
}

.hero-news-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: saturate(0.9);
}

.hero-news-content {
    padding: 35px;
}

.hero-news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 128, 23, 0.2);
    color: #f08017;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-news-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #f08017;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.hero-news h3 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-news p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.hero-news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-news-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.hero-news-link {
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.hero-news-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(240, 128, 23, 0.4);
    color: #000;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
    padding: 120px 60px;
}

.section-dark {
    background: #0f0f0f;
}

.section-gradient {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-header p {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Tool Zones Grid
   ========================================================================== */

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.zone-card {
    display: block;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    color: inherit;
}

.zone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(240, 128, 23, 0.2);
    border-color: rgba(240, 128, 23, 0.3);
}

.zone-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.4s ease;
}

.zone-card:hover img {
    filter: grayscale(0%);
}

.zone-card-content {
    padding: 25px;
}

.zone-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f08017;
}

.zone-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.price-card.featured {
    background: linear-gradient(145deg, rgba(240, 128, 23, 0.15), rgba(240, 128, 23, 0.05));
    border-color: #f08017;
    transform: scale(1.05);
}

.price-card:hover {
    border-color: #f08017;
    transform: translateY(-10px);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 15px;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-card.featured .price-amount {
    color: #f08017;
}

.price-period {
    color: rgba(255,255,255,0.4);
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.price-features li::before {
    content: '\2713';
    color: #f08017;
    margin-right: 10px;
    font-weight: bold;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(240, 128, 23, 0.2);
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 16px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-weight: 600;
}

.testimonial-author-title {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

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

.cta-section {
    padding: 150px 60px;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 128, 23, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 64px;
    margin-bottom: 30px;
    position: relative;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

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

.site-footer {
    padding: 60px;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer p {
    color: rgba(255,255,255,0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

/* ==========================================================================
   WordPress Specific Overrides
   ========================================================================== */

/* Remove default WordPress admin bar spacing */
body.admin-bar .site-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-nav {
        top: 46px;
    }
}

/* WordPress block alignments */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .hero-container {
        gap: 50px;
    }
}

@media (max-width: 1000px) {
    .site-nav {
        padding: 15px 30px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .section {
        padding: 80px 30px;
    }

    .zones-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-10px);
    }

    .section-header h2 {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-news-image {
        height: 200px;
    }

    .price-amount {
        font-size: 48px;
    }
}

/* ==========================================================================
   WordPress Block Editor Support
   ========================================================================== */

/* Core Block Styles */
.wp-block-group,
.wp-block-cover,
.wp-block-columns {
    color: #fff;
}

.wp-block-group.has-background,
.wp-block-cover {
    padding: 40px;
    border-radius: 12px;
}

/* Columns */
.wp-block-columns {
    gap: 30px;
}

.wp-block-column {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Headings in content */
.content h1, .content h2, .content h3, .content h4,
.wp-block-heading,
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.entry-content h2 {
    font-size: 36px;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.entry-content h3 {
    font-size: 28px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.entry-content h4 {
    font-size: 22px;
    color: #f08017;
}

/* Paragraphs and text */
.entry-content p,
.wp-block-paragraph {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 1.5em;
}

/* Links */
.entry-content a,
.wp-block-paragraph a {
    color: #f08017;
    text-decoration: none;
}

.entry-content a:hover,
.wp-block-paragraph a:hover {
    text-decoration: underline;
}

/* Lists */
.entry-content ul,
.entry-content ol,
.wp-block-list {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.entry-content li {
    margin-bottom: 0.5em;
}

/* Images */
.wp-block-image {
    margin: 2em 0;
}

.wp-block-image img {
    border-radius: 12px;
}

.wp-block-image figcaption {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

/* Cover blocks */
.wp-block-cover {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-cover__inner-container {
    max-width: 800px;
    text-align: center;
}

/* Buttons */
.wp-block-button__link,
.wp-block-button .wp-element-button {
    background: linear-gradient(135deg, #f08017, #ff9a3c) !important;
    color: #000 !important;
    padding: 18px 40px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
    border: none !important;
}

.wp-block-button__link:hover,
.wp-block-button .wp-element-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(240, 128, 23, 0.4);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    border-color: #f08017 !important;
    color: #f08017 !important;
}

/* Quote blocks */
.wp-block-quote,
blockquote {
    border-left: 4px solid #f08017;
    padding-left: 25px;
    margin: 2em 0;
    font-style: italic;
    color: rgba(255,255,255,0.7);
}

.wp-block-quote cite {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    display: block;
    margin-top: 10px;
}

/* Tables */
.wp-block-table table,
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
}

.wp-block-table th,
.wp-block-table td,
.entry-content th,
.entry-content td {
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    color: rgba(255,255,255,0.85);
}

.wp-block-table th,
.entry-content th {
    background: rgba(240, 128, 23, 0.2);
    color: #f08017;
    font-weight: 600;
}

.wp-block-table tr:nth-child(even),
.entry-content tr:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

/* Separator */
.wp-block-separator {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 40px 0;
}

.wp-block-separator.is-style-wide {
    border-top-width: 2px;
}

.wp-block-separator.is-style-dots {
    border: none;
    text-align: center;
}

.wp-block-separator.is-style-dots::before {
    content: '···';
    color: #f08017;
    font-size: 24px;
    letter-spacing: 10px;
}

/* Gallery */
.wp-block-gallery {
    gap: 15px;
}

.wp-block-gallery .wp-block-image {
    margin: 0;
}

/* Code blocks */
.wp-block-code,
.entry-content pre {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2em 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.wp-block-code code,
.entry-content code {
    color: #f08017;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
}

/* Inline code */
.entry-content p code,
.wp-block-paragraph code {
    background: rgba(240, 128, 23, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* ==========================================================================
   WooCommerce Styles
   ========================================================================== */

/* Product Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products li.product {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 128, 23, 0.3);
    box-shadow: 0 20px 40px rgba(240, 128, 23, 0.15);
}

.woocommerce ul.products li.product img {
    border-radius: 12px;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.woocommerce ul.products li.product .price {
    color: #f08017;
    font-size: 20px;
    font-weight: 700;
}

.woocommerce ul.products li.product .price del {
    color: rgba(255,255,255,0.4);
    font-size: 16px;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(135deg, #f08017, #ff9a3c) !important;
    color: #000 !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 128, 23, 0.4);
}

/* Cart */
.woocommerce-cart-form,
.woocommerce table.cart {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.woocommerce table.cart th {
    color: #f08017;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.woocommerce table.cart td {
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.woocommerce table.cart img {
    border-radius: 8px;
}

/* Cart totals */
.woocommerce .cart_totals {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.woocommerce .cart_totals h2 {
    color: #fff;
    margin-bottom: 20px;
}

.woocommerce .cart_totals table {
    color: rgba(255,255,255,0.85);
}

.woocommerce .cart_totals .order-total {
    color: #f08017;
    font-size: 24px;
}

/* Checkout */
.woocommerce form.checkout {
    color: rgba(255,255,255,0.85);
}

.woocommerce form .form-row label {
    color: rgba(255,255,255,0.7);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    width: 100%;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #f08017;
    outline: none;
    box-shadow: 0 0 0 3px rgba(240, 128, 23, 0.2);
}

/* Order review */
.woocommerce-checkout-review-order {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* My Account */
.woocommerce-MyAccount-navigation {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.woocommerce-MyAccount-navigation li {
    margin-bottom: 5px;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a {
    background: rgba(240, 128, 23, 0.2);
    color: #f08017;
}

.woocommerce-MyAccount-content {
    color: rgba(255,255,255,0.85);
}

/* Messages */
.woocommerce-message,
.woocommerce-info {
    background: rgba(240, 128, 23, 0.1);
    border-left: 4px solid #f08017;
    color: #fff;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

.woocommerce-error {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #fff;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 30px;
}

.woocommerce-breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.woocommerce-breadcrumb a:hover {
    color: #f08017;
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 15px 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: #f08017;
    outline: none;
    box-shadow: 0 0 0 3px rgba(240, 128, 23, 0.2);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

/* Search form */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form .search-field {
    flex: 1;
}

.search-form .search-submit {
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form .search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 128, 23, 0.4);
}

/* Contact Form 7 */
.wpcf7-form label {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    display: block;
}

.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #f08017, #ff9a3c);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(240, 128, 23, 0.4);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

.text-orange {
    color: #f08017;
}

.bg-dark {
    background: #0f0f0f;
}

.bg-gradient {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 20px; }
.mt-2 { margin-top: 40px; }
.mt-3 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 20px; }
.mb-2 { margin-bottom: 40px; }
.mb-3 { margin-bottom: 60px; }
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 20px; }
.pt-2 { padding-top: 40px; }
.pt-3 { padding-top: 60px; }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 20px; }
.pb-2 { padding-bottom: 40px; }
.pb-3 { padding-bottom: 60px; }
