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

:root {
    --primary: #8a4b18;
    --primary-dark: #4b260b;
    --secondary: #d7a05a;
    --secondary-soft: #fff0d8;
    --success: #a4631b;
    --danger: #d43f2f;
    --dark: #1f1309;
    --light: #fffaf2;
    --cream: #fff4df;
    --gray: #6f6257;
    --border: #ead7bd;
    --shadow: 0 18px 45px rgba(69, 38, 10, 0.11);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(215, 160, 90, 0.18), transparent 30%),
        linear-gradient(180deg, #fffaf2 0%, #fff7ec 45%, #fffaf2 100%);
    color: var(--dark);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: rgba(255, 250, 242, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(72, 38, 8, 0.08);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(138, 75, 24, 0.14);
}

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

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-logo img {
    height: 66px;
    max-width: 190px;
    object-fit: contain;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.brand-name {
    display: inline-block;
    margin-left: 12px;
    color: var(--primary-dark);
    font-size: 1.35rem;
    font-weight: 950;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

.cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 52%, #b8752d 100%);
    color: white;
    border: none;
    padding: 13px 24px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s ease;
    box-shadow: 0 14px 28px rgba(138, 75, 24, 0.24);
    font-weight: 800;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(138, 75, 24, 0.32);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--danger) 0%, #9f241a 100%);
    color: white;
    border-radius: 999px;
    min-width: 28px;
    height: 28px;
    padding: 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 6px 14px rgba(212, 63, 47, 0.34);
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(31, 19, 9, 0.92) 0%, rgba(96, 48, 14, 0.88) 58%, rgba(183, 117, 45, 0.82) 100%),
        radial-gradient(circle at 80% 20%, rgba(255, 225, 175, 0.35), transparent 35%);
    color: white;
    padding: 86px 0 78px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -80px -10%;
    height: 160px;
    background: #fffaf2;
    transform: rotate(-2deg);
    transform-origin: left bottom;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    background: rgba(255,255,255,0.09);
    color: #ffe6bd;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 0.88rem;
}

.hero h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 1.1rem;
    font-weight: 950;
    letter-spacing: -0.06em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.hero p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.17rem;
    opacity: 0.93;
    font-weight: 400;
}

/* Products Section */
.products-section {
    padding: 66px 0 44px;
    position: relative;
    z-index: 3;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2.4rem;
    color: var(--dark);
    font-weight: 950;
    letter-spacing: -0.045em;
}

