/* ===== ÜRÜNLER SAYFASI STİLLERİ ===== */

/* Genel Stiller */
:root {
    --primary-color: #2E8B57;
    --secondary-color: #20B2AA;
    --accent-color: #32CD32;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container genişlikleri */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Filtreler Bölümü */
.filters-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.filter-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.filter-title i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

/* Ürünler Grid */
.products-grid {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(46, 139, 87, 0.08);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
    border-color: rgba(46, 139, 87, 0.25);
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

/* Favori Butonu */
.favori-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.favori-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #ff6b6b;
    transform: scale(1.1);
}

.favori-btn.favori-aktif {
    color: #ff6b6b;
    background: rgba(255, 255, 255, 1);
}

.favori-btn.favori-aktif:hover {
    color: #ccc;
}

.favori-btn i {
    transition: all 0.3s ease;
}

.favori-btn.favori-aktif i {
    animation: heartBeat 0.6s ease-in-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    max-width: 100%;
    max-height: 100%;
}

.product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    max-width: 100%;
    max-height: 100%;
}

.no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f9fa;
    color: #6c757d;
}

.product-image-link .no-image-placeholder {
    width: 100%;
    height: 100%;
}

.product-card:hover .product-image-container img,
.product-card:hover .product-image-link img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.product-badge .badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.product-card-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.product-category i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.product-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    font-size: 0.9rem;
}



.price-section {
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #f4f7f9, #e9f4ee);
    border: 1px solid rgba(46, 139, 87, 0.12);
    padding: 0.35rem 0.55rem;
    border-radius: 12px;
}

.current-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1f7a52;
}

.old-price {
    font-size: 0.8rem;
    color: #9aa5b1;
    text-decoration: line-through;
    opacity: .9;
}

.whatsapp-button {
    margin-top: auto;
}

.whatsapp-button .btn {
    width: 100%;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

/* ===== Ürün Kartı: Buton İyileştirmeleri ===== */
.product-card .d-flex.gap-2 {
    margin-top: auto;
}

/* Sepete ekle butonu: dolu, modern görünüm */
.product-card .sepete-ekle {
    background: linear-gradient(135deg, #2E8B57 0%, #20B2AA 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    box-shadow: 0 6px 18px rgba(46, 139, 87, 0.22);
    padding: 0.6rem 0.9rem;
}

.product-card .sepete-ekle i { opacity: .95; }

.product-card .sepete-ekle:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(1.02);
    box-shadow: 0 10px 26px rgba(46, 139, 87, 0.28);
}

.product-card .sepete-ekle:active:not(:disabled) {
    transform: translateY(0);
}

/* WhatsApp butonu: kompakt ikon butonu */
.product-card a.btn.btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(18, 140, 126, 0.25);
}

.product-card a.btn.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 140, 126, 0.35);
}

/* Kart genel parlaklık ve hover ince ayarları */
.product-card {
    border-radius: 16px;
}

.product-card .card-title a:hover {
    color: var(--primary-color);
}

/* Sayfalama */
.pagination-section {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination .page-link {
    border: none;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 600;
}

.pagination .page-link:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

/* Ürün Bulunamadı */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-products i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-products h3 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-products p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.no-products .btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.no-products .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 139, 87, 0.3);
    color: white;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gelişmiş Responsive Tasarım */
