/* ========================================
   GLOBAL STONE BEAUTY - Ultra Modern Design
   ======================================== */

:root {
    --primary: #FF6B6B;
    --primary-dark: #EE5A5A;
    --primary-light: #FF8E8E;
    --secondary: #2EC4B6;
    --secondary-dark: #1A9B8C;
    --accent: #845EC2;
    --dark: #1A1A2E;
    --dark-light: #2D2D44;
    --white: #FFFFFF;
    --cream: #FFF9F5;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #CCCCCC;
    --gray-400: #999999;
    --gray-500: #666666;
    
    --gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    --gradient-secondary: linear-gradient(135deg, #2EC4B6 0%, #5DD9CD 100%);
    --gradient-accent: linear-gradient(135deg, #845EC2 0%, #A68CD9 100%);
    --gradient-hero: linear-gradient(135deg, #845EC2 0%, #FF6B6B 50%, #2EC4B6 100%);
    
    --shadow-sm: 0 2px 10px rgba(132, 94, 194, 0.1);
    --shadow-md: 0 8px 30px rgba(132, 94, 194, 0.15);
    --shadow-lg: 0 20px 60px rgba(132, 94, 194, 0.2);
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }

p { margin-bottom: var(--space-sm); }

a { color: var(--accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section { padding: var(--space-2xl) 0; }

.section-header { padding-top: var(--space-lg); }
.text-center { text-align: center; }

/* ========================================
   AFFILIATE DISCLOSURE
   ======================================== */
.affiliate-disclosure {
    background: var(--dark);
    color: var(--white);
    padding: 16px var(--space-xl);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0;
}

.affiliate-disclosure strong { color: var(--primary); }

/* ========================================
   HEADER
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

.header-main {
    padding: 20px var(--space-xl);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo-text span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav { position: relative; }

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 14px 16px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 80px 0 var(--space-2xl);
    background: var(--cream);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--gradient-hero);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--dark);
}

.hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-slow);
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image-container img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card:nth-child(1) { top: 10%; right: -20px; }
.hero-floating-card:nth-child(2) { bottom: 15%; left: -20px; animation-delay: 1s; }

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

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: var(--space-xs);
}

.floating-card-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
}

.floating-card-sub {
    font-size: var(--text-xs);
    color: var(--gray-400);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: 'Outfit', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    color: white;
}

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

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

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

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

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-section {
    background: var(--cream);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

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

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.product-content {
    padding: var(--space-xl);
}

.product-category {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.product-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.product-desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--dark);
}

.product-price-old {
    font-size: var(--text-base);
    color: var(--gray-400);
    text-decoration: line-through;
    margin-left: var(--space-xs);
}

.product-card .btn {
    width: 100%;
    margin-top: var(--space-md);
}

/* ========================================
   PRODUCT DETAIL
   ======================================== */
.product-detail-section {
    background: white;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--gray-100);
}

.product-main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-info {
    padding: var(--space-xl);
}

.product-info-category {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.product-info-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.product-info-desc {
    font-size: var(--text-lg);
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.specs-table {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

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

.specs-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.specs-table tr:last-child { border-bottom: none; }

.specs-table td {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--gray-400);
    width: 40%;
}

.specs-table td:last-child { color: var(--dark); }

.product-pricing {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.price-current {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--primary);
}

.price-original {
    font-size: var(--text-xl);
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-save {
    background: var(--secondary);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 700;
}

.product-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-cta .btn {
    width: 100%;
}

.cta-note {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--gray-400);
    margin-top: var(--space-sm);
}

/* ========================================
   TRUST STATS
   ======================================== */
.trust-section {
    background: var(--gradient-hero);
    padding: var(--space-xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.trust-item { padding: var(--space-md); }

.trust-value {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-xs);
}

.trust-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-section {
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.review-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

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

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.review-stars svg {
    width: 20px;
    height: 20px;
    fill: #FFB800;
}

.review-text {
    font-size: var(--text-base);
    font-style: italic;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.review-name {
    font-weight: 600;
    color: var(--dark);
    font-size: var(--text-sm);
}

.review-location {
    font-size: var(--text-xs);
    color: var(--gray-400);
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
    background: var(--cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark);
    transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-500);
    stroke-width: 2;
    fill: none;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon svg { stroke: white; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: var(--text-base);
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    background: var(--cream);
    padding: 80px 0 var(--space-2xl);
    min-height: auto;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

.contact-info {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.contact-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

.contact-list svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.contact-info-extra {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info-extra h4 {
    color: white;
    margin-bottom: var(--space-sm);
}

.contact-info-extra ul {
    list-style: none;
}

.contact-info-extra li {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-xs);
    padding-left: var(--space-sm);
    position: relative;
}

.contact-info-extra li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.contact-form-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-sm);
    font-family: 'Outfit', sans-serif;
    font-size: var(--text-base);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: white;
    transition: border-color var(--transition-fast);
}

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

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

/* ========================================
   REVIEW PAGE
   ======================================== */
.review-page {
    background: var(--cream);
    padding: 80px 0 var(--space-2xl);
    min-height: auto;
}

.review-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.review-title {
    font-size: var(--text-4xl);
    margin: var(--space-md) 0 var(--space-xl);
}

.review-container h2 {
    font-size: var(--text-xl);
    margin: var(--space-lg) 0 var(--space-sm);
    color: var(--accent);
}

.review-container p {
    color: var(--gray-500);
    line-height: 1.8;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.pros-box,
.cons-box {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.pros-box {
    background: #E8F5E9;
}

.cons-box {
    background: #FFEBEE;
}

.pros-box h3 { color: #2E7D32; margin-bottom: var(--space-sm); }
.cons-box h3 { color: #C62828; margin-bottom: var(--space-sm); }

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
}

.pros-box li,
.cons-box li {
    color: var(--gray-500);
    margin-bottom: var(--space-xs);
}

.rating {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary) !important;
}

.cta-box {
    text-align: center;
    padding: var(--space-xl);
    background: var(--cream);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.cta-box p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: white;
}

.footer-main {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
}

.footer-brand { max-width: 320px; }

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.footer-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

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

.footer-links li { margin-bottom: var(--space-sm); }

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

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

.footer-contact {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.footer-bottom {
    padding: var(--space-lg) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a { color: rgba(255, 255, 255, 0.5); }
.footer-legal a:hover { color: var(--primary); }

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-md) var(--space-lg);
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show { display: block; }

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.cookie-text a { color: var(--accent); }

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
}

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

.btn-cookie-decline {
    background: transparent;
    color: var(--gray-500);
    border: 1px solid var(--gray-300);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-container { transform: none; }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery { position: static; }
    
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.5rem;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
        gap: 0;
    }
    
    .nav-list.active { display: flex; }
    
    .nav-list li { border-bottom: 1px solid var(--gray-100); }
    
    .nav-link { display: block; padding: var(--space-sm) 0; }
    
    .menu-toggle { display: flex; }
    
    .product-grid { grid-template-columns: 1fr; }
    
    .reviews-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .cookie-inner { flex-direction: column; text-align: center; }
    
    .pros-cons { grid-template-columns: 1fr; }
    
    .review-container { padding: var(--space-lg); }
}

@media (max-width: 480px) {
    :root {
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
    }
    
    .container { padding: 0 var(--space-sm); }
    
    .hero-floating-card { display: none; }
    
    .trust-grid { grid-template-columns: 1fr 1fr; }
}
