
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&family=Dancing+Script:wght@400;600;700&display=swap');

:root {
    --primary-green: #9ABEA9;
    --primary-green-hover: #7DAE91;
    --white: #FFFFFF;
    --black: #121212;
    --coral: #FF6A3D;
    --gray-light: #F8F9FA;
    --gray-medium: #6B7280;
    --gray-dark: #374151;
    
    /* Eski renkler - uyumluluk için */
    --primary-color: #9ABEA9;
    --secondary-color: #7DAE91;
    --accent-color: #9ABEA9;
    --sale-color: #FF6A3D;
    --success-color: #9ABEA9;
    --danger-color: #FF6A3D;
    --warning-color: #f39c12;
    --info-color: #9ABEA9;
    --light-color: #F8F9FA;
    --dark-color: #121212;
    --white-color: #FFFFFF;
    --gray-color: #6B7280;
    --gray-light-color: #F8F9FA;
    --gray-dark-color: #374151;
    
    /* Typography - Butik Tasarım */
    --font-family: 'Montserrat', sans-serif;
    --font-family-heading: 'Playfair Display', serif;
    --font-family-blog: 'Dancing Script', cursive;
    
    /* Modern Spacing */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Shadows */
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --box-shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
    --box-shadow-xl: 0 8px 30px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.6s ease;
}

/* Genel Stiller */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

/* Başlık Stilleri - Butik Tasarım */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--black);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.top-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    font-size: 0.85rem;
}

.top-link:hover {
    color: var(--primary-green);
    text-decoration: none;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Logo */
.logo a {
    text-decoration: none;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-shape {
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
}

.logo-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-family-heading);
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--black);
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

/* Search Container */
.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-input-group {
    position: relative;
    display: flex;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: var(--gray-light);
}

.search-input-group:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(154, 190, 169, 0.1);
    background: var(--white);
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: var(--black);
}

.search-input::placeholder {
    color: var(--gray-medium);
}

.search-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.search-btn:hover {
    background: var(--primary-green-hover);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    align-items: center;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
    position: relative;
    padding: 8px;
    border-radius: var(--border-radius);
    min-width: 80px;
}

.action-btn:hover {
    color: var(--primary-green);
    background: rgba(154, 190, 169, 0.05);
    text-decoration: none;
}

.action-btn i {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.action-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ===== CATEGORY NAVIGATION ===== */
.category-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.category-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: center;
}

.category-item {
    position: relative;
}

.category-link {
    display: block;
    padding: 15px 20px;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.category-link:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.category-link:hover::after {
    width: 80%;
}

.sale-link {
    color: var(--coral) !important;
    font-weight: 600;
}

.blog-link {
    font-family: var(--font-family-blog);
    text-transform: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--coral) !important;
    letter-spacing: 0.5px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin-top: 30px;
    margin-bottom: -175px;
}

.hero-content {
    display: grid;
    grid-template-columns: 827.5px 262px;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

/* ===== HERO MAIN BANNER ===== */
.hero-main-banner {
    width: 827.5px;
    height: 600px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.main-banner-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.main-banner-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.main-banner-slide.active {
    opacity: 1;
}

.main-banner-slide img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white-color);
    transform: scale(1.2);
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 30%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 51%;
    transform: translate(-50%, -50%);
    margin-left: -400px;
}

.slider-next {
    right: 51%;
    transform: translate(50%, -50%);
    margin-right: -400px;
}

/* ===== HERO SIDE BANNER ===== */
.hero-side-banner {
    width: 262px;
    height: 600px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.side-banner-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.side-banner-image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.side-banner-image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-products-section {
    padding: 60px 0;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.products-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: transform 0.5s ease;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(154, 190, 169, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.product-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px 20px;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 15px 0;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    font-size: 0.9rem;
    color: var(--gray-medium);
    text-decoration: line-through;
}

.sale-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Carousel Navigation - Sadece masaüstünde görünsün */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Mobilde carousel butonlarını gizle */
@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-prev {
    left: 50px;
}

.carousel-next {
    right: 50px;
}

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light-color);
    cursor: pointer;
    transition: var(--transition);
}

.pagination-dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* ===== FOOTER - 1:1 AYNI TASARIM ===== */

.footer {
    background: var(--white);
    border-top: 1px solid var(--gray-light);
}

/* Ana Footer Bölümü */
.footer-main {
    padding: 50px 0 30px;
}

.footer-main .container {
    padding-left: 20px;
    padding-right: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1.6fr;
    gap: 30px;
    align-items: start;
}

