/* Base Styles & CSS Variables */
:root {
    --primary-color: #C5A059; /* Elegant Gold */
    --primary-hover: #A68040;
    --text-dark: #222222;
    --text-light: #555555;
    --bg-light: #fdfdfd;
    --white: #ffffff;
    --border-color: #eaeaea;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    animation: bodyFadeIn 0.45s cubic-bezier(0.21, 1.02, 0.43, 1.01) forwards;
}

body.page-leaving {
    opacity: 0 !important;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    color: #111111;
    letter-spacing: -0.8px;
}

.header-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header-logo-img:hover {
    transform: scale(1.02);
}

.header-logo-icon {
    font-size: 36px;
}

/* Contact Info Boxes */
.header-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.contact-box:hover {
    transform: translateY(-2px);
}

.contact-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.contact-icon-wrapper.wa-icon {
    background-color: #25D366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.contact-icon-wrapper.phone-icon {
    background-color: #2d3436;
    box-shadow: 0 4px 10px rgba(45, 52, 54, 0.2);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
}

.contact-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Search and Action Items */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-search {
    position: relative;
    width: 250px;
    transition: width 0.3s ease;
}

.header-search form {
    display: flex;
    background: #f4f7f6;
    border-radius: 12px;
    padding: 2px 12px;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.header-search form:focus-within {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.header-search input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 8px 4px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
}

.header-search button {
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    padding: 0 4px;
}

.cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f4f7f6;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.cart-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 130, 32, 0.3);
}

.cart-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--primary-hover);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--white);
}

/* Header Nav Bar (Orange Bar) */
.header-nav-bar {
    background-color: var(--primary-color);
    height: 52px;
}

.header-nav-bar .container {
    height: 100%;
}

.header-nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Tüm Kategoriler Dropdown */
.all-categories-dropdown {
    position: relative;
    height: 100%;
}

.categories-btn {
    background-color: transparent;
    border: none;
    color: var(--white);
    padding: 0 24px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.categories-btn:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: scale(1.05);
}

.categories-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 270px;
    background-color: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    display: none;
    flex-direction: column;
    z-index: 1000;
    border-radius: 0 0 16px 16px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-top: none;
    gap: 8px;
    max-height: 290px;
    overflow-y: auto;
}

/* Custom Premium Scrollbar for Categories Dropdown */
.categories-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
.categories-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}
.categories-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}
.categories-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.22);
}

.categories-dropdown-menu.active {
    display: flex;
}

.dropdown-item {
    padding: 12px 18px;
    background-color: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown-item::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    opacity: 0.3;
    transition: all 0.25s ease;
}

.dropdown-item:hover {
    background-color: #fff6ef;
    border-color: #ffd8bf;
    color: var(--primary-color);
    transform: scale(1.02) translateX(4px);
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.08);
}

.dropdown-item:hover::after {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(3px);
}

