@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --primary: #a06c4f;
    --primary-light: #805335;
    --primary-dark: #835841;
    --accent: #D4AF37;
    --accent-hover: #c19b2c;
    --bg-color: #F8F9FA;
    --surface: #FFFFFF;
    --text-main: #1f1f1f;
    --text-muted: #757575;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

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

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--surface);
    color: var(--surface);
    padding: 10px 24px;
}

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

.btn-link {
    color: var(--surface);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* --- HEADER REDESIGN --- */
.header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Top Header */
.top-header {
    background-color: var(--primary-dark);
    color: white;
    font-size: 13px;
    padding: 8px 0;
}

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

.top-header-right {
    display: flex;
    gap: 20px;
}

.top-header-right a:hover {
    color: var(--accent);
}

/* Mobil top header — tek satır, ortalı */
.top-header-mobile {
    display: none;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Main Header */
.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    gap: 40px;
}

/* Mobil sol grup masaüstünde gizli */
.mobile-left-group {
    display: none;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    text-decoration: none;
}

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

.search-bar {
    flex-grow: 1;
    max-width: 500px;
    position: relative;
    display: flex;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--primary);
    border-radius: 10px 0 0 10px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.search-bar button {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--primary-light);
}

.header-actions {
    display: flex;
    gap: 25px;
    flex-shrink: 0;
}

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

.action-item i {
    font-size: 24px;
    color: var(--text-main);
}

.cart-buttons .action-item i {
    color: white !important;
}

.action-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.action-text .small {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.action-text .price {
    color: var(--primary);
}

.cart-action {
    position: relative;
}

.cart-icon-wrapper {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--accent);
    color: white;
    font-size: 11px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
}

/* Cart Dropdown Hover */
.cart-action {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: -25px;
}

.cart-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    width: 360px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
    overflow: hidden;
}

.cart-action:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Free shipping progress bar */
.cart-shipping-bar {
    background: linear-gradient(135deg, #f0faf0, #e8f5e8);
    padding: 12px 16px;
    border-bottom: 1px solid #d4edda;
}

.cart-shipping-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #2d7a2d;
    margin-bottom: 8px;
}

.cart-shipping-text i {
    font-size: 14px;
    color: #2d7a2d;
}

.cart-shipping-track {
    height: 5px;
    background: #c3e6c3;
    border-radius: 10px;
    overflow: hidden;
}

.cart-shipping-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Items list */
.cart-dropdown-items {
    max-height: 260px;
    overflow-y: auto;
    padding: 8px 0;
}

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

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

.cart-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    transition: background 0.2s;
}

.cart-dropdown-item:hover {
    background: #fafafa;
}

.cart-item-img {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: block;
}

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

.cart-item-info {
    flex-grow: 1;
    min-width: 0;
}

.cart-item-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.cart-item-name:hover {
    color: var(--primary);
}

.cart-item-variant {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-color);
    border-radius: 6px;
    padding: 2px 4px;
    border: 1px solid var(--border);
}

