:root {
    --bg-color: #0b0f15;
    --text-main: #ffffff;
    --text-muted: #8b9bb4;
    
    /* Melon Script Colors */
    --accent-red: #ff3b30;
    --accent-pink: #ff2d55;
    --accent-green: #34c759;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);
}

.success-border {
    border: 1px solid var(--accent-green) !important;
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.2);
}

.error-border {
    border: 1px solid var(--accent-red) !important;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 999999;
    display: none !important;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px var(--accent-green)); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-pink));
    border-radius: 4px;
    animation: loadingBar 1.5s infinite ease-in-out;
}

@keyframes loadingBar {
    0% { left: -50%; }
    100% { left: 100%; }
}

.preloader-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: blinkText 1.5s infinite;
}

@keyframes blinkText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Animated Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(120px);
    opacity: 0.4;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.blob.red {
    width: 400px;
    height: 400px;
    background: var(--accent-red);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob.pink {
    width: 500px;
    height: 500px;
    background: var(--accent-pink);
    top: 40%;
    right: -15%;
    animation-delay: -5s;
}

.blob.green {
    width: 350px;
    height: 350px;
    background: var(--accent-green);
    bottom: -10%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
    100% { transform: translate(-50px, 20px) scale(0.9); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}


/* Header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    z-index: 11000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Main Navigation in Header */
.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

#header-nav, #header-nav-product, .header-nav-pill {
    list-style: none !important;
    display: flex !important;
    align-items: center;
    gap: 5px;
    background: rgba(13, 17, 23, 0.6);
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#header-nav .nav-item, #header-nav-product .nav-item, .header-nav-pill .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

#header-nav .nav-item a, #header-nav-product .nav-item a, .header-nav-pill .nav-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

#header-nav .nav-item a::after, #header-nav-product .nav-item a::after, .header-nav-pill .nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

#header-nav .nav-item:hover a::after, #header-nav-product .nav-item:hover a::after, .header-nav-pill .nav-item:hover a::after,
#header-nav .nav-item.active a::after, #header-nav-product .nav-item.active a::after, .header-nav-pill .nav-item.active a::after {
    transform: scaleX(1);
    transform-origin: left;
}

#header-nav .nav-item:hover a, #header-nav-product .nav-item:hover a, .header-nav-pill .nav-item:hover a,
#header-nav .nav-item.active a, #header-nav-product .nav-item.active a, .header-nav-pill .nav-item.active a {
    color: #fff;
}
    border-radius: 50px;
}

#header-nav .nav-item:hover a, #header-nav-product .nav-item:hover a, 
#header-nav .nav-item.active a, #header-nav-product .nav-item.active a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Vertical Separator */
.nav-separator {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
}

/* Pill Action Styles */
.header-pill-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
}

.cart-btn-pill {
    position: relative;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.cart-btn-pill:hover {
    color: #fff;
    transform: scale(1.1);
}

.btn-login-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login-pill:hover {
    background: var(--accent-green);
    color: #000;
    border-color: var(--accent-green);
    box-shadow: 0 0 15px rgba(26, 219, 138, 0.3);
}

.user-section-pill {
    display: flex;
    align-items: center;
}

.profile-trigger-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 50px;
    transition: background 0.3s;
}

.profile-trigger-pill:hover {
    background: rgba(255, 255, 255, 0.05);
}

.avatar-circle-pill {
    width: 26px;
    height: 26px;
    background: #a6d8e7;
    color: #0b0f15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

.username-pill {
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dropdown Menu Styles */
.nav-dropdown, .dropdown-menu {
    position: absolute;
    top: 100%;
    background: #0b0f15;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(26, 219, 138, 0.1);
    backdrop-filter: none;
    z-index: 21000 !important;
    margin-top: 10px;
}

.nav-dropdown {
    left: 50%;
    transform: translateX(-50%) translateY(0px); 
}

.dropdown-menu {
    right: 0;
    transform: translateY(0px);
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

#header-nav .nav-item .nav-dropdown, #header-nav-product .nav-item .nav-dropdown, .header-nav-pill .nav-item .nav-dropdown {
    opacity: 0;
    visibility: hidden;
}

#header-nav .nav-item.show .nav-dropdown, #header-nav-product .nav-item.show .nav-dropdown, .header-nav-pill .nav-item.show .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.nav-dropdown li, .dropdown-list li {
    list-style: none;
    width: 100%;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 5px 0;
}

.dropdown-header {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 5px;
}

.dropdown-header span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.dropdown-header .balance {
    display: block;
    font-size: 1.1rem;
    color: var(--accent-green);
    font-weight: 800;
    margin-top: 2px;
}

.dropdown-list {
    list-style: none;
    padding: 0;
}

.nav-dropdown li a, .dropdown-list li a {
    display: block;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 0 !important;
    transition: all 0.2s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.nav-dropdown li a:hover, .dropdown-list li a:hover {
    background: rgba(26, 219, 138, 0.1);
    color: var(--accent-green) !important;
    padding-left: 20px;
}

.nav-dropdown li::after {
    display: none;
}

/* Category View Logic */
.section-block {
    display: none !important; /* Hide all sections by default */
}

body.category-view .hero {
    display: none !important;
}

body.category-view .section-block.active {
    display: flex !important;
}

/* On Home (when not in category-view), hide specific things if needed */
body:not(.category-view) #team, body:not(.category-view) #why-us {
    display: flex !important; /* Keep team visible on home if desired, or hide it too */
}


@media (max-width: 1024px) {
    .main-nav {
        margin: 0 1rem;
    }
    #header-nav {
        gap: 1.2rem;
    }
    #header-nav li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 850px) {
    .main-nav {
        display: none;
    }
}

