/* ===========================================
   TECHGURUFINDS - LUXURY BLACK & GOLD THEME
   "The Golden Path Towards Your Shopping Experience"
=========================================== */

/* Variables - Black & Gold Luxury Palette */
:root {
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --gold-shine: #F5D061;
    --black: #000000;
    --black-light: #0D0D0D;
    --black-medium: #1A1A1A;
    --black-soft: #2A2A2A;
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    --gray: #888888;
    --gray-light: #AAAAAA;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    background: var(--black); 
    color: var(--white-soft); 
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; }

/* Container */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
.navbar { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000; 
    background: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}
.navbar.scrolled { 
    background: rgba(0, 0, 0, 0.98); 
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}
.nav-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 1rem 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { 
    width: 45px; 
    height: 45px; 
    background: linear-gradient(135deg, var(--gold), var(--gold-light)); 
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--black);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.logo-text { 
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; 
    font-weight: 700; 
    background: linear-gradient(135deg, var(--gold), var(--gold-light)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { 
    color: var(--white-soft); 
    font-weight: 500; 
    position: relative;
    letter-spacing: 0.5px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hero Section */
.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    overflow: hidden; 
    padding: 80px 2rem 4rem;
    background: radial-gradient(ellipse at center, var(--black-medium) 0%, var(--black) 70%);
}

/* Gold Background Orbs */
.ai-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}
.ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float-orb 20s ease-in-out infinite;
}
.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold), transparent);
    top: -15%;
    right: -15%;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-dark), transparent);
    bottom: -15%;
    left: -15%;
    animation-delay: 5s;
}
.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-light), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    opacity: 0.2;
}
@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Floating Cards - Premium Gold Style */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}
.float-card {
    position: absolute;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(13, 13, 13, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s;
}
.float-card:hover { transform: scale(1.05); }
.fc-1 { top: 15%; left: 8%; width: 280px; animation: float 8s ease-in-out infinite; }
.fc-2 { top: 60%; right: 12%; width: 300px; animation: float 10s ease-in-out infinite 2s; }
.fc-3 { bottom: 18%; left: 12%; width: 260px; animation: float 9s ease-in-out infinite 4s; }
.fc-4 { top: 32%; right: 8%; width: 240px; animation: float 7s ease-in-out infinite 1s; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}
.fc-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: inline-block; }
.fc-title { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
.fc-desc { font-size: 0.875rem; color: var(--gray-light); line-height: 1.4; }
.fc-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.1));
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Hero Content */
.hero-content { 
    position: relative; 
    z-index: 2; 
    text-align: center; 
    max-width: 950px; 
}
.hero-badge {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.2); }
}
.hero-title { 
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 1.5rem; 
    color: var(--white);
    letter-spacing: -0.02em;
}
.gradient-text { 
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-shine) 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    animation: gold-shimmer 3s ease infinite;
    background-size: 200% 200%;
}
@keyframes gold-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-subtitle { 
    font-size: 1.3rem; 
    color: var(--gray-light); 
    margin-bottom: 2.5rem; 
    line-height: 1.7;
    font-weight: 300;
}
.hero-cta { 
    display: flex; 
    gap: 1.25rem; 
    justify-content: center; 
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

/* Buttons - Premium Gold */
.btn { 
    padding: 1rem 2.5rem; 
    border-radius: 50px; 
    font-weight: 600; 
    transition: all 0.3s; 
    display: inline-block; 
    cursor: pointer; 
    border: none; 
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primary { 
    background: linear-gradient(135deg, var(--gold), var(--gold-light)); 
    color: var(--black); 
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}
.btn-secondary { 
    background: transparent; 
    color: var(--gold); 
    border: 2px solid var(--gold);
}
.btn-secondary:hover { 
    background: rgba(212, 175, 55, 0.1); 
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}
.btn-outline { 
    background: transparent; 
    color: var(--gold); 
    border: 2px solid var(--gold);
}
.btn-outline:hover { 
    background: rgba(212, 175, 55, 0.15); 
}

/* Stats - Gold Accents */
.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}
.stat-label { color: var(--gray); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Category Filter - Gold Pills */
.category-filter { 
    padding: 3rem 2rem 1rem; 
    background: var(--black); 
}
.category-tabs { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
    max-width: 1400px;
    margin: 0 auto;
}
.category-tab { 
    padding: 0.875rem 1.75rem; 
    border-radius: 50px; 
    background: var(--black-medium); 
    color: var(--white-soft); 
    font-weight: 600; 
    cursor: pointer; 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    transition: all 0.3s; 
    font-size: 0.875rem;
}
.category-tab:hover { 
    border-color: var(--gold); 
    color: var(--gold); 
    transform: translateY(-2px);
}
.category-tab.active { 
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)); 
    color: var(--black); 
    border-color: transparent; 
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}
.category-count { 
    display: inline-block; 
    margin-left: 0.5rem; 
    padding: 0.125rem 0.5rem; 
    background: rgba(0,0,0,0.3); 
    border-radius: 20px; 
    font-size: 0.75rem;
}

