/* ============================================
   UstaProject - Store CSS Page Styles
   ============================================ */

/* Store Hero Section */
.store-hero {
    position: relative;
    padding: 140px 0 60px;
    background: var(--bg-primary);
    overflow: hidden;
}

.store-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.store-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.store-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.store-hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Store Badge */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--red-400);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.05);
}

.store-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

/* Title Glow Icon */
.title-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: var(--primary);
    vertical-align: middle;
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.5));
    animation: iconFloat 3s ease-in-out infinite;
    transition: filter var(--transition-base);
}

.title-glow-icon {
    transition: transform var(--transition-base);
}

.title-icon-wrapper:hover {
    filter: drop-shadow(0 0 16px rgba(220, 38, 38, 0.95));
}

.title-icon-wrapper:hover .title-glow-icon {
    transform: scale(1.18);
}

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

/* Floating background shapes for store hero */
.store-hero .floating-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.002);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 1;
}

.store-hero .shape-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 8%;
    border-color: rgba(220, 38, 38, 0.08);
    animation: shapeFloat 10s ease-in-out infinite;
}

.store-hero .shape-2 {
    width: 40px;
    height: 40px;
    bottom: 25%;
    right: 8%;
    border-color: rgba(220, 38, 38, 0.05);
    animation: shapeFloat 12s ease-in-out infinite -3s;
}

.store-hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 45%;
    left: 80%;
    border-radius: 50%;
    border-color: rgba(255, 255, 255, 0.02);
    animation: shapeFloat 15s ease-in-out infinite -6s;
}

/* Store Features Grid */
.store-features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.store-feature-tag {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 210px;
}

.store-feature-tag:hover {
    transform: translateY(-4px);
}

/* Individual neon glows on hover */
.store-feature-tag.tag-red:hover {
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15), 0 0 15px rgba(239, 68, 68, 0.05);
    background: rgba(239, 68, 68, 0.02);
}

.store-feature-tag.tag-orange:hover {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15), 0 0 15px rgba(249, 115, 22, 0.05);
    background: rgba(249, 115, 22, 0.02);
}

.store-feature-tag.tag-green:hover {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15), 0 0 15px rgba(34, 197, 94, 0.05);
    background: rgba(34, 197, 94, 0.02);
}

.store-feature-tag.tag-blue:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15), 0 0 15px rgba(59, 130, 246, 0.05);
    background: rgba(59, 130, 246, 0.02);
}

.tag-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.store-feature-tag:hover .tag-icon-circle {
    transform: scale(1.1);
}

/* Tag colors */
.tag-icon-circle.red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
}

.tag-icon-circle.orange {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: #f97316;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}

.tag-icon-circle.green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.tag-icon-circle.blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.tag-info {
    text-align: left;
}

.tag-info h5 {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2px;
}

.tag-info p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1;
}


/* Search and Filters Section */
.store-controls {
    padding: 20px 0 40px;
    position: relative;
    z-index: 10;
}

.controls-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .controls-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Category Tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none; /* Firefox */
}

.filter-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tab-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
}

.tab-btn.active {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

/* Search and Sort Group */
.search-sort-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

@media (min-width: 768px) {
    .search-sort-group {
        width: auto;
        flex-shrink: 0;
    }
}

.search-box-wrap {
    position: relative;
    flex-grow: 1;
    min-width: 200px;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    font-size: 0.88rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.15);
    background: rgba(0, 0, 0, 0.4);
}

.search-icon-svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: color var(--transition-base);
}

.search-input:focus + .search-icon-svg {
    color: var(--primary);
}

.sort-select {
    padding: 10px 16px;
    font-size: 0.88rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.sort-select:focus {
    border-color: var(--primary);
    color: var(--text-primary);
}

/* Products Section */
.store-products {
    padding: 0 0 100px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* User's Exact Product Card Design */
.store-card {
    background: #110707;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.store-card:hover {
    transform: translateY(-6px);
}

/* Card Themes for Hover glow and borders */
.store-card.theme-red:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.15), 0 0 20px rgba(220, 38, 38, 0.05);
}
.store-card.theme-orange:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.15), 0 0 20px rgba(249, 115, 22, 0.05);
}
.store-card.theme-green:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.15), 0 0 20px rgba(34, 197, 94, 0.05);
}
.store-card.theme-blue:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.15), 0 0 20px rgba(59, 130, 246, 0.05);
}

/* Card Banner Area (Header Graphic) */
.card-banner {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
    user-select: none;
}

/* Default dark grid backdrop inside banner */
.banner-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 15px 15px;
    background-position: center;
    opacity: 0.65;
    z-index: 1;
}

/* Diagonal stripes pattern for gaming theme */
.banner-stripes-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
    opacity: 0.7;
    z-index: 2;
}

/* Central stylized text container */
.banner-text-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

/* Star Rating at top of banner */
.banner-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    position: relative;
    z-index: 4;
    margin-top: 15px;
}

.banner-star-svg {
    width: 12px;
    height: 12px;
    filter: drop-shadow(0 0 4px currentColor);
}