.btn-login {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--glass-hover);
    transform: translateY(-2px);
}

/* User Profile Section */
.user-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-btn {
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-btn:hover {
    color: var(--accent-green);
}

.user-dropdown-container {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.profile-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #a6d8e7; /* Light blue matching screenshot */
    color: #1a2235; /* Dark text for contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.username {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Dropdown styles consolidated above */

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.dropdown-header .balance {
    color: #a6d8e7; /* Matching light blue */
}

.dropdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 0.2rem 0;
}

.dropdown-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.dropdown-list li a {
    display: block;
    padding: 0.9rem 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.25s ease;
    margin: 2px 8px;
    border-radius: 8px;
}

.dropdown-list li a:hover {
    background: rgba(26, 219, 138, 0.1);
    color: var(--accent-green) !important;
    padding-left: 1.8rem;
    box-shadow: none;
}

.lang-switch {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
}

.lang-switch-icon {
    color: var(--text-muted);
    padding: 0 0.8rem;
    font-size: 1.1rem;
}

.lang-switch button {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 0.8rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switch button.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-bottom: 5rem;
}

.hero-content {
    margin-bottom: 5rem;
}

.gradient-text {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--accent-red), var(--accent-pink), var(--accent-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s linear infinite;
}

@keyframes gradientText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

/* Stats */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 6rem;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    /* Soft glow effect */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Sections General */
.section-block {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Best Sellers Carousel Section */
.best-sellers-wrapper {
    margin-top: 3rem;
    width: 100%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.best-sellers-carousel {
    width: 100%;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.best-seller-card {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.best-seller-card:hover {
    border-color: rgba(52, 199, 89, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 20px rgba(52, 199, 89, 0.05);
    transform: translateY(-5px);
}

.best-seller-main {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.best-seller-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-green);
    color: #000;
    padding: 8px 20px;
    border-bottom-right-radius: 15px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 20px rgba(26, 219, 138, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.best-seller-img {
    width: 220px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.best-seller-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.best-seller-info {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
}

.best-seller-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.best-seller-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.title-discount-badge {
    background: linear-gradient(135deg, #ff2d55 0%, #ff3b30 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.4);
    animation: pulseGlow 2s infinite ease-in-out;
    white-space: nowrap;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(255, 45, 85, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 25px rgba(255, 45, 85, 0.7); transform: scale(1.05); }
    100% { box-shadow: 0 0 10px rgba(255, 45, 85, 0.4); transform: scale(1); }
}

.best-seller-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 90%;
}

/* Footer removed in redesign */

.best-seller-prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.best-seller-price-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 600;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-green);
    text-shadow: 0 0 15px rgba(52, 199, 89, 0.2);
}

.best-seller-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-green);
}

.card-price-tag {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-green);
    margin-top: 5px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(52, 199, 89, 0.3);
}

.best-seller-btn-full {
    background: var(--accent-green);
    border: none;
    color: #000;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    font-family: 'Rajdhani', sans-serif;
}

.best-seller-btn-full i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.best-seller-btn-full:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.3);
}

.best-seller-btn-full:hover i {
    transform: translateX(5px);
}

/* Animations */
.slide-in {
    animation: slideIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.slide-out {
    animation: slideOut 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-30px); }
}

/* Cards Grid Responsive */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .best-seller-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .best-seller-info {
        text-align: center;
    }
    
    .best-seller-footer {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .best-seller-prices {
        align-items: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        bottom: 40px;
    }
    
    .scroll-indicator p {
        font-size: 0.8rem;
        opacity: 0.9;
    }
}
    gap: 2rem;
    width: 100%;
}

.cards-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

/* Individual Card - Image 1 Style */
.card {
    background: #141923;
    border-radius: 12px;
    aspect-ratio: 1 / 1.1;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2);
    border-color: var(--accent-green);
}

.card-header {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-thumbnail {
    width: 100%;
    height: 100% !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    border: none !important;
}

.product-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .product-grid-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem;
    background: linear-gradient(to top, rgba(11, 15, 21, 0.95), transparent);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card-overlay h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Hide old elements on the grid card to match Image 1 */
.card-price, .card-features, .btn-add-cart, .card-header p {
    display: none !important;
}


.card-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.card-price .amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    letter-spacing: -1px;
}

