@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #ef8625;            /* Turuncu */
    --primary-glow: rgba(239, 134, 37, 0.15);
    --bg-body: #050505;            /* Siyah */
    --bg-card: #0f0f0f;            /* Kart Rengi */
    --border-color: #262626;       /* Çerçeve */
    --text-main: #ffffff;
    --text-muted: #a1a1aa;         /* Gri metinler */
    --header-h: 86px;
    --footer-h: 360px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
/* www.itemburada.com.tr */
.cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 9999;
    will-change: transform, opacity, left, top;
    background: rgba(239, 134, 37, 0.28);
    box-shadow: 0 0 34px rgba(239, 134, 37, 0.45);
    filter: blur(2px);
    transform: translate(-50%, -50%) scale(var(--cg-scale, 1));
    opacity: 0;
    transition: opacity 160ms ease;
}

.cursor-glow.is-visible {
    opacity: 1;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

header {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle { display: none; }

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.logo-img {
    width: 50px;
    height: 56px;
    object-fit: contain;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}
.logo span { color: var(--primary); }

nav ul { display: flex; gap: 30px; }
nav a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
nav a:hover { color: var(--primary); }
nav a.active { color: #ef8625; }

/* www.itemburada.com.tr */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: white;
    color: black;
}
.btn-primary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}
.btn-outline:hover {
    border-color: var(--primary);
    background: var(--bg-card);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

body > div.container {
    min-height: calc(100vh - var(--header-h) - var(--footer-h));
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 2.5rem 0 1rem 0;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0.5rem 0 1rem 0;
}

.filter-btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.filter-btn:hover {
    border-color: #444;
    color: white;
}

.filter-btn.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    color: white;
}

/* www.itemburada.com.tr */
.hero {
    text-align: center;
    padding: 8rem 1rem 6rem 1rem;
    position: relative;
    background: radial-gradient(circle at top center, #2e1a0a 0%, var(--bg-body) 60%);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-title--primary {
    color: var(--primary);
}
.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.section-header p { color: var(--text-muted); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    transition: 0.3s;
}
.feature-card:hover {
    border-color: #444;
    transform: translateY(-2px);
}
.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
}
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* www.itemburada.com.tr */
.faq-section { padding: 4rem 0; max-width: 800px; margin: 0 auto; }
.accordion-item {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-header {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}
.accordion-header i {
    transition: transform 200ms ease;
    transform: rotate(0deg);
}
.accordion-header:hover { background: #1a1a1a; }
.accordion-body {
    padding: 0 1.2rem 1.2rem 1.2rem;
    color: var(--text-muted);
    display: none;
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
}
.accordion-item.active .accordion-body { display: block; }
.accordion-item.active .accordion-header { color: var(--primary); }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }

/* www.itemburada.com.tr */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
/* ... */
    gap: 1.5rem;
    padding: 2rem 0;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}
.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #1a1a1a;
}
.card-body { 
    padding: 1.2rem; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}
.card-cat { 
    font-size: 0.75rem; 
    color: var(--primary); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 0.5rem; 
}
.card-title { 
    font-size: 1.1rem; 
    font-weight: 600; 
    color: white; 
    margin-bottom: 0.5rem; 
}
.card-desc { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    margin-bottom: 1rem; 
    flex-grow: 1; 
}
.card-price { 
    font-size: 1.2rem; 
    font-weight: 700; 
    color: white; 
    margin-bottom: 1rem; 
}

/* www.itemburada.com.tr */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 4rem 0;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.t-content { font-size: 0.95rem; color: var(--text-muted); font-style: italic; margin-bottom: 1rem; }
.t-user { display: flex; align-items: center; gap: 10px; }
.t-avatar { display: none; }
.t-name { font-weight: 600; color: white; font-size: 0.9rem; }

/* www.itemburada.com.tr */
.product-detail-container {
    margin: 2.5rem 0 4rem 0;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 2rem;
    align-items: start;
}

.detail-img {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 12px;
    padding: 12px;
}

.detail-img img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.detail-img button.img-lightbox-trigger {
    display: block;
    text-decoration: none;
    color: inherit;
}

.detail-img button.img-lightbox-trigger:hover img {
    transform: scale(1.01);
}

.detail-img img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.detail-info {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.detail-header h1 {
    font-size: 1.65rem;
    line-height: 1.15;
}

.detail-badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-badge {
    display: inline;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.detail-price {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 900;
}

.detail-divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.10);
}

