/* byjeton - Ana Stil Dosyası */

:root {
    --color-primary: #f43f5e;
    --color-primary-hover: #e11d48;
    --color-secondary: #14b8a6;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #f8fafc;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --color-success: #10b981;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--color-text);
}

.logo span {
    color: var(--color-primary);
}

.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
        gap: 2rem;
    }
}

.nav a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Menu */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        right: 0;
        display: flex;
    }
    
    .nav a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

@media (min-width: 1024px) {
    .mobile-overlay {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

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

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

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

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

/* Hero Section */
.hero {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }
}

.hero-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-title span {
    color: var(--color-primary);
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

@media (min-width: 1024px) {
    .stat-item {
        text-align: left;
    }
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

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

/* Live Purchases Box */
.live-purchases {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
}

.live-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% { 
        opacity: 0.8; 
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

.live-title {
    font-weight: 600;
    color: var(--color-text);
}

#liveList {
    position: relative;
}

.live-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0;
    animation: slideIn 0.5s ease-out;
    border-bottom: 1px solid transparent;
}

.live-item:not(:last-child) {
    border-bottom-color: var(--color-border);
}

.live-item.new-item {
    animation: slideInNew 1s ease-out;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
}

.live-item.exit-item {
    animation: slideOut 0.8s ease-in forwards;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInNew {
    from {
        opacity: 0;
        transform: translateY(-30px);
        background: rgba(16, 185, 129, 0.2);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        background: transparent;
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
        max-height: 50px;
    }
    to {
        opacity: 0;
        transform: translateX(30px);
        max-height: 0;
        padding: 0;
        margin: 0;
        border: none;
    }
}

/* Cascade animation - push down effect */
@keyframes pushDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes cascadeEnter {
    0% {
        opacity: 0;
        transform: translateY(-100%);
        max-height: 0;
    }
    30% {
        max-height: 60px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 60px;
    }
}

.live-item.push-down {
    animation: pushDownSmooth 0.8s ease-out forwards;
}

@keyframes pushDownSmooth {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

.live-item.cascade-enter {
    animation: cascadeEnter 0.8s ease-out forwards;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.15) 0%, transparent 100%);
}

.live-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Status Dots */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.green {
    background: #10b981;
    animation: pulseGlow 1.5s infinite;
}

.status-dot.red {
    background: #ef4444;
    opacity: 0.7;
}

.live-coin {
    width: 24px;
    height: 24px;
}

.live-amount {
    color: var(--color-primary);
    font-weight: 700;
}

.live-time {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* Packages Section */
.packages-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-desc {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Package Cards */
.packages-wrapper {
    position: relative;
    padding: 0 1rem;
}

.packages-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.packages-row {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.packages-row::-webkit-scrollbar {
    display: none;
}

.package-card {
    flex: 0 0 140px;
    min-width: 140px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
}

@media (max-width: 480px) {
    .package-card {
        flex: 0 0 calc(50% - 0.375rem);
        min-width: calc(50% - 0.375rem);
        padding: 1.25rem 1rem;
    }
    
    .package-tiktok-logo {
        width: 55px;
        margin-bottom: 0.5rem;
    }
    
    .package-coins {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .package-coin {
        width: 20px;
        height: 20px;
    }
    
    .package-bonus {
        font-size: 0.75rem;
    }
    
    .package-price {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .package-btn {
        padding: 0.6rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .packages-row {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

.package-tiktok-logo {
    width: 60px;
    height: auto;
    margin-bottom: 0.5rem;
}

.package-coins {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.package-coin {
    width: 18px;
    height: 18px;
}

.package-bonus {
    color: var(--color-success);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.package-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.package-btn {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.package-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

@media (min-width: 640px) {
    .package-card {
        flex: 0 0 160px;
        min-width: 160px;
        padding: 1.25rem;
    }
    
    .package-tiktok-logo {
        width: 70px;
    }
    
    .package-coins {
        font-size: 1.25rem;
    }
    
    .package-coin {
        width: 20px;
        height: 20px;
    }
    
    .package-bonus {
        font-size: 0.75rem;
    }
    
    .package-price {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .package-card {
        flex: 0 0 180px;
        min-width: 180px;
    }
}

/* Scroll Indicator Dots */
.scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-primary);
}

.scroll-dot:hover {
    background: var(--color-primary);
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-brand p {
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-section a {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    padding: 0.375rem 0;
    transition: opacity 0.2s;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.hidden { display: none; }

@media (min-width: 1024px) {
    .lg-block { display: block; }
    .lg-hidden { display: none; }
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.review-name {
    font-weight: 700;
    color: var(--color-text);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.875rem;
}

.review-text {
    color: var(--color-text-light);
    font-style: italic;
    line-height: 1.6;
}

/* Review Form */
.review-form-container {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .review-form-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

.review-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.star-rating i {
    color: #fbbf24;
    transition: transform 0.2s;
}

.star-rating i:hover {
    transform: scale(1.2);
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
}

.review-form .form-group {
    margin-bottom: 1rem;
}

.review-form .form-label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.review-form .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.review-form .form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

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

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 0;
}

.star-rating .star {
    font-size: 1.75rem;
    color: var(--color-border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #f59e0b;
    transform: scale(1.1);
}

/* Page Section - SPA Pages */
.page-section {
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.spa-back-link {
    margin-bottom: 1.5rem;
}

.spa-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.spa-back-link a:hover {
    background: var(--color-bg);
}

.content-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .content-card {
        padding: 1.5rem;
    }
}

.content-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.content-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-card h2:first-of-type {
    margin-top: 0;
}

.content-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-card ul, .content-card ol {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

.content-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.content-card a:hover {
    text-decoration: underline;
}

.content-card strong {
    color: var(--color-text);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

@media (max-width: 640px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 0.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    width: 40px;
    text-align: center;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Map Container */
.map-container {
    margin-top: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* News Items */
.news-item {
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-primary);
}

.news-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.news-item h3 {
    margin: 0 0 0.5rem 0;
    color: var(--color-text);
}

.news-item p {
    margin: 0;
}

/* SPA Styles removed - using full page view */

/* ==================== SEPET SAYFASI ==================== */
.cart-page {
    min-height: calc(100vh - 150px);
    padding: 2rem 0;
    background: var(--color-bg);
}

.cart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.cart-header .back-link:hover {
    color: var(--color-primary);
}

.cart-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.cart-header p {
    color: var(--color-text-light);
}

.success-notification {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #059669;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.success-notification.show {
    display: flex;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.cart-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.cart-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-card-header .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.cart-card-header h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

.search-box button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border: none;
    border-radius: 0.375rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.search-box button:hover {
    background: var(--color-primary-hover);
}

.user-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-light);
}

.user-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* User Found Card */
.user-found-card {
    background: var(--color-bg);
    border-radius: 0.75rem;
    padding: 1rem;
}

.user-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    object-fit: cover;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.user-username {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.user-nickname {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.user-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: var(--color-white);
    border-radius: 0.5rem;
}

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

.user-stats .stat-label {
    font-size: 0.65rem;
    color: var(--color-text-light);
}

.user-stats .stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Order Summary */
.order-card {
    position: relative;
}

.delete-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 0.5rem;
}

.delete-btn:hover {
    color: var(--color-primary);
}

.order-summary-box {
    background: var(--color-bg);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.tiktok-logo-summary {
    display: block;
    margin: 0 auto 1rem;
    width: 80px;
    height: auto;
}

.jeton-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.coin-icon-small {
    width: 28px;
    height: 28px;
}

.bonus-text {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.price-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-note {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