.card-price .currency {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.setup-fee {
    background: rgba(255, 165, 0, 0.1);
    color: orange;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.card-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card-features li i {
    color: var(--accent-green);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.btn-primary {
    background: rgba(52, 199, 89, 0.15); /* Using green accent */
    color: var(--accent-green);
    border: 1px solid rgba(52, 199, 89, 0.5);
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(52, 199, 89, 0.6);
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(52, 199, 89, 0.1);
}

.btn-primary:hover {
    background: var(--accent-green);
    color: #fff;
    box-shadow: 0 0 25px rgba(52, 199, 89, 0.6);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    border-color: var(--accent-green);
}

/* Custom Tooltip */
.tooltip-trigger {
    position: relative;
}

.tooltip-trigger::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1a2235;
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    width: 220px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    pointer-events: none;
    line-height: 1.4;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.tooltip-trigger:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-trigger::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #1a2235 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    pointer-events: none;
}

.tooltip-trigger:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem; /* Masaüstü için daha geniş boşluk */
    width: 100%;
    max-width: 1200px;
    margin-top: 3rem;
}

.team-member {
    flex: 0 1 240px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px; /* Daha yumuşak köşeler */
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-member::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--accent-green);
    transition: width 0.4s ease, box-shadow 0.4s ease;
    border-radius: 10px;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(26, 219, 138, 0.05);
    border-color: rgba(26, 219, 138, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(26, 219, 138, 0.1);
}

.team-member:hover::before {
    width: 60%;
    box-shadow: 0 -5px 20px rgba(26, 219, 138, 0.6);
}

.team-member .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #1c2331;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    border: 2px solid var(--glass-border);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.team-member:hover .avatar {
    transform: scale(1.15) rotate(10deg);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.team-member h4 {
    font-size: 1.4rem; /* İsim boyutu artırıldı */
    font-weight: 800; /* Bold yapıldı */
    margin-bottom: 0.4rem;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.team-member .member-role {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8; /* Daha sönük ama okunabilir */
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.team-socials {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-socials a {
    color: var(--accent-green);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.team-socials a:hover {
    transform: scale(1.2);
    color: #fff;
    text-shadow: 0 0 10px var(--accent-green);
}

.team-member:hover .team-socials {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        gap: 1.5rem;
    }
    .top-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .gradient-text {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }

    .side-nav {
        display: none;
    }

    .cards-grid, .cards-grid.two-cols {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing-tabs button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Modals for mobile */
    .auth-modal-content, .cart-modal-container, .balance-modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
    }

    .cart-layout {
        flex-direction: column;
    }

    .cart-summary-section {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .gradient-text {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .site-logo {
        width: 30px;
        height: 30px;
    }

    .btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .user-section {
        gap: 1rem;
    }

    .profile-trigger .username {
        display: none; /* Hide username on very small screens */
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .card {
        padding: 1.5rem;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .card-price .amount {
        font-size: 2rem;
    }
}

/* Auth Modal */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 21, 0.8);
    backdrop-filter: blur(8px);
    z-index: 20000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal.show {
    display: flex;
    opacity: 1;
}

.auth-modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 3rem 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.auth-modal.show .auth-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent-red);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 0.3rem;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.auth-tabs button {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.8rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tabs button.active {
    background: var(--glass-hover);
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.auth-form {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.auth-form.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.2);
}

.input-wrapper input::placeholder {
    color: rgba(139, 155, 180, 0.5);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.remember-me input {
    accent-color: var(--accent-green);
}

.forgot-password {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--text-main);
}

.auth-btn {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.05rem;
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.2), rgba(52, 199, 89, 0.1));
}

.auth-btn:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .auth-modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        align-self: flex-end;
    }
    .auth-modal.show .auth-modal-content {
        transform: translateY(0);
    }
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999; /* Higher than product page (10000) */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--glass-bg);
    border: 1px solid var(--accent-green);
    border-left: 5px solid var(--accent-green);
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.3s ease forwards;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 350px;
}

.toast.toast-error {
    border-color: var(--accent-red);
    border-left-color: var(--accent-red);
}

.toast i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.toast.toast-error i {
    color: var(--accent-red);
}

.toast-content h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.toast-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.hide {
    opacity: 0;
    transform: translateX(100%);
}

/* Cart Badge */
.cart-btn {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ef4444; /* Red badge */
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
}
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(13, 17, 23, 0.8);
    padding: 6px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #a6d8e7;
    color: #0b0f15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.username {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Custom Modals (Balance & Cart) */
.custom-modal {
    z-index: 20000;
}

.balance-modal-content {
    background: #11151c; /* Very dark background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
}

.close-custom-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
}

.balance-card {
    background: #181f2a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.balance-card.mini {
    padding: 1rem;
    gap: 1rem;
}

.balance-icon {
    width: 48px;
    height: 48px;
    background: #a6d8e7; /* Light blue */
    color: #11151c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.balance-card.mini .balance-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.balance-info .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.balance-info .amount {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 0.2rem;
}

.balance-card.mini .amount {
    font-size: 1.4rem;
}

.balance-info .currency {
    font-size: 1rem;
    color: var(--text-muted);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.method-btn {
    flex: 1;
    background: #181f2a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.method-btn.active {
    background: rgba(166, 216, 231, 0.1);
    border-color: rgba(166, 216, 231, 0.3);
    color: #a6d8e7;
}

.custom-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #cbd5e1;
}

.custom-group input {
    background: #181f2a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.2rem;
    color: #fff;
    border-radius: 8px;
    width: 100%;
}

.custom-group input:focus {
    border-color: #a6d8e7;
    outline: none;
    background: #1e2634;
}

.helper-text {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.half {
    flex: 1;
}

.date-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-inputs input {
    text-align: center;
    padding: 1rem 0.5rem;
}

.btn-submit-payment {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: opacity 0.3s;
}

.btn-submit-payment:hover {
    opacity: 0.9;
}

.agreement-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.agreement-text:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.security-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Cart Modal */
.cart-modal-container {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.auth-modal.show .cart-modal-container {
    transform: translateY(0);
}

.cart-layout {
    display: flex;
    min-height: 500px;
}

.cart-items-section {
    flex: 1.5;
    padding: 2.5rem;
    overflow-y: auto;
    max-height: 80vh;
}

.cart-summary-section {
    flex: 1;
    background: #161b22;
    padding: 2.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 16px 16px 0;
}

/* Cart Item */
.cart-item {
    background: #161b22;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.cart-item-details h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.discount-badge-cart {
    background: rgba(0, 229, 255, 0.1);
    color: #00e5ff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(0, 229, 255, 0.2);
    display: inline-block;
}

.cart-item-details span {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-item-price strong {
    font-size: 1.1rem;
    color: #fff;
}

.btn-remove-item {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-remove-item:hover {
    background: #ef4444;
    color: #fff;
}

.empty-cart-message {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 0;
}

/* Summary Section */
.cart-summary-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.summary-details {
    margin-top: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.summary-row strong {
    color: #fff;
}

.discount-section {
    margin-bottom: 1.5rem;
}

.discount-section label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.discount-input-group {
    display: flex;
    gap: 0.5rem;
}

.discount-input-group input {
    flex: 1;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    color: #fff;
    border-radius: 8px;
}

.discount-input-group button {
    background: #a6d8e7;
    color: #11151c;
    border: none;
    padding: 0 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.total-row span {
    font-weight: 600;
    color: #fff;
}

.total-row .total-price {
    font-size: 1.5rem;
    color: #fff;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    accent-color: var(--accent-green);
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* Contract Modal Styles */
.contract-content {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) rgba(255, 255, 255, 0.05);
}

.contract-content::-webkit-scrollbar {
    width: 6px;
}

.contract-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contract-content::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 10px;
}

.lang-tr-content, .lang-en-content {
    animation: fadeIn 0.3s ease;
}

/* fadeIn keyframes consolidated */

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: #15803d; /* Green */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.btn-checkout:hover {
    background: #166534;
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.warning-box {
    margin-top: 1rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.warning-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.warning-amount {
    font-size: 1.2rem;
    color: #ef4444;
}

@media (max-width: 768px) {
    .cart-layout {
        flex-direction: column;
    }
    
    .cart-summary-section {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0 0 16px 16px;
    }
    
    .form-row {
        flex-direction: column;
    }
}

/* Product Detail Modal */
.product-modal-content {
    max-width: 900px;
    width: 80%;
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-color); /* Arkaplan saydam olmaması için */
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.product-detail-layout {
    display: flex;
    flex-direction: row;
    min-height: 450px;
}

/* Left: Gallery */
.product-gallery {
    flex: 1;
    background: #0f131a;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--glass-border);
}

.main-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, #1a2235 0%, #0b0f15 100%);
}

.main-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}

.no-image-placeholder {
    font-size: 5rem;
    color: var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.thumbnail-list {
    display: flex;
    gap: 10px;
    padding: 1rem;
    background: #0b0f15;
    overflow-x: auto;
    border-top: 1px solid var(--glass-border);
}

.thumbnail-list::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-list::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

.thumb-item {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
    object-fit: cover;
    background: #1a2235;
}

.thumb-item:hover {
    opacity: 1;
}

.thumb-item.active {
    border-color: var(--accent-green);
    opacity: 1;
}

/* Right: Product Info */
.product-info-section {
    width: 400px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features-container {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.product-features-container h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.detail-features-list {
    list-style: none;
}

.detail-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.detail-features-list li i {
    color: var(--accent-green);
    margin-top: 0.2rem;
}

.product-action-box {
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
}

.btn-add-cart-large {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 42, 95, 0.05) 0%, transparent 70%);
}

.testimonial-container {
    max-width: 800px;
    margin: 3rem auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-quote {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--accent-green);
    opacity: 0.3;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer Styles */
.footer {
    background: #0a0e14;
    border-top: 1px solid var(--glass-border);
    padding: 8rem 0 5rem 0;
    margin-top: 10rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 2fr 0.8fr 2.2fr 1.8fr;
    gap: 4rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5rem;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text-main), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    transition: 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-links ul li a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 6rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.55);
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
}

.btn-add-cart-large {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 42, 95, 0.05) 0%, transparent 70%);
}

.testimonial-container {
    max-width: 800px;
    margin: 3rem auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-quote {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--accent-green);
    opacity: 0.3;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer Styles */
.footer {
    background: #0a0e14;
    border-top: 1px solid var(--glass-border);
    padding: 8rem 0 5rem 0;
    margin-top: 10rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 2fr 0.8fr 2.2fr 1.8fr;
    gap: 4rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5rem;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text-main), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    transition: 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-links ul li a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 6rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-list li i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff9d;
    font-size: 0.9rem;
    margin-top: 2px;
}

.contact-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-text span {
    font-weight: 700;
    color: #fff;
    margin-right: 5px;
    white-space: nowrap;
}

.contact-text a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #00ff9d;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0.6;
}

.payment-logos i {
    font-size: 1.5rem;
}

@media (max-width: 1300px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Image Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.lightbox-modal.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-modal.show .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
}

.lightbox-close:hover {
    color: var(--accent-red);
    transform: rotate(90deg);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 100;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 20px; right: 20px; font-size: 35px; }
}

/* Discount Badge Styles */
.pricing-tabs button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 100px;
}