.main-nav {
    margin-left: 20px;
    height: 100%;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.main-nav a {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    opacity: 1;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #f39c12;
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.announcement-inner i {
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    background-color: #1A1A1A;
    background: linear-gradient(135deg, #1A1A1A 0%, #2C3E50 100%);
    color: var(--white);
    padding: 60px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.btn-primary {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(5px);
}

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

.hero-image {
    max-width: 500px;
}
.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: #f0f0f0;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #ddd;
}

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

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.btn-card {
    display: inline-block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    border-radius: var(--border-radius);
    font-weight: 700;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-card.btn-success {
    background-color: #27ae60 !important;
    border-color: #27ae60 !important;
    color: #fff !important;
}

/* Banner Section */
.campaign-banner {
    background: linear-gradient(90deg, #2C3E50 0%, #1A1A1A 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    margin-bottom: 60px;
}

.campaign-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.campaign-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-yellow {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
}

.campaign-image {
    max-width: 300px;
}
.campaign-image img {
    width: 100%;
}

/* Features Footer */
.features-section {
    background-color: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.feature-icon i {
    font-size: 40px;
    color: var(--text-dark);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

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

/* Footer Section */
.main-footer {
    background-color: #222;
    color: #fff;
    padding-top: 35px;
}

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

.footer-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
.header-mobile-toggle { 
    display: none; 
    align-items: center; 
    justify-content: center; 
    width: 44px; 
    height: 44px; 
    font-size: 20px; 
    cursor: pointer; 
    color: var(--text-dark); 
    background-color: #f4f7f6; 
    border-radius: 50%; 
    transition: all 0.25s ease;
}
.header-mobile-toggle:hover {
    background-color: #eaeaea;
}
@media (max-width: 991px) {
    .header-contacts {
        display: none !important;
    }
    .header-top-inner {
        flex-wrap: nowrap;
        padding: 10px 0;
        gap: 15px;
        justify-content: space-between;
    }
    .logo {
        order: 1;
        flex-shrink: 0;
    }
    .header-actions {
        order: 2;
        margin-left: auto;
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }
    .header-mobile-toggle {
        display: none !important; /* Hide redundant hamburger button on mobile */
    }
    .header-search {
        flex: 1;
        width: auto !important;
        max-width: 240px !important;
        margin: 0 !important;
    }
    .header-logo-img {
        height: 45px !important;
        width: auto !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    .logo-text {
        font-size: 21px !important;
        font-weight: 900 !important;
        letter-spacing: -0.6px !important;
        color: #111111 !important;
    }
    
    .header-nav-bar {
        display: block !important;
        height: 52px !important;
    }
    .header-nav-bar .container {
        height: 100% !important;
        padding: 0 15px !important;
    }
    .header-nav-inner {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 100% !important;
    }
    
    .all-categories-dropdown {
        width: auto !important;
        height: 100% !important;
    }
    .categories-btn {
        width: auto !important;
        padding: 0 12px !important;
        height: 100% !important;
        font-size: 13px !important;
    }
    .categories-btn:hover {
        transform: none !important;
    }
    .categories-dropdown-menu {
        position: absolute !important;
        width: 260px !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
        border-radius: 0 0 16px 16px !important;
        border: 1px solid var(--border-color) !important;
        border-top: none !important;
        background-color: var(--white) !important;
    }
    .categories-dropdown-menu.active {
        display: flex !important;
    }
    
    .main-nav {
        display: block !important;
        width: auto !important;
        height: 100% !important;
        margin-left: 0 !important;
    }
    .main-nav ul {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        height: 100% !important;
        gap: 8px !important;
    }
    .main-nav a {
        padding: 0 8px !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        font-size: 13px !important;
        border-bottom: none !important;
    }
    .main-nav a:hover {
        transform: none !important;
        background-color: rgba(255, 255, 255, 0.15) !important;
    }
    
    .announcement-bar {
        font-size: 11px;
        padding: 6px 10px;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 28px !important;
    }
    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .hero-image {
        max-width: 100%;
        width: 100%;
    }
    .campaign-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .campaign-image {
        margin-top: 20px;
    }
    .logo-text {
        font-size: 19px !important;
        font-weight: 900 !important;
        letter-spacing: -0.5px !important;
    }
    .cart-text {
        display: none;
    }
    .cart-btn span::after {
        content: "";
    }
    .cart-btn i {
        font-size: 24px;
    }
    
    /* Product Detail Mobile */
    .product-detail-grid {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 15px !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    .product-detail-grid .main-image {
        padding: 0 !important;
        background: transparent !important;
    }
    .product-images {
        width: 100% !important;
        margin-bottom: 15px;
    }
    .product-info {
        width: 100% !important;
    }
    .category-header {
        height: 180px !important;
    }
    .category-header h1 {
        font-size: 28px !important;
    }
    .category-header p {
        font-size: 14px !important;
    }
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: center;
    }
    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-widget ul.contact-info li {
        justify-content: center;
    }
}
    
    /* Checkout Mobile */
    .checkout-grid {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    .checkout-form {
        width: 100% !important;
    }
    .checkout-summary {
        width: 100% !important;
        position: relative !important;
        top: 0 !important;
        margin-bottom: 30px;
    }
}

/* Product Slider */
.main-image {
    position: relative;
    overflow: hidden;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.slider-nav:hover {
    background: var(--primary-hover);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Cart Mobile Responsive */
@media (max-width: 768px) {
    .cart-wrapper {
        flex-direction: column !important;
    }
    .cart-table thead {
        display: none;
    }
    .cart-table tr {
        display: block;
        border-bottom: 2px solid #f1f1f1;
        padding: 20px 0;
    }
    .cart-table td {
        display: block;
        padding: 10px 0 !important;
        text-align: left !important;
    }
    .cart-item-info {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .cart-item-info img {
        width: 100% !important;
        height: 200px !important;
        margin-bottom: 15px;
    }
}

/* Mobil ve Tablet Yan Yana (2 Sütun) Ayarları */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
    .product-card {
        padding: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .product-img {
        height: 120px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 8px !important;
    }
    .product-title {
        font-size: 12px !important;
        margin-bottom: 4px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .product-price {
        font-size: 13px !important;
        margin-bottom: 8px !important;
        font-weight: 700 !important;
    }
    .btn-card {
        padding: 8px 0 !important;
        font-size: 11px !important;
        font-weight: 600 !important;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed !important;
    bottom: 50px !important;
    right: 30px !important;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 40px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: wa-pulse 2s infinite;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #1ebe57;
    color: #fff;
    transform: scale(1.1);
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 30px !important;
        right: 20px !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 34px !important;
        position: fixed !important;
        z-index: 99999 !important;
    }
}

/* Extra polished scaling for small phones (max-width: 576px) */
@media (max-width: 576px) {
    .main-header {
        position: relative !important; /* Avoid blocking screen space with a tall sticky header on small mobiles */
    }
    .header-top-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 0 !important;
    }
    .logo {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        order: 1 !important;
    }
    .logo a {
        gap: 8px !important;
    }
    .logo-text {
        font-size: 18px !important;
        font-weight: 900 !important;
        letter-spacing: -0.4px !important;
    }
    .header-actions {
        width: 100% !important;
        justify-content: center !important;
        order: 2 !important;
        margin: 0 !important;
    }
    .header-search {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .header-search form {
        width: 100% !important;
    }
    .header-mobile-toggle {
        display: none !important;
    }
}

/* Category Card Zoom Style */
.category-card {
    overflow: hidden;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}
.category-card:hover .category-cover {
    transform: scale(1.05);
}
