/* PrintCraft - Custom Apparel Printing Website */
/* Design System: Terracotta Studio Palette */

:root {
    /* Colors - Terracotta Studio */
    --color-primary: #B5563E;
    --color-primary-light: #D4896A;
    --color-primary-dark: #8B412E;
    --color-secondary: #3D2B1F;
    --color-cream: #F2E6D9;
    --color-cream-light: #F9F3EB;
    --color-dark: #1A1A1A;
    --color-gray: #666;
    --color-gray-light: #999;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(181, 86, 62, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-cream-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--color-cream-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

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

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 243, 235, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(181, 86, 62, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.logo-icon {
    color: var(--color-primary);
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-gray);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-cart {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-secondary);
    transition: var(--transition-base);
}

.btn-cart:hover {
    color: var(--color-primary);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition-base);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(181, 86, 62, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 137, 106, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(242, 230, 217, 0.5) 0%, transparent 70%);
}

.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(181, 86, 62, 0.1);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--color-primary);
    position: relative;
}

.title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: rgba(181, 86, 62, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.showcase-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.showcase-item.active {
    opacity: 1;
    transform: translateX(0);
}

.product-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 80%;
    height: 80%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.tshirt-mockup {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    box-shadow: var(--shadow-lg);
}

.tshirt-mockup::before {
    content: '👕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.3;
}

.cap-mockup {
    background: linear-gradient(135deg, #B5563E 0%, #D4896A 100%);
    box-shadow: var(--shadow-lg);
}

.cap-mockup::before {
    content: '🧢';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.3;
}

.hoodie-mockup {
    background: linear-gradient(135deg, #3D2B1F 0%, #5B3A29 100%);
    box-shadow: var(--shadow-lg);
}

.hoodie-mockup::before {
    content: '🧥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.3;
}

.product-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(181, 86, 62, 0.3) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.showcase-controls {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.showcase-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-base);
}

.showcase-dot.active {
    background: var(--color-primary);
}

/* Section Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    color: var(--color-secondary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-top: 1rem;
}

/* Services Section */
.services {
    padding: var(--space-3xl) 4rem;
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    background: var(--color-cream-light);
    border-radius: 16px;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    background: var(--color-secondary);
    color: var(--color-white);
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--color-white);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(181, 86, 62, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.service-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-card.featured .service-link {
    color: var(--color-primary-light);
}

/* Products Section */
.products {
    padding: var(--space-3xl) 4rem;
    background: var(--color-cream-light);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--color-cream);
    border-radius: 100px;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-item {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    transition: var(--transition-slow);
}

.classic-tee { background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); }
.classic-tee::before { content: '👕'; opacity: 0.5; }

.premium-tee { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); }
.premium-tee::before { content: '👕'; opacity: 0.5; filter: invert(1); }

.snapback { background: linear-gradient(135deg, #333 0%, #1a1a1a 100%); }
.snapback::before { content: '🧢'; opacity: 0.5; }

.dad-cap { background: linear-gradient(135deg, #D4896A 0%, #B5563E 100%); }
.dad-cap::before { content: '🧢'; opacity: 0.5; }

.pullover { background: linear-gradient(135deg, #808080 0%, #666 100%); }
.pullover::before { content: '🧥'; opacity: 0.5; }

.zip-hoodie { background: linear-gradient(135deg, #2E5090 0%, #1a3a6e 100%); }
.zip-hoodie::before { content: '🧥'; opacity: 0.5; }

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.product-item:hover .product-overlay {
    opacity: 1;
}

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

.btn-quick-view {
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    color: var(--color-secondary);
    font-family: var(--font-display);
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-colors {
    display: flex;
    gap: 0.5rem;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: var(--color-primary);
}

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

/* Design Studio Section */
.design-studio {
    padding: var(--space-3xl) 4rem;
    background: var(--color-secondary);
    color: var(--color-white);
}

.studio-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.studio-header .section-eyebrow {
    color: var(--color-primary-light);
}

.studio-header .section-title {
    color: var(--color-white);
}

.studio-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 1rem auto 0;
}

.studio-workspace {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.design-canvas {
    background: var(--color-cream-light);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.canvas-area {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-product {
    width: 300px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.canvas-product.cap {
    width: 350px;
    height: 250px;
    border-radius: 100px;
}

.canvas-product.hoodie {
    width: 320px;
    height: 420px;
}

.design-preview {
    width: 200px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.canvas-product.cap .design-preview {
    width: 150px;
    height: 100px;
    border-radius: 50px;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 1rem;
}

.upload-placeholder span {
    font-family: var(--font-display);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.upload-placeholder small {
    font-size: 0.8rem;
}

.design-preview img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.design-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.control-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
}

.control-panel h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.product-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.product-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-base);
}

.product-btn:hover,
.product-btn.active {
    background: rgba(181, 86, 62, 0.2);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn-icon {
    font-size: 1.5rem;
}

.color-selector {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
}

.color-btn:hover,
.color-btn.active {
    border-color: var(--color-white);
    transform: scale(1.1);
}

.method-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.method-option {
    cursor: pointer;
}

.method-option input {
    display: none;
}

.method-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: var(--transition-base);
}

.method-option input:checked + .method-card {
    border-color: var(--color-primary);
    background: rgba(181, 86, 62, 0.2);
}

.method-card strong {
    color: var(--color-white);
    font-family: var(--font-display);
}

.method-card small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: var(--color-white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.quantity-selector input {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-display);
    font-size: 1rem;
}

.price-display {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-row.total {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-white);
}

/* Features Section */
.features {
    padding: var(--space-2xl) 4rem;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-block {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 16px;
    margin: 0 auto 1.25rem;
    color: var(--color-primary);
}

.feature-block h4 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.feature-block p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-3xl) 4rem;
    background: var(--color-cream-light);
}

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

.testimonial-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
}

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

.author-info strong {
    color: var(--color-secondary);
    font-family: var(--font-display);
}

.author-info span {
    color: var(--color-gray);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 4rem;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

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

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    opacity: 0.5;
}

/* Footer */
.footer {
    padding: var(--space-3xl) 4rem var(--space-xl);
    background: var(--color-secondary);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-newsletter h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-form button:hover {
    background: var(--color-primary-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        grid-row: span 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .studio-workspace {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions .btn-primary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 8rem 1.5rem 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services,
    .products,
    .design-studio,
    .features,
    .testimonials,
    .cta-section,
    .footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .services-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .design-canvas {
        min-height: 350px;
    }
    
    .canvas-product {
        width: 220px;
        height: 300px;
    }
    
    .canvas-product.cap {
        width: 260px;
        height: 180px;
    }
    
    .canvas-product.hoodie {
        width: 240px;
        height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}