.discount-badge {
    background: var(--accent-green); /* Using system accent color */
    color: #141923; /* Dark background color for text */
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
    animation: pulseBadge 2s infinite ease-in-out;
    white-space: nowrap;
}

/* Grid Card Discount Styles */
.discount-badge-grid {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-pink);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
    animation: pulseBadge 2s infinite ease-in-out;
}

.card-price-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.old-price-tag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    font-weight: 500;
}

/* Best Seller Discount Styles */
.best-seller-price-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.old-price-bs {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: line-through;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-green);
    text-shadow: 0 0 15px rgba(52, 199, 89, 0.3);
}

.best-seller-price {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-green);
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(0, 229, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(0, 229, 255, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 5px rgba(0, 229, 255, 0.4); }
}

/* Full Screen Product Page View */
#product-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0b0f15;
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem 0;
    display: none;
}

.product-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-top-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.product-page-breadcrumb {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.back-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.back-btn:hover {
    background: rgba(52, 199, 89, 0.1);
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

#breadcrumb-product-name {
    color: var(--accent-green);
    font-weight: 700;
}

.product-detail-layout {
    display: flex;
    gap: 5rem;
}

.product-detail-left {
    flex: 1.2;
}

.product-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Media Section */
.detail-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.detail-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.detail-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.detail-image-item {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.detail-image-item:hover {
    transform: scale(1.05);
    border-color: var(--accent-green);
}

/* Info Section */
#detail-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.detail-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
    font-weight: 400;
}

.detail-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Rajdhani', sans-serif;
}