.detail-shipping__title {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.detail-shipping__value {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.detail-buy-btn {
    margin-top: auto;
    width: 100%;
    height: 46px;
    border-radius: 10px;
    background: #fff;
    color: #111;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.detail-buy-btn:hover {
    background: var(--primary);
    color: #111;
}

.img-lightbox-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    cursor: zoom-in;
}

.img-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.img-lightbox.is-open {
    display: grid;
    place-items: center;
}

.img-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.img-lightbox__content {
    position: relative;
    max-width: min(1000px, 92vw);
    max-height: 86vh;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #000;
    z-index: 1;
}

.img-lightbox__content img {
    width: 100%;
    height: auto;
    max-height: calc(86vh - 24px);
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.img-lightbox__close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: white;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.no-scroll {
    overflow: hidden;
}

.detail-desc h3 {
    margin-bottom: 0.5rem;
}

.detail-desc p {
    color: var(--text-muted);
}

footer {
    border-top: 1px solid var(--border-color);
    background: #000;
    padding: 4rem 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 { color: white; margin-bottom: 1rem; font-weight: 600; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a:hover { color: var(--primary); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: white;
    transition: 0.25s;
}

.footer-social-link i {
    font-size: 1.1rem;
    line-height: 1;
}

.footer-social-link:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    transform: translateY(-1px);
}

.footer-copyright {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.payment-logo {
    height: 34px;
    width: auto;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    object-fit: contain;
}

.payment-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
}
/* www.itemburada.com.tr */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(2px);
    transition: opacity 600ms ease, transform 600ms ease, filter 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* www.itemburada.com.tr */
.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
}

.contact-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-icon--primary {
    background: var(--primary);
    color: #000;
}

.contact-icon--dark {
    background: #000;
    color: #fff;
    border: 1px solid var(--border-color);
}

.contact-info-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-info-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.contact-social {
    margin-top: 1.8rem;
}

.contact-social-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.contact-social-icons {
    display: flex;
    gap: 10px;
}
/* www.itemburada.com.tr */
.contact-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: white;
}

.contact-social-icon:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-action {
    width: 100%;
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-action--whatsapp {
    background: #25d366;
    color: #07220f;
}

.contact-action--instagram {
    background: #f97316;
    color: #2b1100;
}

.contact-action--itemsatis {
    background: #4f83ff;
    color: #0b1220;
}

.contact-action--discord {
    background: #3b82f6;
    color: #07121f;
}

.contact-action:hover {
    transform: translateY(-1px);
}
/* www.itemburada.com.tr */
@media (max-width: 1024px) {
    header { padding: 0.9rem 1rem; }
    nav ul { gap: 18px; }
    .hero { padding: 5.25rem 1rem 3.5rem 1rem; }
    .hero h1 { font-size: 2.7rem; }
    .container { padding: 0 1rem; }
    .product-detail-container { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.25rem; }

    .features-section { padding: 2rem 0; }
    .faq-section { padding: 2rem 0; }
    .section-header { margin-bottom: 1.1rem; }
    .product-grid { padding: 1.25rem 0; }
    .testimonials-grid { padding: 0.75rem 0 1.5rem 0; }
}

@media (max-width: 768px) {
    header { flex-wrap: wrap; gap: 10px; padding: 0.8rem 1rem; }
    .nav-toggle {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        background: var(--bg-card);
        color: white;
        cursor: pointer;
        margin-left: auto;
    }

    nav { width: 100%; display: none; }
    header.nav-open nav { display: block; }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 0.75rem;
        border: 1px solid var(--border-color);
        background: var(--bg-card);
        border-radius: 12px;
    }

    nav ul li a {
        display: flex;
        padding: 10px 12px;
        border-radius: 10px;
    }

    nav ul li a:hover { background: #1a1a1a; }

    nav ul li a.active {
        background: rgba(239, 134, 37, 0.12);
        color: var(--primary);
    }

    .hero { padding: 5.5rem 1rem 4rem 1rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }

    #featured { margin-top: 1.25rem; }

    .faq-section { padding-left: 1rem; padding-right: 1rem; }

    .features-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .contact-page { grid-template-columns: 1fr; }
    .product-detail-container { grid-template-columns: 1fr; }
    .detail-img img { max-height: 320px; }
    .detail-info { min-height: auto; }
    .detail-buy-btn { margin-top: 1rem; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .payment-methods { justify-content: center; }

    footer { padding: 2.75rem 1rem; }
    .footer-grid { gap: 0.75rem; }
    .footer-col h4 { margin-bottom: 0.4rem; }
    .footer-col ul li { margin-bottom: 0.2rem; }
}
/* www.itemburada.com.tr */
@media (max-width: 480px) {
    .container { padding: 0 0.9rem; }

    .hero h1 { font-size: 1.9rem; }
    .section-header h2 { font-size: 1.6rem; }

    #featured { margin-top: 1.5rem; }

    .faq-section { padding-left: 0.9rem; padding-right: 0.9rem; }

    .card-body { padding: 1rem; }
    .detail-header h1 { font-size: 1.35rem; }
    .detail-buy-btn { height: 44px; }

    footer { padding: 2.4rem 0.9rem; }
    .footer-grid { gap: 0.5rem; }
}