/* ===== GENEL STİLLER ===== */
:root {
    --primary-color: #f27a1a;
    --secondary-color: #ff6b35;
    --dark-color: #2c3e50;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --text-dark: #333;
    --text-gray: #666;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
    }
}

/* ===== SLIDER / KAMPANYA ALANI ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 3rem;
    height: 400px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-slider:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 250px;
        border-radius: 0;
        margin-left: -15px;
        margin-right: -15px;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}


.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    display: block;
}

.slider-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===== KAMPANYA KARTLARI (YUVARLAK) ===== */
.campaign-cards-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.campaign-card-circle {
    flex: 0 0 auto;
    width: 120px;
    text-align: center;
    transition: var(--transition);
}

.campaign-card-circle:hover {
    transform: translateY(-5px);
}

.campaign-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.campaign-card-circle:hover .campaign-icon {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.campaign-icon i {
    font-size: 2rem;
    color: white;
}

.campaign-card-circle h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.campaign-card-circle p {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
}

@media (min-width: 768px) {
    .campaign-card-circle {
        width: 140px;
    }
    
    .campaign-icon {
        width: 100px;
        height: 100px;
    }
    
    .campaign-icon i {
        font-size: 2.5rem;
    }
    
    .campaign-card-circle h4 {
        font-size: 1rem;
    }
    
    .campaign-card-circle p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .campaign-cards-row {
        gap: 1rem;
    }
    
    .campaign-card-circle {
        width: 100px;
    }
    
    .campaign-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0.75rem;
    }
    
    .campaign-icon i {
        font-size: 1.75rem;
    }
    
    .campaign-card-circle h4 {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .campaign-card-circle p {
        font-size: 0.7rem;
    }
}

/* ===== ÜRÜN KARTLARI ===== */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.product-favorite:hover {
    background: white;
    transform: scale(1.1);
}

.product-favorite i {
    color: #ccc;
    font-size: 1.2rem;
}

.product-favorite.active i {
    color: #e74c3c;
}

.product-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    flex-shrink: 0;
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: auto;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: auto;
    flex-shrink: 0;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.product-price-old {
    font-size: 1rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.btn-buy {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-buy:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== BÖLÜM BAŞLIKLARI ===== */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.35rem;
        padding-bottom: 0.25rem;
    }
    
    .section-title::after {
        width: 40px;
        height: 2px;
    }
}

/* ===== FİLTRELEME ÜST BAR ===== */
.filter-top-bar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-buttons-row {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.25rem 0;
}

.filter-buttons-row::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(242, 122, 26, 0.1);
}

.filter-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.filter-btn i {
    font-size: 0.875rem;
}

/* ===== FİLTRE DROPDOWN MENÜLERİ ===== */
.filter-dropdown-wrapper {
    position: relative;
    flex: 0 0 auto;
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none !important;
    animation: fadeInDown 0.2s ease;
}

.filter-dropdown.show {
    display: block !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
    white-space: nowrap;
}

.filter-dropdown-item:last-child {
    border-bottom: none;
}

