/*
Theme Name: Toys
Theme URI: https://www.childrentoycar.com
Author: User
Version: 1.0
Description: A custom WordPress theme for Children Toy Car.
*/

:root {
    --color-primary: #FF4081;   /* Candy Pink */
    --color-secondary: #00BCD4; /* Bright Cyan */
    --color-purple: #6A1B9A;    /* Deep Purple */
    --color-text: #333;
    --color-light-bg: #fdfdfd;
    --font-main: 'Nunito', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    background-color: #f4f8fb;
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    color: var(--color-text);
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--color-purple);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
}

/* --- Main Header --- */
.main-header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Logo */
.site-branding .logo-link {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--color-primary);
}

.logo-icon {
    font-size: 36px;
    margin-right: 10px;
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-form {
    display: flex;
}

.search-field {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #eee;
    border-right: none;
    border-radius: 50px 0 0 50px;
    font-family: var(--font-main);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-field:focus {
    border-color: var(--color-secondary);
}

.search-submit {
    background-color: var(--color-secondary);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 50px 50px 0;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-submit:hover {
    background-color: #00acc1;
}

/* User Actions */
.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #666;
}

.action-item .icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.cart-item {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: 0px;
    background-color: var(--color-primary);
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Navigation --- */
.main-navigation {
    background-color: var(--color-primary);
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex; /* Flex to align text vertically */
    align-items: center;
    font-size: 28px !important;
    font-weight: 900 !important;
    color: white !important;
    text-decoration: none;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.nav-brand:hover {
    color: #ffeb3b !important;
}

/* Use the class from wp_nav_menu */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end; /* Align menu to right */
    align-items: center;
    gap: 5px;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-menu a {
    display: block;
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s;
    text-decoration: none;
}

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
}

/* Special styling for the 'Sale' item (Yellow Background) */
.nav-menu li.special-sale-item {
    margin-left: 10px;
}

.nav-menu li.special-sale-item a {
    background-color: #ffeb3b; /* Yellow */
    color: #e91e63 !important; /* Pink Text */
    padding: 8px 25px;
    border-radius: 50px; /* Pill shape */
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-menu li.special-sale-item a:hover {
    background-color: #ffd600;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: stretch;
    }
    
    .site-branding {
        text-align: center;
        justify-content: center;
    }
    
    .header-search {
        margin: 10px 0;
        max-width: none;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .main-navigation ul {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: 500px; /* Adjust height as needed */
}

.hero-slide-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

/* Overlay to make text readable */
.hero-slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2); 
}

.slide-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

.slide-text p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.btn-secondary {
    background-color: var(--color-secondary);
    color: white;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-primary);
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 350px;
    }
    
    .slide-text h2 {
        font-size: 32px;
    }
    
    .slide-text p {
        font-size: 18px;
    }
}

/* --- Category Section --- */
.category-section {
    width: 100%;
}

.section-title-wrapper {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: #f4f8fb;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-purple);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    min-height: 500px;
}

.category-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
}

/* Dark overlay gradient */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    transition: background 0.3s;
}

.category-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.8));
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    transition: transform 0.3s;
}

.category-card:hover .category-overlay {
    transform: translateY(-10px);
}

.category-overlay h3 {
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.btn-link {
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    color: white;
    border-bottom: 2px solid var(--color-primary);
}

.category-card:hover .btn-link {
    opacity: 1;
    transform: translateY(0);
}

/* Glitch Effect (Optional, Simplified) */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit; /* Inherit logic handled via mix-blend-mode mostly */
}

/* Mobile Responsive for Categories */
@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 300px;
    }
    
    .category-overlay h3 {
        font-size: 32px;
    }
}

/* --- Philosophy Section --- */
.philosophy-section {
    background: linear-gradient(135deg, #12002b 0%, #3a0ca3 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Left: Stats */
.philosophy-stats {
    flex: 1;
    max-width: 600px;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #b5179e 0%, #4cc9f0 100%);
    border-radius: 2px;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.4;
}

/* Right: Quote */
.philosophy-quote {
    flex: 1;
    max-width: 500px;
}

.philosophy-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.philosophy-quote blockquote {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 20px 0;
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
}

.philosophy-quote cite {
    font-style: normal;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Decor Shapes */
.decor-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 64, 129, 0.2);
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(76, 201, 240, 0.15);
    bottom: -100px;
    right: -100px;
}

@media (max-width: 768px) {
    .philosophy-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .philosophy-quote blockquote {
        font-size: 20px;
    }
}

/* --- Product Grid --- */
.products-section {
    padding-bottom: 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns */
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

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

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: #f9f9f9;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-desc {
    font-size: 13px;
    color: #888;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Badges */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.badge-hot {
    background-color: #ff3d00;
}

.badge-new {
    background-color: var(--color-secondary);
}

/* Mobile Responsive for Products */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-info h3 {
        font-size: 14px;
    }
}

/* View More Button */
.view-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

.btn-large {
    padding: 15px 60px;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
    letter-spacing: 1px;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.5);
}