/* Footer Sütunları */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-family-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-subtitle {
    font-family: var(--font-family-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    line-height: 1.4;
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* Sosyal Medya Linkleri */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.social-link i {
    font-size: 1rem;
    width: 20px;
}

/* Uygulama Linkleri */
.app-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.app-link:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.app-link i {
    font-size: 1.1rem;
    width: 20px;
}

/* Newsletter Sütunu - Grid'de otomatik olarak 5. kolonda olacak */

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-family: var(--font-family-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--black);
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.footer-logo .logo-blog {
    font-family: var(--font-family-blog);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--coral);
    margin-left: 5px;
}

.newsletter-text {
    color: var(--gray-medium);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-input-group {
    display: flex;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 0.85rem;
    outline: none;
    background: var(--white);
}

.newsletter-input::placeholder {
    color: var(--gray-medium);
}

.newsletter-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--primary-green-hover);
}

/* Alt Footer Bar */
.footer-bottom {
    background: var(--gray-light);
    padding: 15px 0;
    border-top: 1px solid var(--gray-light);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: var(--gray-medium);
    font-size: 0.8rem;
    margin: 0;
}

.payment-security {
    display: flex;
    align-items: center;
    gap: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-medium);
    font-size: 0.75rem;
    font-weight: 500;
}

.security-badge i {
    font-size: 0.9rem;
}

.payment-logos {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-logo {
    height: 25px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.payment-logo:hover {
    opacity: 1;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-main-banner {
        width: 100%;
        height: 500px;
    }
    
    .hero-side-banner {
        width: 100%;
        height: 200px;
    }
    
    .slider-prev {
        left: 20px;
        margin-left: 0;
    }
    
    .slider-next {
        right: 20px;
        margin-right: 0;
    }
    
    /* Tablet için 3 sütunlu grid */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Top Bar Mobile */
    .top-bar {
        padding: 5px 0;
        font-size: 0.75rem;
    }
    
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .top-bar-right {
        gap: 10px;
    }
    
    /* Header Mobile */
    .main-header {
        padding: 15px 0;
    }
    
    .header-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .logo a {
        justify-content: center;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .header-actions {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .action-btn {
        min-width: 70px;
    }
    
    .action-label {
        font-size: 0.7rem;
    }
    
    /* Category Navigation Mobile */
    .category-menu {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }
    
    .category-link {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        margin-top: 15px;
        margin-bottom: -80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }
    
    .hero-main-banner {
        width: 100%;
        height: 250px;
        border-radius: var(--border-radius);
    }
    
    .hero-side-banner {
        width: 100%;
        height: 120px;
        border-radius: var(--border-radius);
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    /* Featured Products Mobile */
    .featured-products-section {
        padding: 20px 0;
        height: auto;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    /* Products Grid Mobile - 2x2 Layout */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .product-card {
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-image {
        height: auto;
        flex: 1;
        min-height: 0;
    }
    
    .product-info {
        padding: 12px;
        flex-shrink: 0;
    }
    
    .product-name {
        font-size: 0.8rem;
        height: 32px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .product-prices {
        gap: 6px;
    }
    
    .original-price {
        font-size: 0.75rem;
    }
    
    .sale-price {
        font-size: 0.9rem;
    }
    

    
    .carousel-pagination {
        margin-top: 20px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .newsletter-column {
        grid-column: 1 / -1;
        order: -1;
    }

    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .payment-security {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    /* Container padding for small screens */
    .container {
        padding: 0 10px;
    }
    
    /* Logo Mobile */
    .logo-text {
        font-size: 1.3rem;
    }
    
    /* Header Actions Mobile */
    .action-btn {
        min-width: 60px;
    }
    
    .action-label {
        font-size: 0.65rem;
    }
    
    /* Category Menu Mobile */
    .category-menu {
        flex-direction: column;
        padding: 0;
    }
    
    .category-link {
        padding: 12px 15px;
        border-bottom: 1px solid var(--gray-light-color);
        text-align: center;
    }
    
    .category-link:last-child {
        border-bottom: none;
    }

    /* Hero Section Small Mobile */
    .hero-section {
        margin-top: 10px;
        margin-bottom: -60px;
    }
    
    .hero-main-banner {
        height: 200px;
    }
    
    .hero-side-banner {
        height: 100px;
    }
    
    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }

    /* Featured Products Small Mobile - Keep 2x2 but smaller */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-card {
        aspect-ratio: 1;
    }
    
    .product-image {
        height: auto;
        flex: 1;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 0.75rem;
        height: 28px;
        margin-bottom: 6px;
    }
    
    .original-price {
        font-size: 0.7rem;
    }
    
    .sale-price {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .featured-products-section {
        padding: 25px 0;
    }
    


    /* Footer Small Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-main {
        padding: 25px 0 15px;
    }

    .footer-title {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .payment-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .payment-logo {
        height: 20px;
    }
    
    /* Top Bar Small Mobile */
    .top-bar {
        font-size: 0.7rem;
    }
    
    .top-bar-right {
        gap: 8px;
    }
    
    /* Search Mobile */
    .search-input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .search-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* Product Card Link Styles */
a.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.product-card:hover {
    text-decoration: none;
    color: inherit;
}

a.product-card .product-name {
    color: var(--black);
    text-decoration: none;
}

a.product-card:hover .product-name {
    color: var(--black);
    text-decoration: none;
}

