/**
 * Monova Design - Ana Stil Dosyası
 * Modern, light tema - Logo renkleri (Mor, Pembe, Turuncu)
 */

/* ===========================
   CSS Değişkenleri
   =========================== */
:root {
    /* Ana Renkler - Logo bazlı */
    --primary-purple: #8B5CF6;
    --primary-purple-dark: #7C3AED;
    --primary-pink: #EC4899;
    --primary-pink-dark: #DB2777;
    --primary-orange: #F59E0B;
    --primary-orange-dark: #D97706;
    
    /* Gradient */
    --gradient-main: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
    --gradient-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1), rgba(245, 158, 11, 0.1));
    --gradient-purple-pink: linear-gradient(135deg, #8B5CF6, #EC4899);
    --gradient-pink-orange: linear-gradient(135deg, #EC4899, #F59E0B);
    
    /* Nötr Renkler */
    --white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-soft: #F5F5F7;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    
    /* Durum Renkleri */
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    
    /* Tipografi */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 24px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-colored: 0 10px 40px -10px rgba(139, 92, 246, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

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

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

/* ===========================
   Loading Overlay
   =========================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 3px;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
    z-index: 1000;
    width: 100%;
    max-width: 100%;
}

.navbar > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 16px;
}

.navbar.scrolled {
    padding: 12px 0;
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    max-width: calc(100% - 60px);
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.navbar-brand .logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: 8px 16px !important;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-purple);
    background: var(--gradient-soft);
}

.navbar-right {
    gap: 12px;
}

.lang-switcher .btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.lang-switcher .btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.lang-switcher .dropdown-menu {
    min-width: 120px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
}

.lang-switcher .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.875rem;
}

.lang-switcher .dropdown-item:hover,
.lang-switcher .dropdown-item.active {
    background: var(--gradient-soft);
    color: var(--primary-purple);
}

.btn-cta {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: var(--gradient-main);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-colored);
    transition: var(--transition-base);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -10px rgba(139, 92, 246, 0.4);
    color: var(--white);
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* ===========================
   Main Content
   =========================== */
.main-content {
    padding-top: 65px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ===========================
   Container Override
   =========================== */
.container {
    padding-left: 16px;
    padding-right: 16px;
}

section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 12px 28px;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-main);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -10px rgba(139, 92, 246, 0.4);
    background: var(--gradient-main);
}

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

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

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
}

/* ===========================
   Section Styles
   =========================== */
.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    word-wrap: break-word;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    word-wrap: break-word;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px;
    width: 100%;
    max-width: 100vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    max-width: 100%;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(236, 72, 153, 0.1), transparent),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(245, 158, 11, 0.1), transparent);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-width: 100%;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.hero-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-purple);
    top: -100px;
    right: 10%;
    animation: floatPurple 8s ease-in-out infinite;
}

.hero-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-pink);
    bottom: 20%;
    left: -50px;
    animation: floatPink 10s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-shapes .shape-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-orange);
    bottom: -50px;
    right: 30%;
    animation: floatOrange 12s ease-in-out infinite;
    animation-delay: 2s;
}

/* Mor şekil - hafif yukarı aşağı ve sağa sola */
@keyframes floatPurple {
    0%, 100% { 
        transform: translate(0, 0); 
    }
    25% { 
        transform: translate(15px, -20px); 
    }
    50% { 
        transform: translate(-10px, -35px); 
    }
    75% { 
        transform: translate(-15px, -15px); 
    }
}

/* Pembe şekil - hafif yukarı aşağı */
@keyframes floatPink {
    0%, 100% { 
        transform: translate(0, 0); 
    }
    33% { 
        transform: translate(10px, -25px); 
    }
    66% { 
        transform: translate(-12px, -18px); 
    }
}

/* Turuncu şekil - hafif yukarı aşağı ve sağa sola */
@keyframes floatOrange {
    0%, 100% { 
        transform: translate(0, 0); 
    }
    25% { 
        transform: translate(18px, -22px); 
    }
    50% { 
        transform: translate(-8px, -30px); 
    }
    75% { 
        transform: translate(-18px, -12px); 
    }
}

.hero-content {
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.gradient-text {
    display: block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-features .feature-item i {
    color: var(--primary-purple);
    font-size: 1rem;
}

/* Hero Visual - Product Grid */
.hero-visual {
    padding: 40px;
    max-width: 100%;
    overflow: hidden;
}

.product-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
    padding-bottom: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    max-width: 100%;
}

.product-grid.product-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 28px;
    padding-bottom: 44px;
}

.product-cell {
    aspect-ratio: 1;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.product-cell:nth-child(3) .product-placeholder,
.product-cell:nth-child(5) .product-placeholder,
.product-cell:nth-child(9) .product-placeholder {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
}

.product-cell:nth-child(6) .product-placeholder {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(245, 158, 11, 0.15));
}

