/* =========================================================================
   HesapPro - Premium Light Theme Styles
   ========================================================================= */

:root {
    /* Color Palette - Light Theme */
    --bg-main: #f8fafc;
    --bg-alt: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --border-color: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-muted-darker: #475569;

    /* Gradients (Simplified to sleek monochrome) */
    --primary-gradient: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    --primary-gradient-hover: linear-gradient(135deg, #020617 0%, #1e293b 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-blur: blur(12px);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 15px 30px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 8px 16px rgba(99, 102, 241, 0.25);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.bg-light-alt {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Background Effects for Light Theme */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background-color: var(--bg-main);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: #6366f1;
}

.glow-2 {
    bottom: 20%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: #a855f7;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    mask-image: radial-gradient(circle at center, black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 60%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    gap: 8px;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(99, 102, 241, 0.35);
}

.btn-outline {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--bg-card-hover);
    border-color: #cbd5e1;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    /* Light glass effect */
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.logo i {
    color: #6366f1;
    font-size: 1.75rem;
}

.logo b {
    color: #6366f1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #6366f1;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 230px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px;
    z-index: 100;
    border: 1px solid var(--border-color);
}

/* Desktop hover - sadece 769px ve üstünde */
@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    color: var(--text-main) !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--bg-light-alt);
    color: var(--text-dark) !important;
}

.dropdown-menu a i {
    font-size: 1.4rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.75rem;
    cursor: pointer;
}

/* Glass Card Component */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.checkout-page .glass-card {
    padding: 2rem;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    font-weight: 700;
    font-size: 0.875rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted-darker);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-indicators span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img,
.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
    box-shadow: var(--shadow-sm);
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-main);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 2rem;
}

.mockup-card {
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    background: white;
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.mockup-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6366f1;
    padding: 2px;
}

.mockup-info h4 {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.mockup-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.mockup-header>i {
    margin-left: auto;
    color: #a855f7;
    font-size: 1.75rem;
}

.mockup-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-main);
    border-radius: 12px;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat span {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 4px;
    font-weight: 500;
}

.stat strong {
    font-size: 1.25rem;
    color: var(--text-main);
}

.mockup-action {
    text-align: center;
    padding: 14px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.mockup-action:hover {
    background: rgba(99, 102, 241, 0.2);
}

.floating-badge {
    position: absolute;
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.875rem 1.25rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
    color: var(--text-main);
}

.floating-badge i {
    font-size: 1.25rem;
}

.fb-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
    color: #10b981;
}

.fb-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 2s;
    color: #3b82f6;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections Global */
section {
    padding: 2.5rem 0;
}

/* Reduced spacing */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted-darker);
    font-size: 1.125rem;
}

/* Accounts Grid */
.accounts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex: 1 1 260px;
    max-width: 320px;
    width: 100%;
}

.account-card:hover {
    transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-lg);
}

.card-cover {
    height: 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.card-cover i {
    font-size: 4.5rem;
    color: #e1306c;
    /* Instagram brand color */
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(225, 48, 108, 0.2));
}

.card-cover.tiktok {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.card-cover.tiktok i {
    color: #000;
    background: -webkit-linear-gradient(45deg, #25f4ee 0%, #000 50%, #fe2c55 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.card-cover.verified-account {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.card-cover.verified-account i {
    color: #3b82f6;
    background: -webkit-linear-gradient(45deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.25));
}

.account-card:hover .card-cover i {
    transform: scale(1.1);
}

.card-body {
    padding: 1.25rem;
}

.account-category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.account-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.username {
    font-size: 1.35rem;
    color: var(--text-main);
}

.verified {
    color: #3b82f6;
    font-size: 1.25rem;
}

.stats-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted-darker);
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-item i {
    color: #8b5cf6;
    font-size: 1.125rem;
}

