
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #08080d;
    color: white;
    font-family: Arial, sans-serif;
}

a {
    transition: 0.2s ease;
}

button {
    font-family: inherit;
}


/* =========================
   HEADER
========================= */

header {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 12px 40px;

    background-color: #111118;

    border-bottom: 1px solid #292936;

    position: relative;
    z-index: 10;
}

.logo {
    color: white;

    font-size: 22px;
    font-weight: bold;

    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;

    gap: 25px;
}

nav a {
    color: #aaaaaa;

    text-decoration: none;

    font-size: 14px;
}

nav a:hover {
    color: white;
}

header button {
    background-color: #7c3cff;

    color: white;

    border: none;
    border-radius: 8px;

    padding: 11px 18px;

    font-weight: bold;

    cursor: pointer;
}

header button:hover {
    background-color: #925cff;
}


/* =========================
   HEADER SEPET
========================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-button {
    display: inline-flex;

    align-items: center;
    gap: 6px;

    padding: 10px 15px;

    background: #17131f;

    color: white;

    border: 1px solid #33264b;

    border-radius: 8px;

    text-decoration: none;

    font-weight: bold;
}

.cart-button:hover {
    background: #7c3cff;
    border-color: #7c3cff;
}

#cart-count {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 21px;
    height: 21px;

    padding: 0 5px;

    background: #7c3cff;

    color: white;

    border-radius: 50%;

    font-size: 11px;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 550px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 60px 20px;

    background:
        radial-gradient(
            circle at center,
            #241044 0%,
            #0d0b15 45%,
            #08080d 75%
        );
}

.hero-content {
    max-width: 800px;
}

.hero-tag {
    display: inline-block;

    padding: 8px 16px;

    margin-bottom: 25px;

    border: 1px solid #492b78;

    border-radius: 30px;

    color: #b999ff;

    background: #171021;

    font-size: 12px;

    font-weight: bold;
}

.hero h1 {
    margin: 0;

    font-size: 60px;

    line-height: 1.1;

    color: white;
}

.hero h1 span {
    color: #8b5cf6;
}

.hero p {
    margin: 25px auto;

    max-width: 600px;

    color: #9999a8;

    font-size: 17px;

    line-height: 1.6;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 30px;
}

.hero-buttons a {
    display: inline-block;

    padding: 14px 24px;

    border: none;

    border-radius: 8px;

    background: #7c3cff;

    color: white;

    font-weight: bold;

    text-decoration: none;
}

.hero-buttons a:hover {
    transform: translateY(-2px);

    background: #925cff;
}

.hero-buttons .secondary {
    background: #15151e;

    border: 1px solid #333340;
}


/* =========================
   SECTION
========================= */

.categories,
.products {
    padding: 90px 7%;
}

.categories {
    background: #08080d;
}

.products {
    background: #0b0b11;
}

.section-title {
    margin-bottom: 40px;
}

.section-title span {
    color: #8b5cf6;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;
}

.section-title h2 {
    margin-top: 10px;

    color: white;

    font-size: 34px;
}


/* =========================
   KATEGORİLER
========================= */

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.category-card {
    padding: 30px;

    background: #111118;

    border: 1px solid #24242f;

    border-radius: 14px;

    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);

    border-color: #7c3cff;
}

.category-icon {
    font-size: 38px;

    margin-bottom: 20px;
}

.category-card h3 {
    color: white;

    margin-bottom: 10px;
}

.category-card p {
    color: #888895;

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 20px;
}

.category-card a {
    color: #9b72ff;

    text-decoration: none;

    font-size: 13px;
}

.category-card a:hover {
    color: white;
}


