/**
 * Bizim Pazarcı E-ticaret Sitesi
 * Modern Ana CSS Dosyası
 */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #2E7D32;
    --primary-light: #4CAF50;
    --primary-dark: #1B5E20;
    --secondary-color: #FF6F00;
    --secondary-light: #FF9800;
    --accent-color: #00BCD4;
    --success-color: #4CAF50;
    --info-color: #2196F3;
    --warning-color: #FF9800;
    --danger-color: #F44336;
    --light-color: #f8f9fa;
    --dark-color: #212121;
    --text-color: #424242;
    --text-light: #757575;
    --border-color: #e0e0e0;
    --bg-light: #fafafa;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

/* ===== HEADER STILLER ===== */
.header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header {
    background: var(--dark-color);
}

.top-bar {
    background: var(--dark-color);
    color: #fff;
}

.top-bar .contact-info {
    font-size: 14px;
    color: #fff;
}

.top-bar .contact-info span {
    color: #fff;
}

.top-bar .contact-info i {
    margin-right: 5px;
    color: var(--primary-light);
}

.top-bar .user-menu {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.main-header {
    padding: 15px 0;
}

.logo img {
    max-height: 50px;
}

.search-bar .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.search-bar .form-control {
    border: none;
    padding: 12px 20px;
    font-size: 14px;
}

.search-bar .btn {
    border: none;
    padding: 12px 20px;
    background: var(--primary-color);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}


.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.action-btn:hover {
    color: var(--primary-light);
    transform: translateY(-1px);
}

.header-actions .action-btn {
    position: relative;
}

.header-actions .action-btn .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger-color);
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid #fff;
    box-shadow: var(--shadow);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.product-actions .btn-action.btn-favorite.active,
.btn-action.btn-favorite.active {
    background-color: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
    transform: scale(1.1) !important;
}

.product-actions .btn-action.btn-favorite.active i,
.btn-action.btn-favorite.active i {
    color: white !important;
}

.product-actions .btn-action.btn-favorite.active:hover,
.btn-action.btn-favorite.active:hover {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
    transform: scale(1.15) !important;
}

.header-actions .action-btn .badge.empty {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

/* Sayfa yüklenirken badge animasyonunu engelle */
.page-loading .header-actions .action-btn .badge {
    transition: none !important;
}

.main-nav {
    background: var(--primary-color);
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.nav-menu li:hover > a,
.nav-menu li.active > a {
    background: rgba(255,255,255,0.1);
}

.nav-menu .has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: var(--transition);
}

.nav-menu .has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: var(--dark-color);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 10px;
}

.mobile-search {
    display: none;
    padding: 15px 0;
}

/* ===== HERO SLIDER ===== */
.hero-slider-wrapper {
    background: var(--bg-light);
    padding: 20px;
    margin-bottom: 0;
}

.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 450px;
    max-height: 600px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    background: #f5f5f5;
    border: 3px solid #fff;
    padding: 10px;
}

.hero-slider .swiper {
    height: 100%;
    border-radius: calc(var(--border-radius) - 5px);
    overflow: hidden;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(46, 125, 50, 0.9) 0%, 
        rgba(46, 125, 50, 0.7) 30%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    max-width: 650px;
    animation: slideInUp 1s ease-out;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.hero-content .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SWIPER NAVIGATION ===== */
.swiper .swiper-button-next,
.swiper .swiper-button-prev,
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #fff !important;
    background: rgba(46, 125, 50, 0.9) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: #2e7d32 !important;
    transform: scale(1.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.hero-slider .swiper-button-next {
    right: 30px !important;
}

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

.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after,
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #fff !important;
}

/* Swiper default blue override */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(46, 125, 50, 0.9) !important;
    color: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #fff !important;
}

/* ===== SWIPER PAGINATION ===== */
.hero-slider .swiper-pagination {
    bottom: 20px !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    text-align: center;
}

.hero-slider .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    margin: 0 5px;
}

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

/* ===== CART STYLES ===== */
.cart-count-badge {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 0.8em;
    margin-left: 10px;
}