.qty-btn {
    background: none;
    border: none;
    width: 22px;
    height: 22px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

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

.cart-item-qty span {
    font-size: 13px;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.remove-item {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 12px;
    padding: 4px;
    flex-shrink: 0;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-top: 2px;
}

.remove-item:hover {
    background: #ffe5e5;
    color: #e74c3c;
}

/* Summary */
.cart-dropdown-summary {
    border-top: 1px solid var(--border);
    padding: 14px 16px;
    background: #fafafa;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cart-summary-row.discount i {
    color: #e74c3c;
    font-size: 11px;
}

.text-muted-sm {
    font-size: 12px;
    color: var(--text-muted);
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    padding: 10px 0;
    border-top: 1px solid var(--border);
    margin: 6px 0 12px;
}

.cart-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.cart-btn-secondary {
    flex: 1;
    padding: 10px;
    background: var(--primary);
    border: 1.5px solid var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.cart-btn-secondary i {
    font-size: 12px;
    color: white !important;
}

.cart-btn-secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.cart-btn-primary {
    flex: 1.2;
    padding: 10px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.cart-btn-primary i {
    font-size: 11px;
    color: white !important;
}

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

/* Trust badges */
.cart-trust {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.cart-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-trust i {
    color: var(--primary);
    font-size: 11px;
}


/* Bottom Header (Menu) */
.bottom-header {
    border-top: 1px solid var(--border);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    padding: 15px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav item wrapper */
.nav-links .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links .nav-item>a,
.nav-links .nav-item>span {
    font-weight: 600;
    font-size: 15px;
    padding: 0px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-arrow {
    font-size: 9px;
    transition: transform 0.25s ease;
    opacity: 0.6;
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Mega dropdown panel */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(8px);
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    width: min(680px, calc(100vw - 40px));
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* bridge to prevent gap losing hover */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

/* Right-align when JS detects overflow */
.has-dropdown.dropdown-right .nav-dropdown {
    left: auto;
    right: 0;
}

.nav-dropdown-inner {
    display: flex;
    padding: 25px;
    gap: 30px;
}

.nav-dropdown-col {
    flex: 1;
    min-width: 130px;
}

.nav-dropdown-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.nav-dropdown-col a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    padding: 6px 0;
    transition: var(--transition);
}

.nav-dropdown-col a:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* Remove the underline animation for dropdown links */
.nav-dropdown-col a::after {
    display: none !important;
}

/* Promo banner inside dropdown */
.nav-dropdown-banner {
    width: 170px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.nav-dropdown-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    display: block;
    transition: transform 0.4s;
}

.nav-dropdown-banner:hover img {
    transform: scale(1.05);
}

.nav-dropdown-banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.nav-dropdown-banner-text span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 4px;
}

.nav-dropdown-banner-text strong {
    display: block;
    font-size: 13px;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.nav-dd-btn {
    display: inline-block;
    background: var(--primary);
    color: white !important;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px !important;
    border-radius: 20px;
    transition: background 0.2s ease;
    margin-top: 4px;
}

.nav-dd-btn:hover {
    background: var(--accent) !important;
    color: white !important;
    padding-left: 14px !important;
    /* override nav-links a:hover padding animation */
}

/* Prevent underline bar on nav-dd-btn */
.nav-dd-btn::after {
    display: none !important;
}


/* --- HERO SLIDER & SIDE BANNERS --- */
.hero-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

.hero-slider-section {
    position: relative;
    height: 420px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.heroSwiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 500px;
    padding: 0 40px;
    color: white;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.hero-content p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-side-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 420px;
}

.side-banner {
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    display: block;
}

.side-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s;
}

.side-banner:hover img {
    transform: scale(1.05);
}

.side-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    z-index: 2;
}

.side-banner-content h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
}

.side-banner-content span {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.hero-next,
.hero-prev {
    color: white !important;
    transform: scale(0.7);
    background: rgba(0, 0, 0, 0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    top: auto !important;
    bottom: 20px !important;
    margin-top: 0 !important;
    transition: background 0.3s ease;
}

.hero-prev {
    left: 30px !important;
}

.hero-next {
    left: 80px !important;
    right: auto !important;
}

.hero-next:hover,
.hero-prev:hover {
    background: var(--primary);
}

.hero-pagination .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

/* --- CIRCULAR CATEGORIES --- */
.categorySwiper {
    padding: 10px 0 !important;
}

.circle-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.circle-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    background: white;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.circle-category:hover .circle-img {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.circle-category:hover .circle-img img {
    transform: scale(1.1);
}

.circle-category span {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-main);
}

.cat-next,
.cat-prev {
    color: var(--primary) !important;
    background: white;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.cat-next:after,
.cat-prev:after {
    font-size: 14px !important;
    font-weight: bold;
}

/* --- ZIG ZAG CATEGORY & PRODUCT SECTION --- */
.cat-prod-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.cat-prod-layout.right-img {
    flex-direction: row-reverse;
}

.cat-banner {
    flex: 0 0 300px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.cat-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.cat-banner:hover img {
    transform: scale(1.05);
}

.cat-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.cat-banner-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.cat-banner-content p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.prod-slider-container {
    flex: 1;
    min-width: 0;
    /* for swiper layout stability */
    position: relative;
}

/* --- REAL E-COMMERCE PRODUCT CARD --- */
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.product-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: white;
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: none;
}

.product-fav-btn:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.product-fav-btn.active {
    color: #e74c3c;
}

.product-img-wrapper {
    position: relative;
    padding-bottom: 100%;
    /* square ratio */
    margin-bottom: 15px;
    display: block;
    overflow: hidden;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
    border-radius: 6px;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title:hover {
    color: var(--primary);
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: auto;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.product-card:hover .add-to-cart-btn {
    background: var(--primary);
    color: white;
}

.prod-next,
.prod-prev {
    color: var(--primary) !important;
    background: white;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.prod-next:after,
.prod-prev:after {
    font-size: 14px !important;
    font-weight: bold;
}


/* Features Banner */
.features-banner {
    background-color: var(--surface);
    padding: 50px 0;
    border-top: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(160, 108, 79, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(160, 108, 79, 0.25);
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    background-image: linear-gradient(rgba(50, 30, 20, 0.94), rgba(30, 15, 10, 0.98)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 70px 0 25px;
    position: relative;
    border-top: 4px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a {
    color: #b0b0b0;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 13px;
}

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Forms & Other Pages */
.form-container {
    max-width: 450px;
    margin: 40px auto;
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* --- 2-COL BANNERS --- */
.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.promo-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    height: 250px;
    display: block;
}

.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.promo-banner:hover img {
    transform: scale(1.05);
}

.promo-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 60%;
}

.promo-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: white;
}

.promo-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* =============================================
   HAMBURGER MENU
   ============================================= */

/* Mobil sol grup (hamburger + search ikonu) — masaüstünde gizli */
.mobile-left-group {
    display: none;
    align-items: center;
    gap: 4px;
}

/* Hamburger butonu */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    transition: var(--transition);
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

/* X animasyonu */
.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobil arama ikonu butonu */
.mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 17px;
    color: var(--text-main);
    transition: var(--transition);
}

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

/* Mobil arama overlay */
.mobile-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 12px 15px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-search-overlay.open {
    transform: translateY(0);
}

.mobile-search-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-search-inner input {
    flex: 1;
    padding: 11px 16px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

.mobile-search-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

/* Mobil menü overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Mobil menü paneli */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: var(--surface);
    z-index: 1400;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--primary);
    color: white;
}

.mobile-nav-header .logo {
    color: white;
    font-size: 22px;
}

.mobile-nav-header .logo span {
    color: var(--accent);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.mobile-nav-links {
    padding: 10px 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-user {
    background: #fdfdfd;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.mobile-user-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-main);
}

.mobile-user-link .icon {
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--primary);
    position: relative;
}

.mobile-user-link .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
}

.mobile-user-link .info {
    display: flex;
    flex-direction: column;
}

.mobile-user-link .title {
    font-size: 14px;
    font-weight: 600;
}

.mobile-user-link .desc {
    font-size: 12px;
    color: var(--text-muted);
}

.mobile-nav-footer {
    background: var(--primary-dark);
    color: white;
    padding: 20px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact a {
    color: white;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-contact a i {
    color: var(--accent);
}

.mobile-social {
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.mobile-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.mobile-social a:hover {
    background: var(--accent);
}

.mobile-nav-links a,
.mobile-nav-item>span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-item>span:hover {
    background: rgba(74, 46, 27, 0.05);
    color: var(--primary);
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-item>span {
    border-bottom: none;
}

.mobile-nav-item>span i.nav-arrow {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.mobile-nav-item.open>span i.nav-arrow {
    transform: rotate(180deg);
}

/* Mobil alt menü (accordion) */
.mobile-sub-nav {
    display: none;
    background: #faf8f6;
    padding: 5px 0;
}

.mobile-nav-item.open .mobile-sub-nav {
    display: block;
}

.mobile-sub-nav a {
    padding: 11px 20px 11px 35px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: none;
    display: block;
}

.mobile-sub-nav a:hover {
    color: var(--primary);
    background: rgba(74, 46, 27, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .cat-prod-layout {
        flex-direction: column !important;
    }

    .cat-banner {
        flex: 0 0 200px;
    }

    .header {
        padding: 15px 0;
    }

    .nav-links {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
}

/* 998px altında hamburger menüye geç */
@media (max-width: 998px) {

    /* Top header mobilde sadeleşir */
    .top-header-inner {
        display: none;
    }

    .top-header-mobile {
        display: block;
    }

    .top-header {
        padding: 7px 0;
    }

    /* ---- Header 3-bölge layout ---- */
    .main-header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 12px 0;
        gap: 0;
    }

    /* Sol: hamburger + search ikonu */
    .mobile-left-group {
        display: flex;
        align-items: center;
        gap: 4px;
        justify-content: flex-start;
    }

    /* Orta: logo — grid'de auto kolon, ortada */
    .logo {
        font-size: 22px;
        text-align: center;
        justify-self: center;
        flex-shrink: unset;
    }

    /* Sağ: profil + sepet */
    .header-actions {
        display: flex;
        justify-content: flex-end;
        gap: 16px;
    }

    /* Desktop search bar gizle */
    .search-bar {
        display: none !important;
    }

    /* Action text gizle, sadece ikonlar */
    .action-text {
        display: none;
    }

    /* İkon boyutları mobilde */
    .action-item i {
        font-size: 22px;
    }

    /* Cart dropdown mobilde devre dışı */
    .cart-action {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .cart-dropdown {
        display: none !important;
    }

    /* Desktop nav gizle */
    .bottom-header {
        display: none;
    }

    /* Mobil arama overlay göster */
    .mobile-search-overlay {
        display: block;
    }

    /* Hero layout: slider üstte, side banners altında 2 yan yana */
    .hero-layout {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-side-banners {
        display: flex !important;
        flex-direction: row !important;
        height: 160px;
        gap: 12px;
        width: 100%;
    }

    .side-banner {
        flex: 1;
        min-width: 0;
    }

    /* Swiper okları mobilde gizle */
    .hero-next,
    .hero-prev,
    .cat-next,
    .cat-prev,
    .prod-next,
    .prod-prev {
        display: none !important;
    }

    /* Cookie banner mobil */
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
    }

    .cookie-content {
        margin-left: 0;
        align-items: flex-start;
    }

    .cookie-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .cookie-buttons {
        margin-right: 0;
        width: 100%;
        justify-content: stretch;
        gap: 8px;
    }

    .cookie-buttons .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 10px 8px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-side-banners {
        flex-direction: column;
        height: 400px;
    }

    .hero-slider-section {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

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

    .promo-banner {
        height: 200px;
    }
}

/* Modals & Popups */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background: var(--surface);
    border-radius: var(--radius);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    max-width: 90%;
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #e74c3c;
    color: white;
}

/* Promo Modal */
.promo-modal-content {
    width: 600px;
}

.promo-modal-body {
    display: flex;
}

.promo-modal-img {
    flex: 1;
    background: #000;
}

.promo-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.promo-modal-text {
    flex: 1.2;
    padding: 40px 30px;
}

.promo-modal-text h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.promo-modal-text p {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Variation Modal */
.variation-modal-content {
    width: 400px;
    padding: 30px;
}

.variation-group {
    margin-bottom: 15px;
}

.variation-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.var-option input {
    display: none;
}

.var-option span {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
}

.var-option input:checked+span {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -300px;
    left: 0;
    width: 100%;
    background: var(--surface);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    z-index: 1500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    margin-left: 5%;
}

.cookie-content i {
    font-size: 24px;
    color: var(--accent);
}

.cookie-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-right: 5%;
}

.cookie-buttons .btn {
    padding: 8px 15px;
    font-size: 13px;
}

/* Haftanın Ürünü */
.product-of-week {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    height: fit-content;
}

.pow-card {
    position: relative;
    text-align: center;
}

.pow-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.pow-card img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.pow-card:hover img {
    transform: scale(1.05);
}

.pow-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.pow-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.pow-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pow-prices .old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
}

.pow-prices .new {
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .featured-layout {
        grid-template-columns: 1fr !important;
    }

    .promo-modal-body {
        flex-direction: column;
    }

    .promo-modal-img {
        height: 150px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .cookie-content {
        margin-left: 0;
    }

    .cookie-buttons {
        margin-right: 0;
        width: 100%;
        justify-content: flex-end;
    }
}

/* =============================================
   FLOATING PRODUCT OF WEEK WIDGET
   ============================================= */
.pow-floating {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    opacity: 0;
    z-index: 100;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    max-height: 90vh;
}

.pow-floating.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.pow-floating.visible.closed {
    width: 0;
    height: 400px;
}


/* Card panel */
.pow-floating-card {
    width: 240px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 8px 0 0 8px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    border-right: none;
    transition: transform 0.4s ease;
    transform: translateX(0);
}

.pow-floating.closed .pow-floating-card {
    transform: translateX(calc(100% + 40px));
}

.pow-reopen-btn {
    position: absolute;
    right: -60px;
    top: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.pow-reopen-btn:hover {
    background: var(--primary-light);
}

.pow-floating.closed .pow-reopen-btn {
    right: -17px;
}

.pow-floating-header {
    background: var(--primary);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1;
}

.pow-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.pow-close-btn:hover {
    color: var(--accent);
}

.pow-floating-info {
    padding: 15px;
}

.pow-floating-info h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.pow-floating-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}


/* =============================================
   COMPREHENSIVE RESPONSIVE FIXES
   ============================================= */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 300px;
    }

    .hero-side-banners {
        height: 140px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        display: none;
    }

    .circle-img {
        width: 70px;
        height: 70px;
    }

    .cat-prod-layout {
        flex-direction: column !important;
    }

    .cat-banner {
        flex: 0 0 200px;
    }

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

    .promo-banner {
        height: 200px;
    }

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

    /* Öne çıkan ürünler 2'li grid */
    .featured-products-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .pow-floating-card {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 240px;
    }

    /* Side banners 480'de daha küçük ama hâlâ yan yana */
    .hero-side-banners {
        height: 110px;
        gap: 8px;
    }

    .side-banner-content h4 {
        font-size: 13px;
    }

    .side-banner-content span {
        display: none;
    }

    .container {
        padding: 0 10px;
    }

    /* Öne çıkan ürünler 2'li grid */
    .featured-products-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    /* Footer mobil */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-col h3 {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }

    .payment-methods {
        gap: 10px;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}