/* Banner Text Branding */
.banner-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.banner-brand-subtitle {
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1px 6px;
    border-radius: 3px;
    margin: 4px 0;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-product-type {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Banner color theme styling */
/* Red Theme: Velocity */
.theme-red .card-banner {
    background: linear-gradient(135deg, #2a0808 0%, #150202 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
}
.theme-red .banner-stars { color: #ef4444; }
.theme-red .banner-title {
    color: #ef4444;
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.6), 0 2px 4px rgba(0,0,0,0.8);
}
.theme-red .banner-brand-subtitle { color: #fca5a5; border-color: rgba(239, 68, 68, 0.2); }
.theme-red .banner-product-type { color: #fca5a5; }
.theme-red .card-banner::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ef4444;
    filter: blur(40px);
    opacity: 0.25;
    z-index: 3;
}

/* Orange Theme: BungeeCord */
.theme-orange .card-banner {
    background: linear-gradient(135deg, #2b1104 0%, #140500 100%);
    border: 1px solid rgba(249, 115, 22, 0.15);
}
.theme-orange .banner-stars { color: #f97316; }
.theme-orange .banner-title {
    color: #f97316;
    text-shadow: 0 0 12px rgba(249, 115, 22, 0.6), 0 2px 4px rgba(0,0,0,0.8);
}
.theme-orange .banner-brand-subtitle { color: #fed7aa; border-color: rgba(249, 115, 22, 0.2); }
.theme-orange .banner-product-type { color: #fed7aa; }
.theme-orange .card-banner::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f97316;
    filter: blur(40px);
    opacity: 0.25;
    z-index: 3;
}

/* Green Theme: AuthLobby */
.theme-green .card-banner {
    background: linear-gradient(135deg, #051d0d 0%, #010d05 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
}
.theme-green .banner-stars { color: #22c55e; }
.theme-green .banner-title {
    color: #22c55e;
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.6), 0 2px 4px rgba(0,0,0,0.8);
}
.theme-green .banner-brand-subtitle { color: #bbf7d0; border-color: rgba(34, 197, 94, 0.2); }
.theme-green .banner-product-type { color: #bbf7d0; }
.theme-green .card-banner::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #22c55e;
    filter: blur(40px);
    opacity: 0.25;
    z-index: 3;
}

/* Blue Theme: Lobi */
.theme-blue .card-banner {
    background: linear-gradient(135deg, #05162e 0%, #010a17 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
}
.theme-blue .banner-stars { color: #3b82f6; }
.theme-blue .banner-title {
    color: #3b82f6;
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.6), 0 2px 4px rgba(0,0,0,0.8);
}
.theme-blue .banner-brand-subtitle { color: #bfdbfe; border-color: rgba(59, 130, 246, 0.2); }
.theme-blue .banner-product-type { color: #bfdbfe; }
.theme-blue .card-banner::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #3b82f6;
    filter: blur(40px);
    opacity: 0.25;
    z-index: 3;
}

/* Card Body (Title, Price, Buttons) */
.card-content-area {
    padding: 0 4px;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-price {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1;
}

.card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    width: 100%;
    margin-bottom: 16px;
}

/* Purchase Button style matching user image */
.btn-buy {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #c22020 0%, #a81616 100%);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-base);
    box-shadow: 0 3px 10px rgba(168, 22, 22, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--font-primary);
}

.btn-buy:hover {
    background: linear-gradient(135deg, #dc2626 0%, #c22020 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.btn-buy-icon {
    width: 14px;
    height: 14px;
}

/* Dynamic No Products Found Banner */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
}

.no-results-icon {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ============================================
   Shopping Cart Drawer (Sağdan Açılan Sepet)
   ============================================ */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #0c0c0c;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drawer-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close-btn {
    background: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* Cart Items List */
.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 12px;
    position: relative;
}

.cart-item-img-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-img-placeholder.theme-red { background: linear-gradient(135deg, #420a0a, #150202); border: 1px solid rgba(239, 68, 68, 0.2); color: #ef4444; }
.cart-item-img-placeholder.theme-orange { background: linear-gradient(135deg, #421a0a, #150500); border: 1px solid rgba(249, 115, 22, 0.2); color: #f97316; }
.cart-item-img-placeholder.theme-green { background: linear-gradient(135deg, #0a3d1c, #010d05); border: 1px solid rgba(34, 197, 94, 0.2); color: #22c55e; }
.cart-item-img-placeholder.theme-blue { background: linear-gradient(135deg, #0a254d, #010a17); border: 1px solid rgba(59, 130, 246, 0.2); color: #3b82f6; }

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-fast);
}

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

.qty-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.cart-item-remove-btn {
    background: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    padding: 6px;
    position: absolute;
    top: 8px;
    right: 8px;
}

.cart-item-remove-btn:hover {
    color: var(--primary-light);
}

/* Empty Cart View */
.cart-empty-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: var(--text-secondary);
    gap: 16px;
    padding: 40px;
}

.cart-empty-icon {
    color: var(--text-muted);
}

/* Cart Drawer Footer */
.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #080808;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-summary-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-summary-total {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
}

.cart-checkout-btn {
    width: 100%;
    padding: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
    transition: all var(--transition-base);
    text-transform: uppercase;
}

.cart-checkout-btn:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
}

/* ============================================
   Checkout Modal (Discord Sipariş Formu)
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.checkout-modal {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .checkout-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--white);
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.modal-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary);
}

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

.checkout-notice {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checkout-notice-icon {
    color: #5865F2;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkout-notice-text {
    font-size: 0.8rem;
    color: #b9bbbe;
    line-height: 1.5;
}

.checkout-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    background: #5865F2; /* Discord color */
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.25);
    transition: all var(--transition-base);
    text-transform: uppercase;
}

.checkout-submit-btn:hover {
    background: #4752c4;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

/* Receipt Modal Area */
.receipt-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #3ba55d;
    max-height: 150px;
    overflow-y: auto;
    word-break: break-all;
    white-space: pre-wrap;
}

.btn-copy-receipt {
    width: 100%;
    padding: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}

.btn-copy-receipt:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
}

/* Badge Bounce Micro-Animation */
@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

.cart-badge.badge-bounce {
    animation: badgeBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   Product Detail Page Styles (Image 2 Match)
   ============================================ */

.product-detail-page {
    padding: 120px 0 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 992px) {
    .product-detail-container {
        grid-template-columns: 2.8fr 1.2fr;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.bc-sep {
    color: var(--text-muted);
}

.bc-current {
    color: var(--white);
    font-weight: 600;
}

/* Title Section */
.product-title-section {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.product-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.product-title .title-dot {
    color: var(--primary);
}

.product-category-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Badge border themes based on category color */
.product-category-badge.border-red {
    border: 1.5px solid #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.product-category-badge.border-orange {
    border: 1.5px solid #f97316;
    color: #f97316;
    background: rgba(249, 115, 22, 0.05);
}

.product-category-badge.border-green {
    border: 1.5px solid #22c55e;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
}

.product-category-badge.border-blue {
    border: 1.5px solid #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

/* Large Main Banner Graphic */
.product-main-banner {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .product-main-banner {
        height: 340px;
    }
}

/* Details and Info Cards */
.details-section {
    display: flex;
    flex-direction: column;
}

.details-heading {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.details-heading-line {
    height: 2px;
    background: var(--primary);
    width: 45px;
    margin: 8px 0 28px;
    border-radius: var(--radius-full);
}

.product-about-card,
.product-features-list-card,
.specs-card {
    background: rgba(17, 17, 17, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-card-title {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.about-card-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Features List Bullet points */
.features-list-ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list-ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.feature-check-svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
    filter: drop-shadow(0 0 3px var(--primary-glow));
}

/* Specs Grid Table */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.specs-table td {
    padding: 12px 0;
    font-size: 0.88rem;
}

.specs-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
    text-align: left;
}

.specs-table td:last-child {
    color: var(--white);
    font-weight: 600;
    text-align: right;
}

/* ============================================
   Checkout Sidebar (Right Column Card)
   ============================================ */
.checkout-sidebar {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 4px solid var(--primary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    position: sticky;
    top: 94px;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-sidebar:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 45px rgba(0,0,0,0.6);
    transform: translateY(-2px);
}

.sidebar-price-display {
    font-family: var(--font-primary);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1;
}

.sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sidebar-row.total-row {
    color: var(--white);
    font-weight: 700;
}

.total-price-green {
    color: #22c55e;
    font-size: 1.35rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 16px 0;
}

.sidebar-notice {
    background: rgba(220, 38, 38, 0.03);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.sidebar-notice .notice-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.sidebar-notice p {
    font-size: 0.75rem;
    color: #b9bbbe;
    line-height: 1.5;
    margin: 0;
}

.btn-discord-checkout {
    width: 100%;
    padding: 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-discord-checkout:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
}

.discord-checkout-icon {
    width: 16px;
    height: 16px;
}

.sidebar-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 18px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge-svg {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    color: var(--white);
    transform: translateX(4px);
}

.trust-badge-item:hover .trust-badge-svg {
    color: var(--primary);
    transform: scale(1.1);
}

/* YouTube Video Button Styles */
.btn-youtube-video {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(239, 68, 68, 0.05);
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 12px;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-youtube-video:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
    transform: translateY(-1px);
}

.youtube-video-icon {
    width: 18px;
    height: 18px;
    color: #ef4444;
    filter: drop-shadow(0 0 2px rgba(239, 68, 68, 0.5));
}

/* Gallery Thumbnails Styling */
.product-gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.thumb-item {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all var(--transition-base);
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
}

.thumb-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.thumb-item.active {
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

/* Instagram-like Premium Carousel Slider Styles */
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    opacity: 0.7;
    box-sizing: border-box;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.slider-arrow.prev {
    left: 16px;
}

.slider-arrow.next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.slider-dot.active {
    background: #dc2626;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.8);
}