/* --- Contact Section --- */
.contact-section {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

/* Left: Form */
.contact-left {
    flex: 1.5;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
    letter-spacing: 1px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    color: white;
    font-family: var(--font-main);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #7b1fa2; /* Deep Purple */
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #9c27b0;
}

/* Right: Info */
.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px; /* Align visually with form content */
}

.contact-text p {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-email {
    margin-top: 30px;
}

.contact-email a {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email a:hover {
    color: var(--color-primary);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-right {
        padding-top: 0;
    }
}

/* --- WooCommerce Overrides --- */

/* Product Grid Layout */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.woocommerce ul.products li.product {
    width: 100% !important; /* Override inline WC styles */
    margin: 0 !important;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    padding-bottom: 20px;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product a img {
    margin: 0 !important;
    width: 100%;
    height: auto;
    display: block;
}

/* Titles & Prices */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    padding: 15px 15px 5px;
    margin: 0;
    /* Limit to 2 lines with ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4; /* Ensure line height is set for calculation */
    height: 45px; /* Fixed height: line-height (1.4 * 16px = ~22.4px) * 2 lines ≈ 45px */
}

.woocommerce ul.products li.product .price {
    display: block;
    color: var(--color-primary) !important;
    font-weight: 900;
    font-size: 18px !important;
    padding: 0 15px 15px;
    margin: 0;
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button {
    margin: 0 15px 15px !important;
    background-color: var(--color-secondary) !important; /* Bright Cyan */
    color: white !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    text-align: center;
    transition: background 0.3s;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #00acc1 !important;
}

/* Sorting & Results Count */
.woocommerce .woocommerce-result-count {
    margin-bottom: 20px;
    color: #666;
}

.woocommerce .woocommerce-ordering select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 50px;
    outline: none;
    font-family: var(--font-main);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
    margin: 0 5px;
}

.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 10px 15px !important;
    background: white !important;
    color: #333 !important;
    border-radius: 50px !important;
    font-weight: 700;
    border: 1px solid #eee;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--color-primary) !important;
    color: white !important;
    border-color: var(--color-primary);
}

/* Mobile Responsive for Shop */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* --- Single Product Page --- */
.single-product div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

/* Gallery / Images */
.single-product div.product div.images {
    flex: 1;
    min-width: 300px;
    width: auto !important;
    float: none !important;
    margin-right: 0 !important;
}

.single-product div.product div.images img {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* Summary / Info */
.single-product div.product div.summary {
    flex: 1;
    min-width: 300px;
    width: auto !important;
    float: none !important;
}

.single-product .product_title {
    font-size: 32px !important;
    font-weight: 900;
    color: var(--color-purple);
    margin-bottom: 10px;
}

.single-product .price {
    font-size: 24px !important;
    color: var(--color-primary) !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.single-product .woocommerce-product-details__short-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Add to Cart Area */
.single-product form.cart {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.single-product form.cart .quantity input {
    width: 60px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
}

.single-product form.cart .button {
    background-color: var(--color-secondary) !important;
    color: white !important;
    padding: 12px 40px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    transition: transform 0.2s;
}

.single-product form.cart .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

/* Meta (Category/Tags) */
.product_meta {
    font-size: 14px;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product_meta a {
    color: var(--color-purple);
    font-weight: 700;
}

/* Tabs */
.woocommerce-tabs {
    margin-top: 60px;
    clear: both;
}

.woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    border: none !important;
    display: flex;
    gap: 10px;
}

.woocommerce-tabs ul.tabs li {
    background: #f4f8fb !important;
    border: none !important;
    border-radius: 50px !important;
    margin: 0 !important;
}

.woocommerce-tabs ul.tabs li a {
    padding: 10px 25px !important;
    font-weight: 700 !important;
    color: #666 !important;
}

.woocommerce-tabs ul.tabs li.active {
    background: var(--color-purple) !important;
}

.woocommerce-tabs ul.tabs li.active a {
    color: white !important;
}

.woocommerce-Tabs-panel {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .single-product div.product {
        flex-direction: column;
        gap: 20px;
    }
}

/* --- About Page --- */
.about-container {
    max-width: 900px !important; /* Narrower container for better reading experience */
}

.about-intro, .about-passion {
    text-align: center;
    margin-bottom: 60px;
}

.about-headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-images {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
}

.about-img-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-images {
        flex-direction: column;
    }
    
    .about-headline {
        font-size: 24px;
    }
}

/* --- Proud Section --- */
.proud-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.proud-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.proud-text {
    flex: 1;
}

.proud-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-text);
}

.proud-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.proud-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
    font-weight: 600;
}

@media (max-width: 768px) {
    .proud-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* --- Contact Page Art Header --- */
.contact-art-header {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: white;
}

.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 900;
    color: #f5f5f5;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 10px;
}

.contact-intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.purple-line-decor {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.line-bar {
    width: 60px;
    height: 4px;
    background-color: var(--color-purple);
    flex-shrink: 0;
}

.purple-line-decor p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.big-contact-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.big-email-link {
    font-size: 20px;
    color: #666;
    font-weight: 600;
}

@media (max-width: 768px) {
    .watermark-text {
        font-size: 80px;
    }
    
    .big-contact-title {
        font-size: 32px;
    }
    
    .purple-line-decor {
        flex-direction: column;
        align-items: flex-start;
    }
}