/* Products Section */
.products { 
    padding: 3rem 2rem 5rem; 
    background: var(--black); 
}
.section-header { 
    text-align: center; 
    margin-bottom: 3rem; 
}
.section-title { 
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem; 
    font-weight: 800; 
    margin-bottom: 0.75rem; 
    color: var(--white);
}
.section-subtitle { color: var(--gray); font-size: 1.1rem; }

/* Product Grid */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 2rem; 
}

/* Product Cards - Premium Gold Border */
.product-card { 
    background: linear-gradient(145deg, var(--black-medium), var(--black-light)); 
    border-radius: 20px; 
    overflow: hidden; 
    transition: all 0.4s; 
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.3s;
}
.product-card:hover::before {
    opacity: 1;
}
.product-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}
.product-card.hidden { display: none; }
.product-image { 
    height: 260px; 
    overflow: hidden; 
    background: var(--black-soft); 
    position: relative; 
}
.product-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s;
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-badge { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)); 
    color: var(--black); 
    padding: 0.5rem 1.25rem; 
    border-radius: 50px; 
    font-size: 0.75rem; 
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-info { padding: 1.75rem; }
.product-name { 
    font-size: 1.125rem; 
    font-weight: 700; 
    margin-bottom: 0.75rem; 
    color: var(--white);
    line-height: 1.4;
}
.product-description { 
    color: var(--gray); 
    font-size: 0.875rem; 
    margin-bottom: 1.25rem;
    line-height: 1.6; 
}
.product-meta { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    margin-bottom: 1.25rem; 
}
.product-price { 
    font-size: 1.6rem; 
    font-weight: 800; 
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-views { 
    font-size: 0.875rem; 
    color: var(--gray); 
}
.product-actions { 
    display: flex; 
    gap: 0.75rem; 
}
.product-actions .btn { 
    flex: 1; 
    padding: 0.875rem 1rem; 
    font-size: 0.875rem; 
    text-align: center;
}
.no-products { 
    text-align: center; 
    padding: 4rem 2rem; 
    color: var(--gray); 
    grid-column: 1 / -1; 
}

/* Product Detail Page */
.product-detail { 
    padding: 8rem 2rem 5rem; 
    min-height: 100vh;
    background: var(--black); 
}
.breadcrumb { 
    display: flex; 
    gap: 0.5rem; 
    margin-bottom: 3rem; 
    font-size: 0.875rem; 
    color: var(--gray); 
    flex-wrap: wrap; 
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: linear-gradient(145deg, var(--black-medium), var(--black-light));
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.product-detail-image { position: sticky; top: 100px; }
.product-detail-image img { 
    width: 100%; 
    border-radius: 20px; 
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.product-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-detail-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}
.product-detail-meta { margin-bottom: 2rem; }
.views-count { color: var(--gray); font-size: 0.875rem; }
.product-detail-price {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    padding: 1.75rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-detail-description h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
}
.product-detail-description p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.product-detail-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.product-features {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0.3));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.product-features h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
}
.product-features ul { list-style: none; }
.product-features li {
    padding: 0.875rem 0;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.product-features li:last-child { border-bottom: none; }

/* Contact Page */
.contact-hero {
    padding: 8rem 2rem 3rem;
    background: linear-gradient(180deg, var(--black-medium), var(--black));
    text-align: center;
}
.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}
.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
}
.contact-section { padding: 5rem 2rem; background: var(--black); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-form-wrapper h2,
.contact-map-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gold);
}
.contact-form {
    background: linear-gradient(145deg, var(--black-medium), var(--black-light));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white-soft);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(1) invert(0.9) hue-rotate(180deg);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    background: linear-gradient(145deg, var(--black-medium), var(--black-light));
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.contact-info-item .icon { font-size: 2rem; }
.contact-info-item h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--gold);
}
.contact-info-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.alert-success {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
}
.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 2rem 5rem;
    background: var(--black);
}
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}
.legal-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}
.last-updated {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--white-soft);
}
.legal-content p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}
.legal-content li {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Footer - Premium Gold Accents */
.footer {
    background: linear-gradient(180deg, var(--black-medium), var(--black));
    color: var(--white-soft);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.125rem;
}
.footer-col p { color: var(--gray); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
    color: var(--gray);
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-title { font-size: 3.5rem; }
    .hero-stats { gap: 2.5rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { min-height: auto; padding: 100px 1.5rem 3rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-cta { flex-direction: column; }
    .floating-cards .float-card { display: none; }
    .hero-stats { flex-direction: column; gap: 2rem; padding-top: 2rem; }
    .products-grid { grid-template-columns: 1fr; }
    .category-tabs { gap: 0.5rem; }
    .category-tab { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
    .page-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .product-detail-price { padding: 1.25rem; }
    .price-value { font-size: 2.25rem; }
}
