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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #fff4fa 0%, #fffaf3 45%, #ffffff 100%);
    color: #30202a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(106, 44, 145, 0.14);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 28px;
    color: #29151f;
    letter-spacing: 0.3px;
}

.logo span {
    color: #6A2C91;
}

.logo small {
    display: block;
    font-size: 12px;
    color: #b17b2d;
    margin-top: 2px;
}

nav a {
    color: #3a2630;
    text-decoration: none;
    margin-left: 18px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #6A2C91;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(135deg, #6A2C91 0%, #E98CB7 48%, #D9B35F 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 35px;
    align-items: center;
}

.hero h2 {
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
}

.hero p {
    color: #fff;
    font-size: 19px;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, #fff1c8);
    color: #6A2C91;
    padding: 15px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.hero-box {
    background: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 34px;
    padding: 32px;
    text-align: center;
    color: #fff;
}

.hero-box .big-icon {
    font-size: 86px;
    margin-bottom: 10px;
}

/* ===== INFO STRIP ===== */
.info-strip {
    margin: 35px 0 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.info-box {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(106, 44, 145, 0.10);
    color: #3a2630;
}

.info-box strong {
    display: block;
    color: #6A2C91;
    margin-bottom: 6px;
}

/* ===== BAŞLIKLAR ===== */
.section-title {
    text-align: center;
    font-size: 34px;
    margin: 55px 0 12px;
    color: #2c1722;
}

.section-subtitle {
    text-align: center;
    color: #9a6178;
    margin-bottom: 32px;
}

/* ===== KATEGORİLER ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 22px;
    margin-bottom: 50px;
}

.category-card {
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
    padding: 30px 18px;
    border-radius: 24px;
    text-decoration: none;
    color: #34202b;
    box-shadow: 0 10px 30px rgba(106, 44, 145, 0.13);
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-7px);
}

.category-icon {
    width: 62px;
    height: 62px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #efe0ff, #fff1c7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* ===== ÜRÜNLER ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 55px;
}

.product-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(91, 34, 61, 0.11);
    transition: 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card::before {
    content: "Yeni";
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #6A2C91, #D9B35F);
    color: white;
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, #fff2f8, #fff9ed);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    text-decoration: none;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.35s;
}

.product-card:hover .product-image img {
    transform: scale(1.07);
}

.product-info {
    padding: 19px;
    text-align: center;
}

.brand-name {
    color: #6A2C91;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

.product-info h3 {
    font-size: 16px;
    margin: 10px 0;
}

.product-info h3 a {
    color: #2d1823;
    text-decoration: none;
}

.price {
    font-size: 22px;
    color: #d72f7d;
    font-weight: 900;
    margin: 12px 0;
}

.btn-add-to-cart,
.btn-login-to-see {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    transition: 0.3s;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, #6A2C91, #E98CB7);
}

.btn-login-to-see {
    background: linear-gradient(135deg, #8e6f80, #c08497);
}

.btn-add-to-cart:hover,
.btn-login-to-see:hover {
    transform: translateY(-3px);
}

/* ===== PROMO (GALERİ/VIDEO) ===== */
.promo-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 20px 0 60px;
}

.promo-card {
    background: linear-gradient(135deg, #6A2C91, #E98CB7);
    color: white;
    border-radius: 28px;
    padding: 35px;
}

.promo-card:nth-child(2) {
    background: linear-gradient(135deg, #30202a, #D9B35F);
}

.promo-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.promo-card a {
    display: inline-block;
    background: white;
    color: #6A2C91;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
}

/* ===== SEPET TABLOSU ===== */
.cart-table {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    background: #6A2C91;
    color: white;
}

.total-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: right;
    margin: 20px 0;
}

.total-box h3 {
    font-size: 28px;
    color: #d72f7d;
}

.btn-checkout {
    background: linear-gradient(135deg, #6A2C91, #E98CB7);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.btn-remove {
    color: red;
    text-decoration: none;
    font-weight: bold;
}

/* ===== GİRİŞ/KAYIT KUTULARI ===== */
.login-box,
.register-box {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    width: 400px;
    margin: 80px auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.login-box h2,
.register-box h2 {
    text-align: center;
    color: #6A2C91;
    margin-bottom: 30px;
}

.login-box input,
.register-box input {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 16px;
}

.login-box button,
.register-box button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6A2C91, #E98CB7);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* ===== ÜRÜN DETAY ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

.detail-image {
    background: linear-gradient(135deg, #fff2f8, #fff9ed);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.detail-image img {
    max-width: 100%;
    max-height: 400px;
}

.detail-info h1 {
    font-size: 32px;
    color: #2c1722;
    margin-bottom: 15px;
}

/* ===== GALERİ ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.gallery-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-item p {
    padding: 18px;
    text-align: center;
    font-weight: 600;
    color: #6A2C91;
}

/* ===== VİDEOLAR ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.video-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-card iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.video-card p {
    padding: 18px;
    text-align: center;
    font-weight: 600;
    color: #6A2C91;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #301421, #4b1b32);
    color: white;
    text-align: center;
    padding: 34px 0;
    margin-top: 60px;
}

footer p {
    margin: 6px 0;
    color: #ffe7f2;
}

.footer-menu {
    margin: 15px 0;
}

.footer-menu a {
    color: #fff1c8;
    text-decoration: none;
    margin: 0 8px;
    font-weight: 700;
}

/* ===== WHATSAPP BUTONU ===== */
.whatsapp-button {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ===== MOBİL UYUM ===== */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 14px;
    }

    nav {
        text-align: center;
    }

    nav a {
        margin: 6px 8px;
        display: inline-block;
        font-size: 14px;
    }

    .hero {
        padding: 65px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h2 {
        font-size: 35px;
    }

    .hero-box {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

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

    .video-grid {
        grid-template-columns: 1fr;
    }

    .login-box,
    .register-box {
        width: 90%;
        margin: 40px auto;
    }
}