.cart-items {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cart-header {
    background: var(--bg-light);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.cart-item:hover {
    background: var(--bg-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
}

.quantity-control .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-actions {
    text-align: center;
}

.subtotal {
    font-size: 1.1em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cart-summary .card {
    border: none;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.cart-summary .card-header {
    background: var(--primary-color);
    color: white;
    border-bottom: none;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
}

.total-row {
    font-size: 1.2em;
    border-top: 2px solid var(--primary-color);
    padding-top: 15px;
    margin-top: 15px;
}

.free-shipping-info {
    background: rgba(23, 162, 184, 0.1);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    margin-top: 15px;
}

.empty-cart {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 50px 0;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.empty-cart-actions {
    margin-top: 30px;
}

.empty-cart-actions .btn {
    margin: 0 10px;
}

/* ===== SEPETTE OLAN ÜRÜNLER ===== */
.product-card.in-cart {
    border: 2px solid var(--primary-color);
    background: rgba(46, 125, 50, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-card.in-cart .product-name a {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-add-cart.in-cart {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 600;
}

.btn-add-cart.in-cart:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-1px);
}

/* ===== MODERN SECTIONS ===== */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== MODERN CARDS ===== */
.categories-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.category-card {
    background: #fff;
    border-radius: var(--border-radius);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-info {
    padding: 20px;
    text-align: center;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.product-count {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* ===== MODERN PRODUCT CARDS ===== */
.featured-products {
    padding: 80px 0;
    background: #fff;
}

.latest-products {
    padding: 80px 0;
    background: var(--bg-light);
}

.product-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid var(--border-color);
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.btn-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.btn-action:hover {
    background: var(--primary-color);
    color: #fff;
}

.discount-badge,
.new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.new-badge {
    background: var(--success-color);
}

.product-info {
    padding: 20px;
}

.product-category {
    margin-bottom: 8px;
}

.product-category a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-name a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ddd;
    font-size: 14px;
}

.stars i.active {
    color: #ffc107;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-color);
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.old-price {
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-add-cart {
    background: var(--primary-color);
    border: none;
    padding: 12px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-add-cart:hover {
    background: #45a049;
    transform: translateY(-1px);
}

/* ===== MODERN FEATURES SECTION ===== */
.features {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: #fff;
    margin-top: 50px;
}

.footer-top {
    padding: 50px 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 40px;
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.8;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: flex-end;
    margin: 0;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--primary-color);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* ===== BİLDİRİMLER ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
}

/* ===== MODERN BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 18px 36px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 991px) {
    .container { padding: 0 20px; }
    .hero-slider-wrapper { padding: 15px; }
    .hero-slider { height: 50vh; min-height: 350px; max-height: 450px; padding: 8px; }
    .hero-content { 
        left: 40px;
        padding: 30px 25px; 
        max-width: 500px;
    }
    .hero-slider .swiper-button-next, 
    .hero-slider .swiper-button-prev { 
        width: 40px; 
        height: 40px; 
        margin-top: -20px; 
    }
    .hero-slider .swiper-button-next { right: 25px; }
    .hero-slider .swiper-button-prev { left: 25px; }
}

@media (max-width: 576px) {
    .container { padding: 0 15px; }
    .hero-slider-wrapper { padding: 10px; }
    .hero-slider { height: 40vh; min-height: 300px; max-height: 400px; padding: 6px; }
    .hero-content { 
        left: 30px;
        right: 30px;
        max-width: calc(100% - 60px); 
        padding: 25px 20px;
    }
    .hero-slider .swiper-button-next, 
    .hero-slider .swiper-button-prev { 
        width: 35px; 
        height: 35px; 
        margin-top: -17px; 
    }
    .hero-slider .swiper-button-next { right: 20px; }
    .hero-slider .swiper-button-prev { left: 20px; }
}

@media (max-width: 767px) {
    .header-actions .text {
        display: none !important;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px 10px;
    }
    
    .footer-menu ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }
}