.filter-dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.filter-dropdown-item.active {
    background: rgba(242, 122, 26, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.filter-dropdown-item i {
    font-size: 0.875rem;
    opacity: 0;
    transition: var(--transition);
}

.filter-dropdown-item.active i {
    opacity: 1;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

/* Mobilde dropdown'ları daha geniş yap */
@media (max-width: 767px) {
    .filter-dropdown {
        min-width: 180px;
        max-height: 250px;
    }
    
    .filter-dropdown-item {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
}

/* ===== FİLTRELEME SIDEBAR (MASAÜSTÜ) ===== */
.filter-sidebar {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.filter-sidebar.hidden,
.hidden {
    display: none !important;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
}

/* ===== FİLTRE MODAL (MOBİL) ===== */
.filter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
}

.filter-modal.show {
    display: block;
}

.filter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.filter-modal-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.filter-modal-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.filter-modal-close:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.filter-modal-body {
    padding: 1.5rem;
}

.filter-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    position: sticky;
    bottom: 0;
    background: white;
}

.filter-modal-actions .btn {
    flex: 1;
    padding: 0.75rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .filter-top-bar {
        display: none;
    }
    
    .filter-modal {
        display: none !important;
    }
}

/* ===== ÜRÜN DETAY ===== */
.product-detail-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.product-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-detail-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ===== İLETİŞİM FORMU ===== */
.contact-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(242, 122, 26, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HAKKIMIZDA ===== */
.about-section {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.about-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

.breadcrumb-item a {
    color: var(--text-gray);
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .filter-sidebar {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .product-detail-title {
        font-size: 1.5rem;
    }
    
    .product-detail-price {
        font-size: 1.75rem;
    }
    
    .about-section {
        padding: 2rem 1.5rem;
    }
    
    .campaign-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Mobil için hero slider ve kampanya kartları */
    .hero-slider {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
    
    .campaign-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 200px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .campaign-card h3 {
        font-size: 1.25rem;
    }
    
    .campaign-card {
        padding: 1.25rem;
    }
    
    .product-detail-image {
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .product-favorite {
        width: 30px;
        height: 30px;
    }
    
    .product-favorite i {
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.875rem;
    }
    
    .about-section h2 {
        font-size: 1.25rem;
    }
    
    .filter-sidebar {
        padding: 1.25rem;
    }
    
    .category-item {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .product-card-item {
        width: 150px;
    }
    
    .product-image {
        height: 150px;
    }
}

/* ===== YATAY KAYDIRILABİLİR ÜRÜN LİSTESİ ===== */
.product-scroll-container {
    position: relative;
    overflow: hidden;
}

.product-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.product-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-card-item {
    flex: 0 0 auto;
    width: 180px;
}

@media (min-width: 768px) {
    .product-scroll {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
        overflow: visible;
    }
    
    .product-card-item {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .product-scroll {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== KATEGORİ MENÜSÜ (YATAY KAYDIRILABİLİR) ===== */
.category-section {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.category-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 auto;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
}

.category-item:hover,
.category-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===== ÜRÜN RATING (YILDIZLAR) ===== */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.product-fast-delivery,
.product-view-info,
.product-shipping,
.product-coupon {
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 0.875rem;
}

.stars i {
    line-height: 1;
}

.rating-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== ÜRÜN BİLGİLERİ ===== */
.product-fast-delivery {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
}

.product-fast-delivery i {
    font-size: 0.875rem;
}

.product-view-info {
    font-size: 0.75rem;
}

.product-shipping {
    font-size: 0.8rem;
}

.product-shipping i {
    font-size: 0.875rem;
}

/* Fiyat ve buton için sabit alt alan */
.product-price-wrapper {
    margin-top: auto;
    padding-top: 1rem;
    flex-shrink: 0;
}

.product-coupon .badge {
    background: #ff6b9d !important;
    color: white;
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    font-weight: 500;
}

.bg-pink {
    background-color: #ff6b9d !important;
}

/* ===== BÖLÜM BAŞLIKLARI ===== */
.btn-view-all {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-view-all:hover {
    color: var(--secondary-color);
}

.btn-view-all-mobile {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-view-all-mobile:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== MOBİL ÜRÜN KARTI İYİLEŞTİRMELERİ ===== */
@media (max-width: 767px) {
    .product-card-item {
        width: 160px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-card-body {
        padding: 0.875rem;
    }
    
    .product-title {
        font-size: 0.85rem;
        min-height: 2.2em;
        margin-bottom: 0.5rem;
    }
    
    .product-rating {
        margin-bottom: 0.5rem;
    }
    
    .stars {
        font-size: 0.75rem;
    }
    
    .rating-text {
        font-size: 0.75rem;
    }
    
    .product-price {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        min-height: 2rem;
    }
    
    .btn-buy {
        padding: 0.625rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .product-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .product-fast-delivery,
    .product-shipping,
    .product-view-info {
        font-size: 0.7rem;
    }
    
    .product-coupon .badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

.rounded-custom {
    border-radius: 10px;
}