.product-placeholder:hover {
    transform: translateY(-4px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.product-showcase {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.product-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-showcase:hover {
    transform: translateY(-4px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.grid-brand {
    position: absolute;
    bottom: -12px;
    right: 24px;
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    box-shadow: var(--shadow-sm);
    box-shadow: var(--shadow-md);
}

/* ===========================
   Features Section
   =========================== */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-main);
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: var(--section-padding) 0;
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image .image-placeholder {
    aspect-ratio: 4/3;
    background: var(--gradient-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.about-image .image-placeholder i {
    font-size: 4rem;
    color: var(--primary-purple);
}

.about-image .image-placeholder span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.about-image .about-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.about-image .about-video {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.floating-card .stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card .stat-text {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-content {
    padding-left: 40px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

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

.stat-item .stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
}

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

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vm-item {
    display: flex;
    gap: 16px;
}

.vm-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--primary-purple);
}

.vm-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.vm-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   Dream Section
   =========================== */
.dream-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-soft);
}

.dream-section .section-title {
    max-width: 600px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.step-card:hover::before,
.step-card.active::before {
    transform: scaleX(1);
}

.step-card:hover,
.step-card.active {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.step-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    margin-bottom: 16px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.75rem;
    color: var(--primary-purple);
    transition: var(--transition-base);
}

.step-card:hover .step-icon,
.step-card.active .step-icon {
    background: var(--gradient-main);
    color: var(--white);
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===========================
   Products Section
   =========================== */
.products-section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 48px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    height: 100%;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--gradient-soft);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.product-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
}

.product-image .image-placeholder i {
    font-size: 3rem;
    color: var(--primary-purple);
    opacity: 0.5;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition-base);
}

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

.product-info {
    padding: 24px;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-purple);
    margin-bottom: 8px;
    display: block;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-original {
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-top: 4px;
}

.price-info-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-info-discount {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.price-discount {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.08);
    color: var(--error);
    font-size: 0.85rem;
    font-weight: 600;
}

.price-original-sm {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 4px;
}

.price-discount-sm {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-normal-sm {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.discount-badge-sm {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.08);
    color: var(--error);
    font-size: 0.75rem;
    font-weight: 600;
}

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

.no-products {
    text-align: center;
    padding: 80px 20px;
}

.no-products-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-products i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.no-products p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-soft);
}

.contact-info {
    padding-right: 40px;
}

.info-list {
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--primary-purple);
    box-shadow: var(--shadow-sm);
}

.info-content h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 1rem;
    color: var(--gray-800);
    margin: 0;
}

.info-content a {
    color: var(--gray-800);
}

.info-content a:hover {
    color: var(--primary-purple);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
}

.contact-form .form-control {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px;
    font-size: 1rem;
    transition: var(--transition-base);
}

.contact-form .form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.contact-form .form-floating > label {
    padding: 16px;
    color: var(--text-muted);
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.file-label {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.file-helper {
    color: var(--text-muted);
}

.file-selected {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    color: var(--gray-800);
    border: 1px dashed var(--gray-200);
    font-size: 0.95rem;
}

.recaptcha-wrapper {
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
}

.recaptcha-warning {
    font-size: 0.95rem;
}

.form-message {
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--gradient-main);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-links h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary-purple);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gray-400);
}

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

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--gray-800);
}

.copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.875rem;
}

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

/* ===========================
   Back to Top Button
   =========================== */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-colored);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 99;
    cursor: pointer;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    transform: translateY(-4px);
}

/* ===========================
   WhatsApp Floating Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip {
    position: absolute;
    left: calc(100% + 15px);
    background: var(--gray-900);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition-base);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--gray-900);
}

/* Social link WhatsApp hover */
.social-links .whatsapp-link:hover {
    background: #25D366 !important;
}

@media (max-width: 767.98px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ===========================
   Page Header (Ürünler Sayfası)
   =========================== */
.page-header {
    padding: 60px 0 40px;
    background: var(--gradient-soft);
}

.page-header nav[aria-label="breadcrumb"] {
    background: var(--white);
    padding: 5px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top:15px;
}

.breadcrumb {
    margin: 0;
    gap: 10px;
    align-items: center;
}

.breadcrumb-item {    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--gray-400);
    font-weight: 700;
}

.breadcrumb-item a {
    font-size: 14px;
    color: var(--gray-700);
    background: var(--gray-50);
    padding: 4px 6px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.breadcrumb-item a:hover {
    color: var(--primary-purple);
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.08);
}

.breadcrumb-item.active {
    color: var(--gray-900);
    font-weight: 700;
    background: rgba(137, 16, 185, 0.12);
    padding: 4px 6px;
    border-radius: var(--radius-md);
    font-size: 14px;
    border: 1px solid rgba(137, 92, 246, 0.2);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    margin-top:15px;
}

.page-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ===========================
   Products Page Section
   =========================== */
.products-page-section {
    padding: 60px 0 var(--section-padding);
}

.category-filter {
    margin-bottom: 48px;
}

.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

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

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 0 0 var(--section-padding);
}

.cta-card {
    background: var(--gradient-main);
    border-radius: var(--radius-xl);
    padding: 60px;
    color: var(--white);
}