/* Added feature list */
.account-features {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.account-features li i {
    color: #10b981;
    font-size: 1rem;
}

.price-row {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 0.75rem;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.action-buttons .btn {
    white-space: nowrap;
    padding: 0.6rem 0.8rem !important;
    font-size: 0.9rem !important;
    flex: 1 1 auto !important;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.btn-block {
    width: 100%;
}

/* Info Section */
.info-section {
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.info-text>p {
    color: var(--text-muted-darker);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Reduced margin */

.feature-list li {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    /* Reduced margin */
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-list h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.feature-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 0.5rem;
    background: white;
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-card .counter {
    font-size: 2.75rem;
    line-height: 1;
    color: var(--text-main);
}

.stat-card p {
    color: var(--text-muted-darker);
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.faq-question i {
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: var(--text-muted-darker);
    transition: all 0.3s ease;
    line-height: 1.7;
}

.faq-item.active {
    border-color: #6366f1;
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #6366f1;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
}

/* Premium FAQ Section (Product Page) */
.premium-faq-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.premium-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
}

.premium-faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.premium-faq-header .icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #6366f1;
    font-size: 2rem;
}

.premium-faq-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
    justify-content: center;
}

.faq-divider {
    border: none;
    height: 1px;
    background: var(--border-color);
    width: 60%;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}

.premium-faq-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.premium-faq-container .faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-faq-container .faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.08);
}

.premium-faq-container .faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.premium-faq-container .faq-question>i:first-child {
    font-size: 1.5rem;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem;
    border-radius: 10px;
    transform: none;
    /* override default faq rotation for first icon */
}

.premium-faq-container .faq-question .toggle-icon {
    margin-left: auto;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.premium-faq-container .faq-item.active {
    border-color: #6366f1;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
}

.premium-faq-container .faq-item.active .toggle-icon {
    transform: rotate(180deg);
    color: #6366f1;
}

.premium-faq-container .faq-answer {
    padding: 0 1.5rem 1.5rem 4rem;
    /* Indented to match text */
    color: var(--text-muted-darker);
    font-size: 1rem;
    line-height: 1.6;
}

/* Premium Feature List (Kurucu Mail vs.) */
.premium-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.premium-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-feature-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    /* Soft purple border on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.08);
}

.premium-feature-card .pf-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.1);
    /* Matching purple tint */
    color: #a855f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.premium-feature-card .pf-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.premium-feature-card .pf-content strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.premium-feature-card .pf-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb-area {
    padding-top: 100px;
    padding-bottom: 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb a:hover {
    color: #6366f1;
}

.breadcrumb .separator {
    color: #cbd5e1;
}

.breadcrumb .current {
    color: var(--text-main);
    font-weight: 600;
}

/* Product Detail Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 4rem;
    align-items: start;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Product Hero */
.product-hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
}

.product-hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.08) 0%, rgba(245, 96, 64, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-hero-icon.tiktok {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(37, 244, 238, 0.1) 100%);
}

.product-hero-icon i {
    font-size: 5rem;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(225, 48, 108, 0.2));
}

.product-hero-icon.tiktok i {
    background: -webkit-linear-gradient(45deg, #25f4ee 0%, #000 50%, #fe2c55 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-hero-icon.verified-account {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
}

.product-hero-icon.verified-account i {
    background: -webkit-linear-gradient(45deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.25));
}

.product-title-area h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-icon {
    color: #3b82f6;
    font-size: 2rem;
}

.category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.product-meta-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-meta-tags .tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted-darker);
    background: var(--bg-main);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.product-meta-tags .tag.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.2);
}

.product-meta-tags .tag i {
    font-size: 1.1rem;
}