@media (max-width: 1400px) {
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1200px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .product-image-container {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    .filters-section {
        padding: 1.5rem 0;
    }
    
    .filter-card {
        padding: 1.2rem;
    }
    
    .products-grid {
        padding: 2rem 0;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-card-body {
        padding: 1.2rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    

    
    .current-price {
        font-size: 1.2rem;
    }
    
    .whatsapp-button .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2.5rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .filters-section {
        padding: 1rem 0;
    }
    
    .filter-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .filter-title {
        font-size: 0.95rem;
    }
    
    .form-control, .form-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .products-grid {
        padding: 1.5rem 0;
    }
    
    .product-image-container {
        height: 280px;
    }
    
    .product-card-body {
        padding: 1rem;
    }
    
    .product-category {
        font-size: 0.8rem;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    

    
    .current-price {
        font-size: 1.1rem;
    }
    
    .old-price {
        font-size: 0.9rem;
    }
    
    .whatsapp-button .btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .no-products {
        padding: 3rem 1.5rem;
    }
    
    .no-products i {
        font-size: 3rem;
    }
    
    .no-products h3 {
        font-size: 1.3rem;
    }
    
    .no-products p {
        font-size: 0.9rem;
    }
    
    .pagination .page-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.85rem;
    }
    
    .filters-section {
        padding: 0.8rem 0;
    }
    
    .filter-card {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .filter-title {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .form-control, .form-select {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .products-grid {
        padding: 1rem 0;
    }
    
    /* Mobil için ürün kartı optimizasyonları - Görseldeki gibi kompakt */
    .product-card {
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        margin-bottom: 0.5rem;
    }
    
    .product-image-container {
        height: 140px;
    }
    
    .product-card-body {
        padding: 0.5rem;
    }
    
    .product-category {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }
    
    .product-title {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
        font-weight: 600;
    }
    
    /* Mobilde card-title (ürün adı) küçült */
    .product-card .card-title,
    .product-card h5.card-title {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-card .card-title a {
        font-size: 0.75rem !important;
    }
    
    .price-section {
        margin-bottom: 0.3rem;
    }
    
    .current-price {
        font-size: 0.85rem;
        font-weight: 700;
    }
    
    .old-price {
        font-size: 0.7rem;
    }
    
    .stock-info {
        margin-bottom: 0.3rem !important;
    }
    
    .stock-info small {
        font-size: 0.65rem;
    }
    
    /* Mobil için buton optimizasyonları */
    .d-flex.gap-2 {
        gap: 0.2rem !important;
    }
    
    .btn {
        padding: 0.4rem 0.5rem;
        font-size: 0.72rem;
        border-radius: 8px;
        min-height: 38px;
    }
    
    .btn i {
        font-size: 0.65rem;
    }
    
    .whatsapp-button .btn {
        padding: 0.4rem 0.5rem;
        font-size: 0.72rem;
    }
    
    .no-products {
        padding: 2rem 1rem;
    }
    
    .no-products i {
        font-size: 2.5rem;
    }
    
    .no-products h3 {
        font-size: 1.2rem;
    }
    
    .no-products p {
        font-size: 0.85rem;
    }
    
    .no-products .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
        margin: 0 0.1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 0.8rem;
    }
    
    .filter-card {
        padding: 0.6rem;
    }
    
    .filter-title {
        font-size: 0.85rem;
    }
    
    .form-control, .form-select {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    /* Çok küçük ekranlar için ek optimizasyonlar - Görseldeki gibi */
    .product-image-container {
        height: 120px;
    }
    
    .product-card-body {
        padding: 0.4rem;
    }
    
    .product-category {
        font-size: 0.6rem;
        margin-bottom: 0.15rem;
    }
    
    .product-title {
        font-size: 0.7rem;
        line-height: 1.1;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }
    
    /* Çok küçük ekranlarda card-title (ürün adı) daha da küçült */
    .product-card .card-title,
    .product-card h5.card-title {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.4rem !important;
    }
    
    .product-card .card-title a {
        font-size: 0.7rem !important;
    }
    
    .price-section {
        margin-bottom: 0.25rem;
    }
    
    .current-price {
        font-size: 0.8rem;
        font-weight: 700;
    }
    
    .old-price {
        font-size: 0.65rem;
    }
    
    .stock-info {
        margin-bottom: 0.25rem !important;
    }
    
    .stock-info small {
        font-size: 0.6rem;
    }
    
    /* Çok küçük ekranlar için buton optimizasyonları */
    .d-flex.gap-2 {
        gap: 0.15rem !important;
    }
    
    .btn {
        padding: 0.35rem 0.45rem;
        font-size: 0.68rem;
        border-radius: 8px;
        min-height: 36px;
    }
    
    .btn i {
        font-size: 0.6rem;
    }
    
    .whatsapp-button .btn {
        padding: 0.35rem 0.45rem;
        font-size: 0.68rem;
    }
    
    .no-products {
        padding: 1.5rem 0.8rem;
    }
    
    .no-products i {
        font-size: 2rem;
    }
    
    .no-products h3 {
        font-size: 1.1rem;
    }
    
    .no-products p {
        font-size: 0.8rem;
    }
    
    .no-products .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .pagination .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Touch Device Optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .filter-card:hover {
        transform: none;
    }
    
    .whatsapp-button .btn:hover {
        transform: none;
    }
    
    .pagination .page-link:hover {
        transform: none;
    }
    
    .no-products .btn:hover {
        transform: none;
    }
    
    /* Touch cihazlar için buton boyutları */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Touch cihazlar için input boyutları */
    .form-control, .form-select {
        min-height: 44px;
    }
    
    /* Touch cihazlar için link boyutları */
    .product-title a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Mobil için ek optimizasyonlar */
@media (max-width: 767px) {
    /* Mobilde grid boşluklarını azalt - Görseldeki gibi */
    .row.g-3 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }
    
    /* Mobilde kesinlikle 2'li görünüm için */
    .row.g-3 > .col-6 {
        flex: 0 0 calc(50% - 0.25rem) !important;
        max-width: calc(50% - 0.25rem) !important;
        width: calc(50% - 0.25rem) !important;
    }
    
    /* Mobilde kartlar arası boşluk */
    .product-card {
        margin-bottom: 0.5rem;
    }
    
    /* Mobilde card-title (ürün adı) küçült */
    .product-card .card-title,
    .product-card h5.card-title {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-card .card-title a {
        font-size: 0.75rem !important;
    }
    
    /* Mobilde buton metinlerini kısalt */
    .btn .me-2 {
        margin-right: 0.2rem !important;
    }
    
    /* Mobilde badge boyutunu küçült */
    .product-badge .badge {
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
    }
    
    /* Mobilde etiket pozisyonunu ayarla */
    .product-badge {
        top: 0.3rem;
        right: 0.3rem;
    }
    
    /* Mobilde kategori etiketini gizle veya küçült */
    .product-category {
        display: none;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.8rem;
    }
    
    .filters-section {
        padding: 0.5rem 0;
    }
    
    .products-grid {
        padding: 1rem 0;
    }
}

/* Grid System Responsive - Mobil Öncelikli */
/* Mobil (576px altı) - 2 ürün yan yana */
@media (max-width: 575.98px) {
    .row > .col-6,
    .row.g-3 > .col-6,
    .row .col-6,
    section .row .col-6,
    .container .row .col-6 {
        flex: 0 0 calc(50% - 0.25rem) !important;
        max-width: calc(50% - 0.25rem) !important;
        width: calc(50% - 0.25rem) !important;
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    
    /* col-12 varsa onu da override et */
    .row > .col-12.col-6,
    .row.g-3 > .col-12.col-6 {
        flex: 0 0 calc(50% - 0.25rem) !important;
        max-width: calc(50% - 0.25rem) !important;
        width: calc(50% - 0.25rem) !important;
    }
    
    /* Container padding'i azalt */
    .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* Tablet (576px - 767px) - 2 ürün yan yana */
@media (min-width: 576px) and (max-width: 767.98px) {
    .row > .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Orta ekran (768px - 991px) - 2 ürün yan yana */
@media (min-width: 768px) and (max-width: 991.98px) {
    .row > .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Büyük ekran (992px - 1199px) - 3 ürün yan yana */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .row > .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Çok büyük ekran (1200px üstü) - 3 ürün yan yana */
@media (min-width: 1200px) {
    .row > .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Sticky Header için z-index ayarları */
.filters-section {
    z-index: 1000;
}

.navbar {
    z-index: 1001;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.form-control:focus,
.form-select:focus,
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

/* Print Styles */
@media print {
    .filters-section,
    .whatsapp-button,
    .pagination-section {
        display: none !important;
    }
    
    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
} 