.cta-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* ===========================
   Responsive Styles
   =========================== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .floating-card {
        right: 20px;
        bottom: -20px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar > .container {
        flex-wrap: nowrap;
    }
    
    .navbar-brand {
        max-width: calc(100% - 60px);
    }
    
    .navbar-brand .logo-text {
        font-size: 1.25rem;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        margin: 0 16px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
    }
    
    .navbar-nav {
        gap: 4px;
        width: 100%;
    }
    
    .navbar-right {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-200);
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .hero-visual {
        padding: 20px;
        margin-top: 40px;
    }
    
    .about-stats {
        gap: 24px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding: 32px;
    }
    
    .cta-card {
        padding: 40px;
        text-align: center;
    }
    
    .cta-card .text-lg-end {
        text-align: center !important;
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Mobilde shape animasyonlarını kapat */
    .hero-shapes .shape {
        animation: none !important;
    }
    
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar > .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .navbar-brand {
        max-width: calc(100% - 50px);
    }
    
    .navbar-brand .logo-img {
        height: 32px;
    }
    
    .navbar-brand .logo-text {
        font-size: 1.1rem;
    }
    
    .hero-section {
        min-height: auto;
        padding-bottom: 60px;
        padding-top: 70px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-visual {
        padding: 16px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
        padding-bottom: 40px;
    }
    
    .product-grid.product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
        padding-bottom: 40px;
    }
    
    .product-cell:nth-child(n+5) {
        display: none;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: -40px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        padding: 20px 24px;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 16px;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 54px;
        height: 54px;
    }
    
    .buy-buttons .button-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .thumbnail-list {
        gap: 8px;
        padding-bottom: 4px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    html, body {
        overflow-x: hidden !important;
    }
    
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .navbar > .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .navbar-brand {
        max-width: calc(100% - 45px);
    }
    
    .navbar-brand .logo-text {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .cta-card {
        padding: 32px 20px;
    }
    
    .filter-wrapper {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .product-gallery {
        margin-bottom: 24px;
    }
    
    .main-image {
        margin-bottom: 12px;
    }
    
    .page-header {
        padding: 60px 0 30px;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .legal-content {
        padding: 24px 16px;
    }
}

/* ===========================
   Product Detail Page
   =========================== */
.product-detail-section {
    padding: 40px 0 var(--section-padding);
}

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

.main-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-soft);
    margin-bottom: 16px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image .zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--gray-700);
    transition: var(--transition-base);
}

.main-image .zoom-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.thumbnail-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--primary-purple);
}

.no-image-placeholder {
    aspect-ratio: 1;
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

.no-image-placeholder i {
    font-size: 4rem;
}

.product-info {
    padding-left: 20px;
}

.product-category-badge {
    display: inline-block;
    background: var(--gradient-soft);
    color: var(--primary-purple);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.product-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.product-price-box {
    background: var(--gradient-soft);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-value {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-description {
    margin-bottom: 32px;
}

.product-description h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.product-description p {
    color: var(--text-light);
    line-height: 1.8;
}

.buy-buttons {
    margin-bottom: 32px;
}

.buy-buttons h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.buy-buttons .button-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

/* ===========================
   Blog
   =========================== */
.blog-section {
    padding: 60px 0 var(--section-padding);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-body {
    padding: 24px 24px 20px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-card-title a {
    color: var(--gray-900);
}

.blog-card-title a:hover {
    color: var(--primary-purple);
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-card-meta i {
    color: var(--primary-purple);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.blog-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-card-link:hover {
    color: var(--primary-pink);
}

.blog-detail-section {
    padding: 40px 0 var(--section-padding);
}

.blog-detail {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 32px 28px;
}

.blog-detail-content {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.8;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-detail-content p {
    margin-bottom: 1rem;
}

.blog-detail-content a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 1rem 0;
}

@media (min-width: 992px) {
    .buy-buttons .button-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

.btn-dolap {
    background: #FF5A36;
    color: white;
    border: none;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-dolap:hover {
    background: #e84d2a;
    color: white;
    transform: translateY(-2px);
}

.btn-dolap .btn-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.btn-shopier {
    background: #00C4B4;
    color: white;
    border: none;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-shopier:hover {
    background: #00a99c;
    color: white;
    transform: translateY(-2px);
}

.btn-shopier .btn-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-instagram {
    background: #E1306C;
    color: white;
    border: none;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-instagram:hover {
    background: #c1275c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3);
}

.whatsapp-cta {
    margin-bottom: 24px;
}

.quote-box {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
}

.quote-box p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.product-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.product-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-features .feature i {
    font-size: 1.25rem;
    color: var(--primary-purple);
}

/* Related Products */
.related-products-section {
    padding: 60px 0 var(--section-padding);
    background: var(--bg-soft);
}

.product-card .product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .product-detail-section {
        padding: 30px 0 60px;
    }
    
    .product-detail-section .row {
        --bs-gutter-y: 1.5rem;
    }
    
    .product-info {
        margin-top: 24px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .buy-buttons .button-group {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .product-detail-section .row {
        --bs-gutter-y: 1rem;
    }
    
    .product-info {
        margin-top: 16px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .buy-buttons .button-group {
        grid-template-columns: 1fr;
    }
    
    .buy-buttons .btn {
        width: 100%;
    }
    
    .product-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
}