/* Product Sections */
.product-section h2 {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.product-section h2 i {
    color: #6366f1;
}

/* Detailed Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.stat-box i {
    font-size: 2rem;
    color: #a855f7;
    margin-bottom: 1rem;
}

.stat-box .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-box strong {
    font-size: 1.5rem;
    color: var(--text-main);
    font-family: var(--font-heading);
}

/* Demographics Grid */
.demographics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.demo-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.demo-pie {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.male-dominant {
    background: conic-gradient(#3b82f6 0% 75%, var(--bg-main) 75% 100%);
}

.female-dominant {
    background: conic-gradient(#ec4899 0% 25%, var(--bg-main) 25% 100%);
}

.tr-dominant {
    background: conic-gradient(#ef4444 0% 90%, var(--bg-main) 90% 100%);
}

.demo-info {
    display: flex;
    flex-direction: column;
}

.demo-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.demo-info strong {
    font-size: 1.25rem;
    color: var(--text-main);
}

/* Description Bullets */
.desc-content p {
    font-size: 1.05rem;
    color: var(--text-muted-darker);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-bullets li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted-darker);
}

.feature-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #6366f1;
    font-size: 1.5rem;
    line-height: 1;
}

.feature-bullets li strong {
    color: var(--text-main);
}

/* Sticky Sidebar */
.sticky-cart {
    position: sticky;
    top: 100px;
}

.cart-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.cart-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.cart-price {
    font-size: 3rem;
    color: var(--text-main);
    line-height: 1;
}

.cart-price .currency {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.cart-lines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-lines .line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.cart-lines .line span {
    color: var(--text-muted-darker);
    font-weight: 500;
}

.cart-lines .line del {
    color: var(--text-muted);
    font-weight: 600;
}

.cart-lines .line.highlight {
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    border: 1px dashed rgba(16, 185, 129, 0.3);
}

.cart-lines .line.highlight span {
    color: #059669;
}

.cart-lines .line.highlight strong {
    color: #059669;
    font-size: 1.25rem;
}

.trust-box {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.t-line {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.t-line i {
    font-size: 2rem;
    margin-top: 4px;
}

.text-success {
    color: #10b981;
}

.text-primary {
    color: #6366f1;
}

.t-line div {
    display: flex;
    flex-direction: column;
}

.t-line strong {
    color: var(--text-main);
    font-size: 1rem;
}

.t-line span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pt-3 {
    padding-top: 1.5rem;
}

/* Responsive Adjustments for Product Page */
@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .sticky-cart {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-hero {
        flex-direction: column;
        text-align: center;
    }

    .product-title-area h1 {
        justify-content: center;
        font-size: 2rem;
    }

    .product-meta-tags {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .demographics-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
    background: white;
    /* Light solid footer */
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    /* Reduced margin */
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1.25rem 0;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted-darker);
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted-darker);
    font-weight: 500;
}

.footer-links a:hover {
    color: #6366f1;
}

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text-main);
    outline: none;
    font-family: inherit;
}

.newsletter-form input:focus {
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Category Page Hero */
.category-hero {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.category-hero.instagram-theme {
    background: linear-gradient(to bottom, rgba(225, 48, 108, 0.03), var(--bg-main));
}

.category-hero.tiktok-theme {
    background: linear-gradient(to bottom, rgba(37, 244, 238, 0.03), var(--bg-main));
}

.category-hero.verified-account-theme {
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.04), var(--bg-main));
}

.cat-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cat-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-hero.instagram-theme .cat-hero-icon {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(245, 96, 64, 0.1) 100%);
}

.category-hero.instagram-theme .cat-hero-icon i {
    font-size: 3rem;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-hero.tiktok-theme .cat-hero-icon {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(37, 244, 238, 0.1) 100%);
}

.category-hero.tiktok-theme .cat-hero-icon i {
    font-size: 3rem;
    background: -webkit-linear-gradient(45deg, #25f4ee 0%, #000 50%, #fe2c55 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-hero.verified-account-theme .cat-hero-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
}

.category-hero.verified-account-theme .cat-hero-icon i {
    font-size: 3rem;
    background: -webkit-linear-gradient(45deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cat-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cat-hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cat-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.05), transparent 25%);
    z-index: 1;
    pointer-events: none;
}

.pt-3 {
    padding-top: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.pt-5 {
    padding-top: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* SEO Content Block */
.seo-section {
    padding-bottom: 2rem;
}

.seo-content {
    padding: 3rem;
    border-top: 4px solid #6366f1;
}

.seo-content h2 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

.seo-content strong {
    color: var(--text-main);
    font-weight: 600;
}

/* ========================================= */
/* Checkout Page Styles                      */
/* ========================================= */
.checkout-page {
    background-color: #f8fafc;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.checkout-summary-area .order-summary-card {
    padding: 2.5rem;
}

.checkout-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-footer {
    border-top: 1px solid var(--border-color);
}

.btn-lg {
    border-radius: 12px;
    font-size: 1.1rem;
    height: 56px;
    padding: 0 2rem;
}

.checkout-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Checkout Form elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-method-card {
    display: block;
    cursor: pointer;
}

.payment-method-card input[type="radio"] {
    display: none;
}

.pm-content {
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.pm-content i.ph-fill {
    font-size: 2.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.pm-text h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.pm-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.pm-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #cbd5e1;
    font-size: 1.2rem;
    transition: var(--transition);
}

.payment-method-card:hover .pm-content {
    border-color: #94a3b8;
}

.payment-method-card.active .pm-content {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.03);
}

.payment-method-card.active .pm-content i.ph-fill {
    color: #6366f1;
}

.payment-method-card.active .pm-check {
    color: #6366f1;
}

.checkout-submit-btn {
    padding: 1.25rem;
    font-size: 1.15rem;
    border-radius: 12px;
}

.security-notice {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

/* Order Summary */
.order-summary-card {
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.summary-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.s-product-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-product-icon i {
    font-size: 2.5rem;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #dc2743 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.s-product-icon.tiktok i {
    background: -webkit-linear-gradient(45deg, #25f4ee 0%, #fe2c55 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.s-product-icon.verified-account i {
    background: -webkit-linear-gradient(45deg, #60a5fa 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.s-product-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.s-category {
    font-size: 0.85rem;
    color: #6366f1;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.s-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.s-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.s-total {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0;
}

.text-success {
    color: #10b981;
}

.summary-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-color);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.trust-badge i {
    color: #10b981;
    font-size: 1.25rem;
}

/* ========================================= */
/* About Us Page Styles                      */
/* ========================================= */
.about-hero {
    position: relative;
    padding: 7rem 0 5rem;
    text-align: center;
    overflow: hidden;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.about-hero .badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-hero-bg {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

/* Base style for glass grids (stats) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    padding: 3rem;
    border-radius: 24px;
}

.stat-box i {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(45deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted-darker);
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: #cbd5e1;
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mv-icon i {
    font-size: 2rem;
    color: #6366f1;
}

.mv-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Story Section */
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #6366f1;
    color: white;
    padding: 2rem;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.exp-years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

.story-text h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
}

.story-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-content,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .seo-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--bg-card);
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--border-color);
        z-index: 1000;
        gap: 0;
    }

    .nav-links a {
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .nav-dropdown .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        background: #f8fafc;
        margin: 0.5rem 0 0 0;
        border-radius: 8px;
        padding: 0.5rem;
        transform: none;
        border: none;
        min-width: auto;
        width: 100%;
        left: 0;
        right: 0;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem !important;
        border-bottom: none !important;
        font-size: 0.95rem;
        width: 100%;
        text-align: left;
    }

    .dropdown-menu a i {
        font-size: 1.2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    /* Hakkımızda Sayfası Mobil */
    .about-hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        height: 300px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .exp-years {
        font-size: 2rem;
    }

    .exp-text {
        font-size: 0.7rem;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .checkout-summary-area {
        order: -1;
        width: 100%;
        max-width: 100%;
    }

    .checkout-form-area {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .checkout-page .glass-card {
        padding: 1.5rem;
    }

    .order-summary-card {
        position: static;
        width: 100%;
    }

    .checkout-summary-area .order-summary-card {
        padding: 1.5rem;
    }

    .checkout-title {
        font-size: 1.2rem;
    }

    .btn-lg {
        font-size: 1rem;
        height: 50px;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0;
    }



    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accounts-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
    }

    .info-visual {
        flex-direction: column;
    }

    .stat-card {
        flex: 1;
        padding: 2rem 1rem;
    }
}

/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
    .checkout-page .glass-card {
        padding: 1.2rem;
    }

    .order-summary-card {
        width: 100%;
    }

    .checkout-summary-area .order-summary-card {
        padding: 1.2rem;
    }

    .checkout-title {
        font-size: 1.1rem;
    }

    .btn-lg {
        font-size: 0.95rem;
        height: 48px;
    }

    /* Hakkımızda Mobil 480px */
    .about-hero-content h1 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .stat-box {
        padding: 1.2rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .mv-card {
        padding: 1.5rem;
    }

    .story-image {
        height: 250px;
    }
}

/* Floating WhatsApp Premium Button (Realistic Style) */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 65px;
    height: 65px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.wa-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-wa 2s infinite;
    opacity: 0.6;
}

@keyframes pulse-wa {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes wa-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(-2px);
    }
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5), 0 8px 15px rgba(0, 0, 0, 0.25);
}

.floating-whatsapp:hover::before {
    animation: none;
    opacity: 0;
}

/* Premium Logo Styles */
.premium-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon-wrapper {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-logo 3s infinite;
}

.logo-icon-wrapper i {
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.logo-text-wrapper {
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text-main {
    color: var(--text-main);
}

.logo-text-accent {
    background: linear-gradient(to right, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

@keyframes shimmer-logo {
    100% {
        left: 200%;
    }
}