.section-title::after {
    content: '';
    display: block;
    width: 82px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.product-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(138, 75, 24, 0.12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(69, 38, 10, 0.16);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--cream), #f1ddbd);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.product-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1.28rem;
    margin-bottom: 0.55rem;
    color: var(--dark);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.product-info p {
    color: var(--gray);
    font-size: 0.94rem;
    margin-bottom: 1.1rem;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.product-qty-control {
    display: inline-flex;
    align-items: center;
    background: #fff7e9;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.product-qty-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: var(--dark);
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

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

.product-qty-input {
    width: 42px;
    height: 34px;
    border: 0;
    background: transparent;
    text-align: center;
    color: var(--dark);
    font-weight: 950;
    font-size: 0.98rem;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

.product-qty-input::-webkit-outer-spin-button,
.product-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price {
    font-size: 1.45rem;
    font-weight: 950;
    color: var(--primary);
    white-space: nowrap;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 11px 18px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 850;
    box-shadow: 0 10px 20px rgba(138, 75, 24, 0.2);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(138, 75, 24, 0.26);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -470px;
    top: 0;
    width: 470px;
    max-width: 100%;
    height: 100vh;
    background: #fffaf2;
    box-shadow: -18px 0 50px rgba(31, 19, 9, 0.22);
    transition: right 0.28s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(138, 75, 24, 0.16);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fff7e9 0%, #fffaf2 100%);
}

.cart-eyebrow {
    display: block;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.cart-header h3 {
    font-size: 1.65rem;
    color: var(--dark);
    letter-spacing: -0.035em;
}

.close-cart {
    width: 42px;
    height: 42px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(69, 38, 10, 0.08);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-items::-webkit-scrollbar {
    width: 7px;
}

.cart-items::-webkit-scrollbar-track {
    background: rgba(234, 215, 189, 0.55);
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 99px;
}

.empty-cart {
    text-align: center;
    color: var(--gray);
    padding: 58px 20px;
    font-size: 1.05rem;
    font-weight: 700;
}

.empty-cart:before {
    content: '🛒';
    display: block;
    font-size: 3.8rem;
    margin-bottom: 15px;
    opacity: 0.34;
}

.cart-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 15px;
    padding: 14px;
    background: white;
    border-radius: 18px;
    margin-bottom: 14px;
    align-items: stretch;
    border: 1px solid rgba(138, 75, 24, 0.13);
    box-shadow: 0 10px 26px rgba(69, 38, 10, 0.08);
}

.cart-item-image {
    width: 96px;
    height: 96px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--border);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-info h4 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.25;
    color: var(--dark);
    font-weight: 950;
}

.cart-item-price {
    color: var(--gray);
    font-weight: 800;
    font-size: 0.92rem;
}

.cart-item-total {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--secondary-soft);
    color: var(--primary-dark);
    font-weight: 950;
    font-size: 0.95rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff7e9;
    padding: 5px 8px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.qty-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

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

.qty-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #9c8b76;
}

.cart-min-note {
    display: inline-flex;
    align-items: center;
    padding: 7px 9px;
    border-radius: 999px;
    background: #fff4dd;
    color: var(--primary-dark);
    border: 1px solid rgba(138, 75, 24, 0.16);
    font-size: 0.78rem;
    font-weight: 900;
}

.qty-number {
    min-width: 30px;
    text-align: center;
    font-weight: 950;
    color: var(--dark);
}

.remove-btn {
    background: #fff1ee;
    color: var(--danger);
    border: 1px solid rgba(212, 63, 47, 0.2);
    padding: 8px 11px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 850;
}

.remove-btn:hover {
    background: var(--danger);
    color: white;
}

.cart-footer {
    border-top: 1px solid var(--border);
    padding: 20px;
    background: white;
    box-shadow: 0 -14px 30px rgba(69, 38, 10, 0.06);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.45rem;
    font-weight: 950;
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(135deg, #fff8eb 0%, #fff 100%);
    color: var(--primary-dark);
}

/* Müşteri Bilgileri Formu */
.customer-info-form {
    margin-bottom: 18px;
}

.form-group-cart {
    margin-bottom: 13px;
}

.form-group-cart label {
    display: block;
    margin-bottom: 7px;
    font-weight: 850;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group-cart label i {
    color: var(--primary);
    margin-right: 5px;
}

.form-group-cart input,
.form-group-cart textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1.8px solid var(--border);
    border-radius: 13px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background: #fffdf8;
    color: var(--dark);
}

.form-group-cart input:focus,
.form-group-cart textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(215, 160, 90, 0.17);
}

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

.form-group-cart input::placeholder,
.form-group-cart textarea::placeholder {
    color: #a69a8e;
}

.payment-methods {
    display: grid;
    gap: 8px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-option-ui {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    border-radius: 14px;
    border: 1.8px solid var(--border);
    background: #fffdf8;
    color: var(--dark);
    font-weight: 850;
    transition: all 0.22s ease;
}

.payment-option-ui i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--secondary-soft);
    color: var(--primary);
}

.payment-option input:checked + .payment-option-ui {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff6e7 0%, #ffffff 100%);
    box-shadow: 0 10px 24px rgba(138, 75, 24, 0.12);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 16px;
    font-size: 1.08rem;
    font-weight: 950;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 12px 24px rgba(138, 75, 24, 0.22);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(138, 75, 24, 0.3);
}

.simple-footer {
    margin-top: 34px;
    padding: 22px 0;
    background: var(--dark);
    color: rgba(255,255,255,0.86);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 750;
}

/* Görsel yükleme hatası için fallback */
.product-image img[src=""],
.product-image img[src*="placeholder.jpg"],
.cart-item-image img[src=""],
.cart-item-image img[src*="placeholder.jpg"] {
    background: linear-gradient(135deg, var(--cream) 0%, #ead7bd 100%);
    position: relative;
}

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 16px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 14px 28px rgba(69, 38, 10, 0.24);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease;
    z-index: 90;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        padding: 0 14px;
    }

    .brand-logo img {
        height: 56px;
        max-width: 155px;
    }

    .cart-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .cart-btn span:not(.cart-count) {
        display: none;
    }

    .hero {
        padding: 58px 0 58px;
    }
    
    .hero p {
        font-size: 1.03rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 225px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-item {
        grid-template-columns: 84px 1fr;
    }
    
    .cart-item-image {
        width: 84px;
        height: 84px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .product-actions {
        width: 100%;
        justify-content: space-between;
    }

    .product-qty-control {
        flex: 0 0 auto;
    }

    .add-to-cart-btn {
        flex: 1;
        min-width: 150px;
    }
}


/* ============================================================
   2026-05-02 Güncelleme: Sepet tek parça tasarım, boşluk azaltma,
   hero çapraz geçiş kaldırma
   ============================================================ */
.hero {
    padding: 54px 0 42px !important;
    overflow: visible !important;
}

.hero::after {
    display: none !important;
    content: none !important;
}

.hero-badge {
    margin-bottom: 12px !important;
}

.hero h2 {
    margin-bottom: 0.65rem !important;
}

.products-section {
    padding: 34px 0 26px !important;
    margin-top: 0 !important;
}

.section-title {
    margin-bottom: 1.45rem !important;
}

.cart-sidebar {
    background: linear-gradient(180deg, #fff8eb 0%, #fffaf4 100%) !important;
}

.cart-header {
    padding: 18px 20px !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.cart-items {
    flex: 1 1 auto !important;
    padding: 14px 16px 6px !important;
    background: transparent !important;
}

.cart-footer {
    border-top: 0 !important;
    padding: 6px 16px 16px !important;
    background: transparent !important;
    box-shadow: none !important;
}

.cart-items:not(:has(.empty-cart)) {
    padding-bottom: 0 !important;
}

.cart-items + .cart-footer {
    position: relative;
}

.cart-items + .cart-footer::before {
    content: '';
    display: block;
    height: 1px;
    margin: 0 0 10px;
    background: linear-gradient(90deg, transparent, rgba(138, 75, 24, 0.22), transparent);
}

.cart-item {
    grid-template-columns: 78px 1fr !important;
    gap: 12px !important;
    padding: 11px !important;
    margin-bottom: 10px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(138, 75, 24, 0.18) !important;
    box-shadow: 0 8px 18px rgba(69, 38, 10, 0.07) !important;
}

.cart-item-image {
    width: 78px !important;
    height: 78px !important;
    border-radius: 13px !important;
}

.cart-item-info {
    gap: 5px !important;
}

.cart-item-info h4 {
    font-size: 0.98rem !important;
    line-height: 1.18 !important;
}

.cart-item-price {
    font-size: 0.82rem !important;
}

.cart-item-total {
    padding: 4px 8px !important;
    font-size: 0.86rem !important;
}

.cart-item-controls {
    gap: 6px !important;
    margin-top: 2px !important;
}

.qty-control {
    gap: 6px !important;
    padding: 4px 6px !important;
    border-radius: 10px !important;
}

.qty-btn {
    width: 27px !important;
    height: 27px !important;
    border-radius: 8px !important;
}

.qty-number {
    min-width: 24px !important;
    font-size: 0.92rem !important;
}

.remove-btn {
    padding: 7px 9px !important;
    border-radius: 10px !important;
    font-size: 0.78rem !important;
}

.cart-min-note {
    padding: 5px 7px !important;
    font-size: 0.72rem !important;
}

.cart-total {
    margin-bottom: 10px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    font-size: 1.22rem !important;
    background: #ffffff !important;
}

.customer-info-form {
    margin-bottom: 10px !important;
    padding: 12px !important;
    border: 1px solid rgba(138, 75, 24, 0.14) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 8px 18px rgba(69, 38, 10, 0.055) !important;
}

.form-group-cart {
    margin-bottom: 8px !important;
}

.form-group-cart label {
    margin-bottom: 4px !important;
    font-size: 0.78rem !important;
    line-height: 1.15 !important;
}

.form-group-cart input,
.form-group-cart textarea {
    padding: 8px 10px !important;
    border-radius: 11px !important;
    font-size: 0.86rem !important;
}

.form-group-cart textarea {
    min-height: 42px !important;
}

#customerAddress {
    min-height: 48px !important;
}

#customerNote {
    min-height: 38px !important;
}

.payment-methods {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
}

.payment-option-ui {
    padding: 8px 10px !important;
    border-radius: 12px !important;
    font-size: 0.84rem !important;
}

.payment-option-ui i {
    width: 27px !important;
    height: 27px !important;
    border-radius: 9px !important;
}

.checkout-btn {
    padding: 12px !important;
    border-radius: 14px !important;
    font-size: 0.98rem !important;
}

.simple-footer {
    margin-top: 16px !important;
    padding: 14px 0 !important;
}

@media (max-width: 768px) {
    .hero {
        padding: 42px 0 34px !important;
    }

    .products-section {
        padding-top: 26px !important;
    }

    .cart-item {
        grid-template-columns: 72px 1fr !important;
    }

    .cart-item-image {
        width: 72px !important;
        height: 72px !important;
    }
}

/* Son düzenleme: header firma adı + tek parça sepet akışı */
.header .container {
    flex-wrap: nowrap;
}

.brand-logo {
    min-width: 0;
    max-width: calc(100% - 118px);
    gap: 0;
}

.cart-btn {
    flex: 0 0 auto;
}

.cart-sidebar {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: block !important;
}

.cart-items {
    flex: 0 0 auto !important;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

.cart-items::-webkit-scrollbar {
    width: 0 !important;
    display: none !important;
}

.cart-footer {
    flex: 0 0 auto !important;
}

@media (max-width: 768px) {
    .header {
        padding: 0.65rem 0 !important;
    }

    .header .container {
        gap: 10px !important;
    }

    .brand-logo {
        max-width: calc(100% - 62px);
    }

    .brand-logo img {
        height: 46px !important;
        max-width: 78px !important;
        flex: 0 0 auto;
    }

    .brand-name {
        margin-left: 8px !important;
        font-size: 0.82rem !important;
        line-height: 1 !important;
        max-width: calc(100vw - 160px) !important;
    }

    .cart-btn {
        width: 46px !important;
        height: 46px !important;
        padding: 0 !important;
        justify-content: center !important;
        border-radius: 16px !important;
    }
}

@media (max-width: 390px) {
    .brand-logo img {
        height: 40px !important;
        max-width: 64px !important;
    }

    .brand-name {
        font-size: 0.72rem !important;
        max-width: calc(100vw - 140px) !important;
    }
}


.cart-total-min-warning {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff3cd;
    border: 1px solid #f1c36d;
    color: #7a4b00;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

.cart-total-min-warning i {
    margin-right: 6px;
}

/* ============================================================
   2026-05-02 Renk Güncellemesi
   - Hero/slogan alanı arka planı: #e8d8b7
   - Butonlar tek renk: #c47b2d
   ============================================================ */
:root {
    --primary: #c47b2d;
    --primary-dark: #c47b2d;
    --secondary: #c47b2d;
    --secondary-soft: #f6ead8;
    --border: #ead8bd;
}

.hero {
    background: #e8d8b7 !important;
    color: #2f2015 !important;
}

.hero h2,
.hero p {
    color: #2f2015 !important;
    text-shadow: none !important;
}

.hero-badge {
    background: #c47b2d !important;
    border-color: #c47b2d !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.cart-btn,
.add-to-cart-btn,
.checkout-btn,
.product-qty-btn,
.qty-btn,
.scroll-to-top,
.close-cart,
.remove-btn {
    background: #c47b2d !important;
    background-image: none !important;
    color: #ffffff !important;
    border-color: #c47b2d !important;
    box-shadow: none !important;
}

.cart-btn:hover,
.add-to-cart-btn:hover,
.checkout-btn:hover,
.product-qty-btn:hover,
.qty-btn:hover,
.scroll-to-top:hover,
.close-cart:hover,
.remove-btn:hover {
    background: #c47b2d !important;
    background-image: none !important;
    color: #ffffff !important;
    border-color: #c47b2d !important;
    box-shadow: none !important;
}

.qty-btn:disabled {
    background: #c9b69f !important;
    border-color: #c9b69f !important;
    color: #ffffff !important;
}

.section-title::after,
.cart-count {
    background: #c47b2d !important;
    background-image: none !important;
}

.payment-option input:checked + .payment-option-ui {
    border-color: #c47b2d !important;
    box-shadow: none !important;
}

.payment-option-ui i,
.form-group-cart label i,
.cart-eyebrow,
.price {
    color: #c47b2d !important;
}

/* ============================================================
   Footer RAG Dijital Link Düzenlemesi
   ============================================================ */
.simple-footer {
    font-size: 0.78rem !important;
    padding: 10px 0 !important;
    margin-top: 12px !important;
    font-weight: 600 !important;
}

.simple-footer p {
    margin: 0 !important;
}

.simple-footer a {
    color: #c47b2d !important;
    text-decoration: none !important;
    font-weight: 800 !important;
}

.simple-footer a:hover {
    text-decoration: underline !important;
}