/* =========================
   ÜRÜNLER
========================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.product-card {
    overflow: hidden;

    background: #111118;

    border: 1px solid #24242f;

    border-radius: 14px;

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);

    border-color: #7c3cff;
}

.product-image {
    height: 200px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #241344,
            #111118
        );

    font-size: 70px;
}

.product-info {
    padding: 25px;
}

.product-info small {
    color: #8b5cf6;

    font-size: 10px;

    font-weight: bold;
}

.product-info h3 {
    color: white;

    margin: 10px 0;
}

.product-info p {
    color: #858593;

    font-size: 13px;

    margin-bottom: 25px;
}

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}

.product-bottom strong {
    color: white;

    font-size: 20px;
}

.product-bottom button {
    padding: 10px 16px;

    border: none;

    border-radius: 7px;

    background: #7c3cff;

    color: white;

    font-weight: bold;

    cursor: pointer;
}

.product-bottom button:hover {
    background: #925cff;
}

.buy-link {
    display: inline-block;

    padding: 10px 16px;

    background: #7c3cff;

    color: white;

    border-radius: 7px;

    text-decoration: none;

    font-weight: bold;

    font-size: 14px;
}

.buy-link:hover {
    background: #925cff;
}


/* =========================
   ÜRÜN DETAY
========================= */

.product-detail {
    min-height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 80px;

    padding: 60px 7%;

    background: #08080d;
}

.detail-image {
    width: 400px;
    height: 400px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #241344,
            #111118
        );

    border: 1px solid #292936;

    border-radius: 20px;

    font-size: 120px;
}

.detail-content {
    max-width: 500px;
}

.detail-content small {
    color: #8b5cf6;

    font-weight: bold;
}

.detail-content h1 {
    color: white;

    font-size: 45px;

    margin: 15px 0;
}

.detail-content p {
    color: #92929f;

    line-height: 1.7;
}

.detail-price {
    color: white;

    font-size: 32px;

    font-weight: bold;

    margin: 30px 0;
}

.buy-button {
    padding: 15px 30px;

    background: #7c3cff;

    color: white;

    border: none;

    border-radius: 8px;

    font-weight: bold;

    font-size: 15px;

    cursor: pointer;
}

.buy-button:hover {
    background: #925cff;

    transform: translateY(-2px);
}


/* =========================
   SEPET
========================= */

.cart-link {
    padding: 10px 16px;

    background: #17131f;

    color: white;

    border: 1px solid #33264b;

    border-radius: 8px;

    text-decoration: none;

    font-weight: bold;
}

.cart-page {
    min-height: 600px;

    padding: 80px 7%;

    background: #08080d;
}

.cart-item {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 25px;

    background: #111118;

    border: 1px solid #24242f;

    border-radius: 14px;
}

.cart-product-image {
    width: 100px;
    height: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #241344;

    border-radius: 10px;

    font-size: 45px;
}

.cart-product-info {
    flex: 1;
}

.cart-product-info small {
    color: #8b5cf6;

    font-weight: bold;
}

.cart-product-info h3 {
    color: white;

    margin: 8px 0;
}

.cart-product-info p {
    color: #888895;

    margin: 0;
}

.cart-price {
    color: white;

    font-size: 22px;
}

.cart-summary {
    display: flex;

    justify-content: flex-end;

    gap: 30px;

    margin-top: 30px;

    color: white;

    font-size: 22px;
}

.checkout-button {
    display: block;

    margin: 25px 0 0 auto;

    padding: 14px 25px;

    background: #7c3cff;

    color: white;

    border: none;

    border-radius: 8px;

    font-weight: bold;

    cursor: pointer;
}

.remove-button {
    padding: 10px 15px;

    background: #24141a;

    color: #ff6b81;

    border: 1px solid #51202d;

    border-radius: 7px;

    cursor: pointer;

    font-weight: bold;
}

.remove-button:hover {
    background: #351923;
}


/* =========================
   ADET
========================= */

.quantity {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-left: auto;
}

.quantity button {
    width: 32px;
    height: 32px;

    border: 1px solid #393342;

    border-radius: 6px;

    background: #18151f;

    color: white;

    font-size: 18px;

    cursor: pointer;
}

.quantity button:hover {
    background: #7c3cff;
}

.quantity span {
    color: white;

    font-weight: bold;

    min-width: 20px;

    text-align: center;
}


/* =========================
   FİLTRELER
========================= */