.detail-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.detail-features-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-features-list li i {
    color: var(--accent-green);
}

.detail-header-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #ffcc00;
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.sales-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 500;
}

.license-selection {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.license-btn {
    flex: 1;
    padding: 12px 25px;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px; 
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.license-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.license-btn.active {
    background: rgba(26, 219, 138, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
    box-shadow: 0 0 20px rgba(26, 219, 138, 0.1);
}

.price-display-row {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.old-price {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: line-through;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.price-main .amount {
    font-size: 3rem; 
    font-weight: 800;
    color: var(--accent-green);
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 0 0 20px rgba(26, 219, 138, 0.15);
    line-height: 1;
}

.discount-badge {
    background: rgba(26, 219, 138, 0.1);
    color: var(--accent-green);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(26, 219, 138, 0.2);
    text-transform: uppercase;
}

.price-main .currency {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
    opacity: 0.8;
}

.purchase-box {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.btn-primary-glow {
    background: #1adb8a;
    color: #0b0f15;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Rajdhani', sans-serif;
    box-shadow: 0 4px 10px rgba(26, 219, 138, 0.1);
}

.btn-primary-glow:hover {
    background: #1ff29a;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(26, 219, 138, 0.4);
}

.btn-primary-glow:active {
    transform: scale(0.98);
}

.btn-primary-glow i {
    font-size: 1.1rem;
}

/* Professional Features Section */
.detail-features-section {
    margin-top: 3rem;
    clear: both;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.9;
}

.section-title i {
    color: var(--accent-green);
}

.features-column-layout {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 600px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    background: rgba(26, 219, 138, 0.05);
    border-color: rgba(26, 219, 138, 0.2);
    transform: translateX(8px);
}

.feature-card i {
    color: var(--accent-green);
    font-size: 0.85rem;
    background: rgba(26, 219, 138, 0.1);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.feature-card span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Updated Badges Grid */
.detail-badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.badge-item:hover {
    opacity: 1;
}

.badge-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.badge-item span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-detail-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .product-detail-content {
        padding: 1.5rem !important;
    }
    #detail-title {
        font-size: 2rem;
    }
}


/* Support Modal Styles */
.support-modal-content {
    max-width: 800px !important;
    width: 90% !important;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.support-view {
    display: none;
    flex: 1;
    flex-direction: column;
}

.support-view.active {
    display: flex;
}

.support-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.tickets-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 10px;
}

.ticket-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticket-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-green);
    transform: translateX(5px);
}


.ticket-info h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.ticket-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-open { background: rgba(26, 219, 138, 0.1); color: var(--accent-green); }
.status-answered { background: rgba(88, 101, 242, 0.1); color: #5865f2; }
.status-closed { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); }

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-form textarea {
    min-height: 150px;
    resize: vertical;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 10px;
    margin-bottom: 1.5rem;
}

.message-bubble {
    max-width: 80%;
    padding: 1rem 1.2rem;
    border-radius: 15px;
    position: relative;
}

.message-user {
    align-self: flex-end;
    background: rgba(26, 219, 138, 0.1);
    border: 1px solid rgba(26, 219, 138, 0.2);
    border-bottom-right-radius: 2px;
}

.message-admin {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 2px;
}

.message-bubble .sender {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.message-user .sender { color: var(--accent-green); }
.message-admin .sender { color: #5865f2; }

.message-bubble .time {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: right;
}

.chat-input-area {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input-area textarea {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0;
    min-height: 40px;
    max-height: 120px;
}

.btn-send-message {
    background: var(--accent-green);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send-message:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(26, 219, 138, 0.4);
}

.btn-small {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.85rem !important;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.btn-back:hover {
    color: #fff;
}

/* Delivery Steps Section */
.delivery-steps-box {
    background: rgba(88, 101, 242, 0.03);
    border: 1px solid rgba(88, 101, 242, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.05);
}

.delivery-steps-title {
    color: #5865F2;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
}

.delivery-stepper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.step-icon {
    width: 32px;
    height: 32px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5865F2;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Delivery Warning Box */
.delivery-warning-box {
    margin-top: 3rem;
    background: rgba(26, 219, 138, 0.02);
    border: 1px solid rgba(26, 219, 138, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(26, 219, 138, 0.05);
}

.delivery-warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent-green);
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.delivery-warning-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .product-detail-layout {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .delivery-stepper {
        gap: 1.5rem;
    }
}

/* --- Why Choose Us Section (Modernized) --- */
.why-us-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.why-us-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Background Nebula Glow */
.why-us-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.04) 0%, rgba(0, 0, 0, 0) 75%);
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.15);
}

/* Specific Glows for Stat Cards */
.stat-card:nth-child(1), .stat-card:nth-child(2) {
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.05);
}
.stat-card:nth-child(3) {
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.05);
}

.stat-value {
    font-family: "Outfit", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #00ff9d;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 255, 157, 0.2);
}

.stat-value.color-tr {
    color: #ff4d4d;
    text-shadow: 0 4px 10px rgba(255, 77, 77, 0.2);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-line-decoration {
    width: 35px;
    height: 4px;
    border-radius: 10px;
    margin: 1.5rem auto 0;
}

.stat-line-decoration.green { background: #00ff9d; box-shadow: 0 0 10px rgba(0, 255, 157, 0.4); }
.stat-line-decoration.red { background: #ff4d4d; box-shadow: 0 0 10px rgba(255, 77, 77, 0.4); }

.why-us-main-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

/* Glowing Inner Accent */
.why-us-main-card::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-us-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.why-us-icon-bg {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff9d;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.1);
}

.why-us-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    transform: translateX(15px);
}

.why-us-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-us-item-icon.bg-green { color: #00ff9d; background: rgba(0, 255, 157, 0.05); }
.why-us-item-icon.bg-blue { color: #0095ff; background: rgba(0, 149, 255, 0.05); }
.why-us-item-icon.bg-purple { color: #bf00ff; background: rgba(191, 0, 255, 0.05); }

.why-us-item-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.6rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.why-us-item-content p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 850px) {
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem;
    }
    .stat-card:last-child {
        grid-column: 1 / -1;
    }
    .why-us-header h2 { font-size: 2rem; }
}

@media (max-width: 500px) {
    .stats-grid { 
        grid-template-columns: 1fr; 
    }
    .stat-card {
        padding: 2.5rem 1rem;
    }
    .stat-value {
        font-size: 2.8rem;
    }
    .why-us-main-card { padding: 3rem 1.5rem; }
    .why-us-header h2 { font-size: 1.7rem; }
    .why-us-item { flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; }
    .why-us-item:hover { transform: translateY(-5px); }
}

/* --- CTA Section (Modernized) --- */
.cta-section {
    display: none !important;
    max-width: 800px;
    margin: 8rem auto;
    padding: 4rem 3.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

body:not(.category-view) .cta-section {
    display: block !important;
}

/* Background Glowing Accent */
.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.cta-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    max-width: 500px;
}

.cta-btn {
    padding: 1.4rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    background: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-10px) scale(1.02);
    background: #00ff9d;
    color: #000;
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.3);
}

@media (max-width: 950px) {
    .cta-section { margin: 4rem 1.5rem; padding: 4rem 2rem; }
    .cta-content { flex-direction: column; text-align: center; gap: 3rem; }
    .cta-text h2 { font-size: 2.2rem; }
    .cta-text p { font-size: 1.1rem; margin: 0 auto; }
    .cta-btn { width: 100%; }
}

/* --- Notification System --- */
.notification-container-pill {
    position: relative;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.notification-trigger-pill {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.notification-trigger-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.notification-badge-pill {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    background: #ff3b30;
    border: 2px solid #0b0f15;
    border-radius: 50%;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 320px;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

.notification-dropdown.show {
    display: flex;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.notif-header {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notif-list {
    max-height: 400px;
    overflow-y: auto;
}

.notif-item {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notif-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.notif-item .notif-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.no-notif {
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* --- Review Modal & Stars --- */
.rating-stars {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 2rem 0;
    font-size: 2.2rem;
}

.rating-stars i {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.rating-stars i.active,
.rating-stars i.hover {
    color: #00ff9d;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
}

.review-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    color: #fff;
    font-family: inherit;
    resize: none;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    min-height: 120px;
}

.review-textarea:focus {
    outline: none;
    border-color: #00ff9d;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.05);
}

/* --- Review Cards in Product Page --- */
.reviews-container {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-container h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: #00ff9d;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.review-user-name {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.review-rating {
    color: #00ff9d;
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.review-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    align-self: flex-end;
}

.product-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #00ff9d;
    font-weight: 700;
}

.product-stars i {
    font-size: 0.9rem;
}

.product-review-count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}


/* My Orders Page Styles */
.orders-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

.orders-top-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.orders-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.orders-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.orders-search-wrapper .search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

#orders-search {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.8rem 1rem 0.8rem 3rem;
    color: var(--text-main);
    font-family: inherit;
    transition: all 0.3s ease;
}

#orders-search:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(52, 199, 89, 0.1);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card-premium {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-card-premium:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.order-card-top {
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.order-meta-info {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.meta-value.accent {
    color: var(--accent-green);
}

.btn-order-details {
    background: transparent;
    border: 1px solid #f39c12;
    color: #f39c12;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-order-details:hover {
    background: #f39c12;
    color: #000;
}

.order-card-bottom {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.order-product-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.order-status-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.order-product-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.order-product-img {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--glass-border);
}

.order-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.order-product-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.order-product-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-evaluate {
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 0.7rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-evaluate:hover {
    background: var(--accent-green);
    color: #000;
    box-shadow: 0 0 20px rgba(52, 199, 89, 0.3);
}

.btn-evaluate.reviewed {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: not-allowed;
}

.btn-evaluate.reviewed:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    box-shadow: none;
    transform: none;
}

.orders-loading, .no-orders-msg, .error-msg {
    text-align: center;
    padding: 5rem 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .order-meta-info {
        gap: 1.5rem;
    }
    
    .order-card-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-evaluate {
        width: 100%;
        justify-content: center;
    }
}


#orders-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 1000;
    overflow-y: auto;
    display: none;
}

/* Review Section Styles */
.reviews-container {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.reviews-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
}

.review-user-name {
    font-weight: 600;
    font-size: 1rem;
}

.review-rating {
    color: #f1c40f;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Review Modal Button Fix */
.btn-action-glow {
    background: linear-gradient(90deg, var(--accent-green), var(--accent-pink));
    border: none;
    color: #000;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(52, 199, 89, 0.2);
}

.btn-action-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.4);
    filter: brightness(1.1);
}

/* ==========================================
   GDPR & KVKK COOKIE CONSENT STYLES
   ========================================== */
.cookie-consent-root {
    --cc-bg: rgba(11, 15, 21, 0.98);
    --cc-border: rgba(255, 255, 255, 0.08);
    --cc-text: #ffffff;
    --cc-text-muted: #8b9bb4;
    --cc-btn-bg: rgba(255, 255, 255, 0.05);
    --cc-btn-hover: rgba(255, 255, 255, 0.1);
    --cc-btn-text: #ffffff;
    --cc-green: #34c759;
    --cc-green-hover: #2db04d;
    --cc-red: #ff3b30;
    --cc-red-hover: #e03026;
    --cc-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    --cc-modal-overlay: rgba(5, 7, 10, 0.85);
}

/* Explicit and system-level Light Mode support */
@media (prefers-color-scheme: light) {
    .cookie-consent-root {
        --cc-bg: rgba(255, 255, 255, 0.98);
        --cc-border: rgba(0, 0, 0, 0.08);
        --cc-text: #0b0f15;
        --cc-text-muted: #64748b;
        --cc-btn-bg: rgba(0, 0, 0, 0.05);
        --cc-btn-hover: rgba(0, 0, 0, 0.08);
        --cc-btn-text: #0b0f15;
        --cc-green: #2e7d32;
        --cc-green-hover: #1b5e20;
        --cc-red: #d32f2f;
        --cc-red-hover: #c62828;
        --cc-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        --cc-modal-overlay: rgba(0, 0, 0, 0.4);
    }
}

body.light-theme .cookie-consent-root,
body.light-mode .cookie-consent-root,
html.light-theme .cookie-consent-root,
html.light-mode .cookie-consent-root {
    --cc-bg: rgba(255, 255, 255, 0.98);
    --cc-border: rgba(0, 0, 0, 0.08);
    --cc-text: #0b0f15;
    --cc-text-muted: #64748b;
    --cc-btn-bg: rgba(0, 0, 0, 0.05);
    --cc-btn-hover: rgba(0, 0, 0, 0.08);
    --cc-btn-text: #0b0f15;
    --cc-green: #2e7d32;
    --cc-green-hover: #1b5e20;
    --cc-red: #d32f2f;
    --cc-red-hover: #c62828;
    --cc-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    --cc-modal-overlay: rgba(0, 0, 0, 0.4);
}

/* Banner Container */
#cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 100000;
    max-width: 420px;
    background: var(--cc-bg);
    border: 1px solid var(--cc-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--cc-shadow);
    color: var(--cc-text);
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(12px);
}

#cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-consent-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--cc-text);
}

.cookie-consent-text a.cookie-policy-link {
    color: var(--cc-green);
    text-decoration: none;
    font-weight: 600;
    transition: text-decoration 0.2s;
}

.cookie-consent-text a.cookie-policy-link:hover {
    text-decoration: underline;
}

/* Buttons */
.cookie-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.cookie-btn-accept {
    flex: 1 1 100%;
    background-color: var(--cc-green);
    color: #0b0f15;
}

.cookie-btn-accept:hover {
    background-color: var(--cc-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

.cookie-btn-reject {
    flex: 1 1 calc(50% - 4px);
    background-color: var(--cc-btn-bg);
    color: var(--cc-text);
    border: 1px solid var(--cc-border);
}

.cookie-btn-reject:hover {
    background-color: var(--cc-red);
    color: #ffffff;
    border-color: var(--cc-red);
    transform: translateY(-1px);
}

.cookie-btn-manage {
    flex: 1 1 calc(50% - 4px);
    background-color: var(--cc-btn-bg);
    color: var(--cc-text);
    border: 1px solid var(--cc-border);
}

.cookie-btn-manage:hover {
    background-color: var(--cc-btn-hover);
    transform: translateY(-1px);
}

/* Preference Modal */
#cookie-preference-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100001;
    background-color: var(--cc-modal-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
    font-family: 'Inter', sans-serif;
}

#cookie-preference-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal-content {
    background: var(--cc-bg);
    border: 1px solid var(--cc-border);
    border-radius: 20px;
    width: 90%;
    max-width: 520px;
    box-shadow: var(--cc-shadow);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--cc-text);
}

#cookie-preference-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--cc-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--cc-text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.cookie-modal-close:hover {
    color: var(--cc-text);
}

.cookie-modal-body {
    padding: 24px;
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-category-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cookie-category-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cookie-category-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-category-info h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.cookie-category-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--cc-text-muted);
    line-height: 1.45;
}

/* Switch Toggle Styling */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--cc-btn-bg);
    border: 1px solid var(--cc-border);
    transition: .3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--cc-text-muted);
    transition: .3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--cc-green);
    border-color: var(--cc-green);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(20px);
    background-color: #0b0f15;
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--cc-border);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.cookie-btn-save {
    background-color: var(--cc-green);
    color: #0b0f15;
    flex-grow: 0;
    min-width: 150px;
}

.cookie-btn-save:hover {
    background-color: var(--cc-green-hover);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    #cookie-consent-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 20px;
        gap: 14px;
    }
    
    .cookie-btn-reject, .cookie-btn-manage {
        flex: 1 1 100%;
    }
    
    .cookie-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .cookie-modal-body {
        flex-grow: 1;
        max-height: none;
    }
}


