/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Visually Hidden - SEO friendly (accessible to screen readers & search engines) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: url('assets/background.png') no-repeat center top;
    background-size: 100% auto;
    min-height: 100vh;
}

/* Heart Garland */
.heart-garland {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 50px;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.heart-garland.hidden {
    opacity: 0;
    transform: translateY(-100%);
}

.garland-string {
    position: absolute;
    top: 15px;
    left: -50px;
    right: -50px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #8B0000 10%,
        #8B0000 90%,
        transparent 100%
    );
    transform: rotate(-2deg);
}

.hearts-container {
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
    position: relative;
    top: 5px;
}

.heart {
    color: #c62828;
    font-size: 24px;
    filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.2));
    animation: sway 3s ease-in-out infinite;
}

.heart.small {
    font-size: 16px;
    color: #e57373;
    margin-top: 8px;
}

.heart:nth-child(odd) {
    animation-delay: -1.5s;
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    height: 90px;
    width: auto;
}

.logo-text {
    font-family: 'DynaPuff', cursive;
    font-weight: 600;
    font-size: 26px;
    color: #c62828;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'DynaPuff', cursive;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-btn.white {
    background: white;
    color: #444;
    border: none;
    border-radius: 9999px;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.nav-btn.white:hover {
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.nav-btn.white:active {
    transform: scale(1);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.nav-btn.red {
    background: linear-gradient(180deg, #c94a4a 0%, #b73d3d 50%, #a83232 100%);
    color: white;
    border: none;
    box-shadow:
        0 4px 0 #6b1a1a,
        0 5px 10px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: all 0.1s ease;
}

.nav-btn.red:hover {
    background: linear-gradient(180deg, #d45555 0%, #c44848 50%, #b53d3d 100%);
}

.nav-btn.red:active {
    transform: translateY(3px);
    box-shadow:
        0 1px 0 #6b1a1a,
        0 2px 5px rgba(0, 0, 0, 0.15);
}

.nav-auth {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    margin-top: -80px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: #b71c1c;
    text-shadow:
        2px 2px 4px rgba(255,255,255,0.8),
        -1px -1px 2px rgba(255,255,255,0.5);
    line-height: 1.3;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Hero Tagline with platform logos */
.hero-tagline {
    margin-top: 30px;
    text-align: center;
}

.tagline-static {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    display: block;
    margin-bottom: 15px;
}

.platform-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.platform-logos:hover {
    opacity: 1;
}

.platform-logo {
    height: 24px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.platform-logo:hover {
    opacity: 1;
    transform: scale(1.15);
}

.tagline-more {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* Mobile responsive for platform logos */
@media (max-width: 600px) {
    .platform-logos {
        gap: 12px;
        max-width: 300px;
    }

    .platform-logo {
        height: 18px;
        max-width: 60px;
    }

    .tagline-static {
        font-size: 14px;
    }

    .tagline-more {
        font-size: 12px;
    }
}

.cta-btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: 'DynaPuff', cursive;
    font-weight: 600;
    font-size: 22px;
    transition: all 0.1s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    border: none;
    user-select: none;
}

.cta-btn.primary {
    background: linear-gradient(180deg, #f28b8b 0%, #e57373 50%, #d86a6a 100%);
    color: white;
    box-shadow:
        0 6px 0 #a73a3a,
        0 8px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cta-btn.primary:hover {
    background: linear-gradient(180deg, #f5a0a0 0%, #ef8080 50%, #e07575 100%);
}

.cta-btn.primary:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #a73a3a,
        0 3px 8px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: linear-gradient(180deg, #c94a4a 0%, #b73d3d 50%, #a83232 100%);
    color: white;
    box-shadow:
        0 6px 0 #6b1a1a,
        0 8px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cta-btn.secondary:hover {
    background: linear-gradient(180deg, #d45555 0%, #c44848 50%, #b53d3d 100%);
}

.cta-btn.secondary:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #6b1a1a,
        0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Decorative Balloons */
.balloon {
    position: absolute;
    z-index: 5;
    width: 180px;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

.balloon-left {
    left: 5%;
    top: 60%;
    transform: rotate(-15deg);
}

.balloon-right {
    right: 1%;
    top: 10%;
    transform: rotate(15deg) scaleX(-1);
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
}

.balloon-right {
    animation-name: floatRight;
}

@keyframes floatRight {
    0%, 100% { transform: translateY(0) rotate(15deg) scaleX(-1); }
    50% { transform: translateY(-20px) rotate(10deg) scaleX(-1); }
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .balloon {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .balloon {
        display: none;
    }
}

/* ==================== FEATURES SECTION ==================== */
.features {
    background: linear-gradient(180deg, rgba(227,242,253,0.9) 0%, rgba(255,255,255,0) 100%);
    padding: 60px 40px;
    padding-top: 40px;
    position: relative;
    z-index: 20;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
}

.feature-card {
    background: url('assets/btn-white.png') no-repeat center center;
    background-size: 100% 100%;
    border-radius: 20px;
    padding: 68px 80px 85px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 347px;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.feature-card:active {
    transform: translateY(2px) scale(0.98);
}

.feature-icon {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-top: -80px;
    margin-bottom: 15px;
}

.feature-text {
    margin-top: -20px;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin: 0 0 3px 0;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ==================== CATEGORIES SECTION ==================== */
.categories {
    background: transparent;
    padding: 60px 40px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-title::before,
.section-title::after {
    content: '';
    flex: 1;
    max-width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1565c0, transparent);
    border-radius: 2px;
}

.categories-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.category-btn {
    display: block;
    transition: all 0.1s ease;
    cursor: pointer;
}

.category-btn img {
    height: 50px;
    width: auto;
    display: block;
}

.category-btn:hover {
    transform: translateY(-3px);
}

.category-btn:active {
    transform: translateY(2px);
}

/* ==================== TRENDING SECTION ==================== */
.trending {
    background: transparent;
    padding: 60px 40px;
}

.trending-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.trending-header .section-title {
    margin-bottom: 0;
}

.trending-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Category Dropdown */
.category-dropdown {
    position: relative;
}

.category-dropdown-btn {
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 10px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    min-width: 150px;
}

.category-dropdown-btn:hover {
    border-color: #c62828;
}

.category-dropdown-btn.active {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.dropdown-arrow {
    font-size: 10px;
    color: #666;
    transition: transform 0.2s ease;
}

.category-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.category-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.category-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s ease;
}

.category-option:first-child {
    border-radius: 12px 12px 0 0;
}

.category-option:last-child {
    border-radius: 0 0 12px 12px;
}

.category-option:hover {
    background: #f5f5f5;
}

.category-option.active {
    background: #ffebee;
    color: #c62828;
    font-weight: 600;
}

.view-all-btn {
    background: linear-gradient(180deg, #c94a4a 0%, #b73d3d 50%, #a83232 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-family: 'DynaPuff', cursive;
    font-weight: 600;
    font-size: 14px;
    box-shadow:
        0 4px 0 #6b1a1a,
        0 5px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background: linear-gradient(180deg, #d45555 0%, #c44848 50%, #b53d3d 100%);
}

.view-all-btn:active {
    transform: translateY(3px);
    box-shadow:
        0 1px 0 #6b1a1a,
        0 2px 5px rgba(0, 0, 0, 0.15);
}

.trending-container {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card.hidden {
    display: none;
}

/* Expandable trending gifts */
.trending-expanded {
    display: none;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 30px auto 0;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.trending-expanded.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.view-all-btn.active {
    background: linear-gradient(180deg, #666 0%, #555 50%, #444 100%);
    box-shadow: 0 4px 0 #222, 0 5px 10px rgba(0, 0, 0, 0.15);
}

.product-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    box-shadow:
        0 6px 0 #d0d0d0,
        0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    width: 280px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.shop-btn {
    display: inline-block;
    background: linear-gradient(180deg, #ffb74d 0%, #ffa726 50%, #ff9800 100%);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-family: 'DynaPuff', cursive;
    font-weight: 600;
    font-size: 14px;
    box-shadow:
        0 4px 0 #e65100,
        0 5px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.1s ease;
}

.shop-btn:hover {
    background: linear-gradient(180deg, #ffc107 0%, #ffb300 50%, #ffa000 100%);
}

.shop-btn:active {
    transform: translateY(3px);
    box-shadow:
        0 1px 0 #e65100,
        0 2px 5px rgba(0, 0, 0, 0.15);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    background: transparent;
    padding: 60px 40px 80px;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

.step {
    position: relative;
    text-align: center;
}

.step-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.step-image img {
    width: auto;
    height: auto;
    max-width: 280px;
    display: block;
}

.step p {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    max-width: 180px;
    margin: 0 auto;
}

.cta-btn.start-now {
    background: linear-gradient(180deg, #ef5350 0%, #e53935 50%, #d32f2f 100%);
    color: white;
    padding: 16px 50px;
    border-radius: 30px;
    font-size: 20px;
    box-shadow:
        0 6px 0 #8b0000,
        0 8px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.start-now:hover {
    background: linear-gradient(180deg, #f44336 0%, #ef5350 50%, #e53935 100%);
}

.cta-btn.start-now:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #8b0000,
        0 3px 8px rgba(0, 0, 0, 0.2);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e6 100%);
    padding: 40px 40px 30px;
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #e91e63;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-copyright {
    color: #999;
    font-size: 13px;
}

.footer p {
    color: #333;
    font-size: 14px;
}

/* ==================== ANIMATIONS ==================== */
.anim-wiggle {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.anim-wiggle:hover {
    animation: wiggle 0.5s ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo-icon {
        height: 70px;
    }

    .logo-text {
        font-size: 22px;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 42px;
    }

    .features-container {
        gap: 25px;
    }

    .feature-card {
        min-width: 280px;
        padding: 50px 60px 65px;
    }

    .categories-container {
        gap: 15px;
    }

    .category-btn img {
        max-width: 140px;
    }
}

/* Small Tablet / Large Phone */
@media (max-width: 900px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .nav-auth {
        order: 2;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 90%;
        max-width: 350px;
    }

    .categories-container {
        flex-wrap: wrap;
    }

    .category-btn img {
        max-width: 120px;
    }

    .trending-header {
        flex-direction: column;
        gap: 20px;
    }

    .trending-controls {
        flex-direction: column;
        gap: 12px;
    }

    .trending-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .product-card {
        width: 100%;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 300px;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .heart-garland {
        display: none;
    }

    .navbar {
        top: 0;
        padding: 10px 15px;
        gap: 10px;
    }

    .logo-icon {
        height: 50px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .nav-auth .nav-btn {
        padding: 8px 12px;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 28px;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn {
        font-size: 18px;
        padding: 10px 24px;
    }

    .hero-tagline {
        margin-top: 20px;
        padding: 0 15px;
    }

    .balloon {
        display: none;
    }

    .features {
        padding: 40px 15px;
    }

    .feature-card {
        min-width: unset;
        width: 100%;
        max-width: 300px;
        padding: 45px 50px 60px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin-top: -60px;
    }

    .categories {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .categories-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .category-btn img {
        max-width: 280px;
        width: 100%;
    }

    .trending {
        padding: 40px 15px;
    }

    .trending-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .product-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .how-it-works {
        padding: 40px 15px;
    }

    .step-image img {
        max-width: 250px;
    }

    .cta-btn.start-now {
        font-size: 18px;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .logo-text {
        font-size: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 24px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 8px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .category-btn img {
        max-width: 250px;
    }
}