.filters {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 30px;
}

.filters input {
    width: 250px;

    padding: 12px 15px;

    background: #111118;

    border: 1px solid #292936;

    border-radius: 8px;

    color: white;

    outline: none;
}

.filters input:focus {
    border-color: #7c3cff;
}

.filters button {
    padding: 11px 16px;

    background: #111118;

    color: white;

    border: 1px solid #292936;

    border-radius: 8px;

    cursor: pointer;
}

.filters button:hover {
    background: #7c3cff;
}


/* =========================
   MOBİL
========================= */

@media (max-width: 1000px) {

    header {
        padding: 12px 20px;
    }

    nav {
        gap: 15px;
    }

    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .product-detail {
        gap: 40px;
    }

    .detail-image {
        width: 330px;
        height: 330px;
    }

}


@media (max-width: 700px) {

    header {
        flex-wrap: wrap;

        justify-content: center;

        padding: 15px;
    }

    header .logo {
        width: 100%;

        text-align: center;
    }

    nav {
        display: none;
    }

    .header-actions {
        width: 100%;

        justify-content: center;
    }

    .hero {
        min-height: 500px;

        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons a {
        text-align: center;
    }

    .categories,
    .products {
        padding: 60px 20px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .product-detail {
        min-height: auto;

        flex-direction: column;

        padding: 40px 20px;

        gap: 30px;

        text-align: center;
    }

    .detail-image {
        width: 100%;

        max-width: 400px;

        height: 300px;

        font-size: 100px;
    }

    .detail-content {
        max-width: 100%;
    }

    .detail-content h1 {
        font-size: 35px;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .cart-product-info {
        width: calc(100% - 125px);
    }

    .quantity {
        margin-left: 0;
    }

    .filters input {
        width: 100%;
    }

}


@media (max-width: 450px) {

    .hero h1 {
        font-size: 34px;
    }

    .product-bottom {
        align-items: flex-start;

        flex-direction: column;
    }

    .product-bottom button,
    .buy-link {
        width: 100%;

        text-align: center;
    }

    .detail-image {
        height: 250px;

        font-size: 80px;
    }

}
.site-footer {
    background: #0b0b11;
    border-top: 1px solid #292936;
    padding: 60px 7% 25px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p {
    max-width: 350px;
    color: #858593;
    line-height: 1.7;
    font-size: 14px;
}

.site-footer h3 {
    color: white;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #858593;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #9b72ff;
}

.payment-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 95px;
    height: 42px;

    background: white;
    color: #111;
    border-radius: 7px;

    font-weight: bold;
    font-size: 14px;
}

.mastercard {
    color: #111;
}

.iyzico-placeholder {
    background: #7b2cff;
    color: white;
    border: none;
    font-weight: 800;
    font-size: 14px;
    border-radius: 8px;
    padding: 10px 18px;
    letter-spacing: .5px;
    box-shadow: 0 0 15px rgba(123,44,255,.35);
}.iyzico-placeholder {
    margin-top: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 15px;

    background: #111118;
    border: 1px solid #292936;
    border-radius: 7px;

    color: white;
    font-weight: bold;
}

.footer-bottom {
    max-width: 1200px;
    margin: 45px auto 0;

    padding-top: 20px;

    border-top: 1px solid #24242f;

    display: flex;
    justify-content: space-between;

    color: #666675;
    font-size: 12px;
}

@media (max-width: 800px) {

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}
.logo-area {
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo {
    font-size:22px;
    font-weight:900;
    letter-spacing:1px;
    color:white;
}

.logo-text {
    font-size:11px;
    color:#8d8aa5;
    margin-top:5px;
}


header {
    height:70px;
    padding:0 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#0b0b12;
    border-bottom:1px solid #252238;
}


nav {
    display:flex;
    gap:30px;
}


nav a {
    color:#aaa;
    font-size:14px;
    transition:.3s;
}


nav a:hover {
    color:#8b5cff;
}


.header-search {
    background:#151522;
    border:1px solid #29243c;
    padding:10px 18px;
    border-radius:12px;
    color:#aaa;
    width:160px;
}


.trust-bar {
    margin:15px 40px;
    padding:12px 25px;
    background:#11111b;
    border:1px solid #29243c;
    border-radius:15px;

    display:flex;
    justify-content:center;
    gap:50px;

    color:#ddd;
    font-size:14px;
}


.header-actions button {
    background:#7c3cff;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:10px;
}



/* =========================
   PREMIUM PRODUCT CARDS
========================= */


.product-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}


.product-card {

    position:relative;
    background:#11111b;

    border:1px solid #26223b;
    border-radius:22px;

    overflow:hidden;

    transition:.3s;

    padding-bottom:20px;
}


.product-card:hover {

    transform:translateY(-8px);

    border-color:#8b5cff;

    box-shadow:0 15px 40px rgba(139,92,255,.25);

}



.product-image {

    height:180px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:70px;

    background:
    linear-gradient(
    135deg,
    #171526,
    #0d0d15
    );

}



.product-badge {

    position:absolute;

    top:15px;
    left:15px;

    background:#8b5cff;

    color:white;

    padding:6px 12px;

    border-radius:20px;

    font-size:12px;

    font-weight:700;

    z-index:2;

}



.product-info {

    padding:20px;

}



.product-info small {

    color:#9b7cff;

    font-size:12px;

    font-weight:700;

}



.product-info h3 {

    margin:10px 0;

    color:white;

    font-size:20px;

}



.product-info p {

    color:#999;

    font-size:14px;

    min-height:40px;

}



.rating {

    margin:12px 0;

    font-size:14px;

}



.product-bottom {

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-top:20px;

}



.product-bottom strong {

    font-size:22px;

    color:white;

}



.product-bottom button {

    background:#8b5cff;

    color:white;

    border:none;

    padding:11px 16px;

    border-radius:12px;

    cursor:pointer;

    font-weight:700;

    transition:.3s;

}



.product-bottom button:hover {

    background:#a78bfa;

}



/* Tablet */

@media(max-width:1000px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}



/* Mobil */

@media(max-width:600px){

.product-grid{

grid-template-columns:1fr;

}

}


/* FINAL PRODUCT FIX */

.products {
    padding: 60px 40px;
}

.product-grid {
    display:grid !important;
    grid-template-columns:repeat(4, minmax(0,1fr)) !important;
    gap:25px !important;
}


.product-card {
    display:flex;
    flex-direction:column;
    background:#11111b !important;
    border:1px solid #2a2540 !important;
    border-radius:20px !important;
    overflow:hidden;
    min-height:420px;
}


.product-image {
    height:170px !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
    font-size:70px !important;
}


.product-info {
    padding:20px !important;
    flex:1;
    display:flex;
    flex-direction:column;
}


.product-info h3 {
    color:#fff !important;
}


.product-info p {
    color:#aaa !important;
}


.product-bottom {
    margin-top:auto !important;
    display:flex !important;
    justify-content:space-between !important;
    align-items:center;
}


.product-bottom button {
    background:#8b5cff !important;
    color:white !important;
}


@media(max-width:1000px){

.product-grid {
    grid-template-columns:repeat(2,1fr) !important;
}

}


@media(max-width:600px){

.product-grid {
    grid-template-columns:1fr !important;
}

}


.trust-bar {
    display:flex;
    justify-content:center;
    gap:50px;
    padding:18px 30px;
    margin:20px 40px;
    background:#11111b;
    border:1px solid #292236;
    border-radius:18px;
}

.trust-item {
    display:flex;
    align-items:center;
    gap:12px;
}

.trust-item span {
    font-size:28px;
}

.trust-item strong {
    display:block;
    color:white;
    font-size:14px;
}

.trust-item small {
    color:#999;
    font-size:12px;
}


.trust-item {
    text-decoration:none;
    color:inherit;
    cursor:pointer;
    transition:.3s;
}

.trust-item:hover {
    transform:translateY(-4px);
}

.trust-item:hover strong {
    color:#8b5cff;
}

