/* Test style to verify CSS loading */
/* .categories-grid {
    border: 5px solid red !important;
    background: black !important;
} */

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    justify-items: center;
}

/* Desktop layout */
@media (min-width: 1025px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Tablet layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile layout - Most important part */
@media screen and (max-width: 768px) {
    .categories-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .category-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 0.75rem !important;
        background: rgba(17, 17, 35, 0.95) !important;
        border: 1px solid rgba(114, 137, 218, 0.2) !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        height: auto !important;
        min-height: unset !important;
    }

    .category-card .category-logo-wrapper {
        width: 80px !important;
        height: 80px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        background: rgba(0, 0, 0, 0.2) !important;
    }

    .category-card .category-logo {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .category-card .category-info {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: left !important;
    }

    .category-card .category-title {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #fff !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }

    .category-card .product-count {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        font-size: 0.875rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .category-card .product-count i {
        color: #7289da !important;
    }

    /* Hide view all button on mobile */
    .category-card .view-all-btn {
        display: none !important;
    }

    /* Touch feedback */
    .category-card:active {
        transform: scale(0.98) !important;
        background: rgba(17, 17, 35, 0.98) !important;
    }
}

/* Search Section */
.search-wrapper {
    max-width: 650px;
    margin: 0 auto 2rem auto;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 35, 0.95);
    border: 1px solid rgba(114, 137, 218, 0.2);
    border-radius: 12px;
    padding: 0.5rem 1rem;
}

.search-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.5rem;
    font-size: 1rem;
}

.categories-count {
    color: #3B82F6;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    margin-left: 1rem;
}

/* Reset any inherited styles */
.categories-grid .category-card,
.categories-grid .category-logo-wrapper,
.categories-grid .category-logo,
.categories-grid .category-info,
.categories-grid .category-title,
.categories-grid .product-count,
.categories-grid .view-all-btn {
    all: unset;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    margin-bottom: 4rem;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* Enhanced Category Card */
.category-card {
    min-width: 0;
    min-height: 340px;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(17, 17, 35, 0.95);
    border: 1px solid rgba(114, 137, 218, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
    padding: 1.5rem 1rem 1rem 1rem;
}

.category-logo-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 220px;
    max-height: 220px;
    margin: 0 auto 1rem auto;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    display: block;
}

.category-card:hover .category-logo {
    transform: scale(1.05);
}

.category-info {
    padding: 1.5rem;
    background: rgba(17, 17, 35, 0.95);
    border-top: 1px solid rgba(114, 137, 218, 0.1);
}

.category-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.product-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(114, 137, 218, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    color: #fff;
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: rgba(114, 137, 218, 0.15);
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

/* Hover/Active states */
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(114, 137, 218, 0.2);
}

.view-all-btn:hover {
    background: rgba(114, 137, 218, 0.25);
}

/* Active states for mobile */
@media (hover: none) {
    .category-card:active {
        transform: scale(0.98);
    }
    
    .view-all-btn:active {
        background: rgba(114, 137, 218, 0.3);
    }
}

.products-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    max-height: 300px;
    overflow: hidden;
}

.product-preview-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-preview-card:hover {
    transform: translateY(-2px);
}

.product-preview-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.product-preview-info {
    padding: 0.75rem;
}

.product-preview-info h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #94a3b8;
}

.out-of-stock {
    color: #ef4444;
}

.in-stock {
    color: #22c55e;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #eab308;
}

@media (max-width: 640px) {
    .products-preview {
        grid-template-columns: 1fr;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.5);
}

.product-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Update category containers to remove borders */
.category-item {
    border: none;
    background: rgba(20, 20, 30, 0.4);
    transition: transform 0.2s ease;
}

/* Remove divider lines between categories */
.categories-container {
    border: none;
    gap: 16px; /* Use gap for spacing */
}

/* Enhanced text styling */
.category-title,
.product-name {
    color: #7289da; /* Discord-like blue */
    font-weight: 600;
}

.price-text {
    color: #43b581; /* Discord-like green */
    font-weight: 600;
}

.description-text {
    color: #b9bbbe; /* Light gray for better readability */
    line-height: 1.6;
}

/* Style for the "Why Us?" section */
.why-us-heading {
    background: linear-gradient(45deg, #7289da, #43b581);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 2.5rem;
}

.service-features {
    color: #b9bbbe;
}

/* Stats section styling */
.stats-container {
    background: rgba(20, 20, 35, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
}

.stat-number {
    color: #7289da;
    font-weight: 700;
    font-size: 2rem;
}

.stat-label {
    color: #b9bbbe;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Force color schemes */
.why-us-heading {
    background: linear-gradient(45deg, #7289da, #43b581) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
}

.category-title,
.product-name {
    color: #7289da !important;
}

.price-text {
    color: #43b581 !important;
}

.description-text {
    color: #b9bbbe !important;
}

/* Text colors */
.section-title {
    color: #7289da !important;
}

.section-desc, 
.section-sub-title {
    color: #b9bbbe !important;
}

/* Stats styling */
.icon-shopping-bag,
.icon-stars,
.icon-filter-lines,
.icon-face-happy {
    color: #7289da !important;
}

/* Remove white lines/borders */
hr {
    display: none !important;
}

.card {
    background: rgba(20, 20, 35, 0.6) !important;
    border: 1px solid rgba(114, 137, 218, 0.2) !important;
    backdrop-filter: blur(10px);
}

/* Style the search form */
.search-form input {
    background: rgba(20, 20, 35, 0.6) !important;
    border: 1px solid rgba(114, 137, 218, 0.2) !important;
    color: #b9bbbe !important;
}

/* Style the FAQ section */
#faq .accordion-button {
    background: rgba(20, 20, 35, 0.6) !important;
    border: 1px solid rgba(114, 137, 218, 0.2) !important;
    color: #7289da !important;
}

/* Style statistics */
.statistics-number {
    color: #7289da !important;
}

.statistics-label {
    color: #b9bbbe !important;
}

/* Remove any remaining white borders */
* {
    border-color: rgba(114, 137, 218, 0.2) !important;
}

/* Main heading styles */
#mainText1, #mainText2 {
    color: #fff !important;
    font-weight: 600;
}

#mainText3 {
    background: linear-gradient(45deg, #7289da, #43b581) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

#topSlogan {
    color: #7289da !important;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

#bottomSlogan {
    color: #b9bbbe !important;
    font-size: 1.2rem;
}

/* Update other text colors */
.section-sub-title {
    color: #7289da !important;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.font-bold {
    color: #fff !important;
}

.text-blue-600 {
    color: #7289da !important;
}

/* Stats section */
.statistics-container .font-bold {
    background: linear-gradient(45deg, #7289da, #43b581);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Service features */
.icon-flag {
    color: #43b581 !important;
}

.icon-close {
    color: #ef4444 !important;
}

/* Remove any conflicting styles */
.search-results {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

/* Adjust card padding to accommodate larger logo */
.category-card {
    padding: 2.5rem 1.5rem;
}

/* Responsive adjustments for logo size */
@media (max-width: 1400px) {
    .category-logo-wrapper {
        width: 160px;
        height: 160px;
        padding: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .category-logo-wrapper {
        height: 240px; /* Slightly smaller on tablets */
    }
}

@media (max-width: 640px) {
    .category-logo-wrapper {
        width: 120px;
        height: 120px;
        padding: 0.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Add these new mobile-optimized styles */

/* Mobile Grid Layout */
@media (max-width: 768px) {
    .categories-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }

    .category-card {
        flex-direction: row;
        align-items: center;
        padding: 1rem;
    }

    .category-logo-wrapper {
        width: 140px; /* Larger size for mobile */
        height: 140px;
        flex-shrink: 0;
        margin: 0;
    }

    .category-info {
        flex: 1;
        padding: 1rem;
        border-top: none;
        text-align: left;
    }

    .category-title {
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .product-count {
        background: rgba(114, 137, 218, 0.1);
        padding: 0.5rem;
        border-radius: 8px;
        font-size: 0.875rem;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .view-all-btn {
        width: 100%;
        padding: 0.75rem;
        background: rgba(114, 137, 218, 0.15);
        color: #fff;
        border-radius: 8px;
        text-align: center;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    /* Active/Hover States for Mobile */
    .category-card:active {
        transform: scale(0.98);
        background: rgba(17, 17, 35, 0.98);
    }

    .view-all-btn:active {
        background: rgba(114, 137, 218, 0.25);
    }
}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
}

/* Desktop Layout */
@media (min-width: 1025px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

/* Ensure proper stacking and spacing */
.category-card > * {
    position: relative;
    z-index: 1;
}

/* Add smooth transitions */
.category-card,
.category-logo,
.view-all-btn {
    transition: all 0.3s ease;
}

/* Fix any overflow issues */
.category-card {
    overflow: hidden;
}

/* Ensure text contrast */
.category-title,
.product-count,
.view-all-btn {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add smooth scrolling for iOS */
@supports (-webkit-overflow-scrolling: touch) {
    .categories-grid {
        -webkit-overflow-scrolling: touch;
    }
}

/* Base styles for the grid */
.categories-grid {
    display: grid;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    gap: 1rem;
}

/* Mobile-first approach */
.category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(17, 17, 35, 0.95);
    border: 1px solid rgba(114, 137, 218, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.category-logo-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.category-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.product-count i {
    color: #7289da;
}

/* Tablet layout */
@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop layout */
@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .category-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .category-logo-wrapper {
        width: 100%;
        height: 120px;
        margin-bottom: 1rem;
    }

    .category-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .category-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

/* Touch interaction */
@media (hover: none) {
    .category-card:active {
        transform: scale(0.98);
    }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
    .category-logo-wrapper {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .category-logo {
        filter: brightness(1.1);
    }
}

/* --- Modern Glassmorphism Categories Page --- */
.categories-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 3rem 1rem;
}
.categories-hero {
    text-align: center;
    margin: 3rem 0 2.5rem 0;
}
.categories-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #7289da 0%, #43b581 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.categories-hero-desc {
    color: #b9bbbe;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}
.categories-search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.categories-search-form {
    display: flex;
    align-items: center;
    background: rgba(40, 40, 60, 0.6);
    border: 1.5px solid rgba(114, 137, 218, 0.18);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(114,137,218,0.08);
    padding: 0.5rem 1.5rem;
    min-width: 320px;
    max-width: 480px;
    width: 100%;
    backdrop-filter: blur(8px);
}
.categories-search-form i {
    color: #7289da;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}
.categories-search-form input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
}
.categories-count {
    text-align: center;
    color: #7289da;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    justify-items: center;
}
.category-card-glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(30, 32, 60, 0.55);
    border: 1.5px solid rgba(114, 137, 218, 0.18);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(114,137,218,0.12);
    min-width: 0;
    min-height: 340px;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
    text-align: center;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(12px);
}
.category-card-glass:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px 0 rgba(114,137,218,0.18);
    border-color: #7289da;
}
.category-logo-glass {
    width: 120px;
    height: 120px;
    border-radius: 1.2rem;
    background: rgba(114, 137, 218, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(114,137,218,0.08);
}
.category-logo-glass img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.category-info-glass {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.category-title-glass {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(114,137,218,0.08);
}
.category-meta-glass {
    color: #b9bbbe;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.category-products-glass i {
    color: #7289da;
    margin-right: 0.3rem;
}
.category-view-btn-glass {
    background: linear-gradient(90deg, #7289da 0%, #43b581 100%);
    color: #fff;
    border: none;
    border-radius: 1rem;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(114,137,218,0.10);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, box-shadow 0.2s;
}
.category-view-btn-glass:hover {
    background: linear-gradient(90deg, #43b581 0%, #7289da 100%);
    box-shadow: 0 4px 16px rgba(67,181,129,0.12);
}
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .category-card-glass {
        max-width: 100%;
        min-height: 220px;
        padding: 1.5rem 0.5rem;
    }
    .category-logo-glass {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 640px) {
    .categories-main {
        padding: 0 0.25rem 2rem 0.25rem;
    }
    .categories-hero-title {
        font-size: 2rem;
    }
    .categories-hero-desc {
        font-size: 1rem;
    }
    .categories-search-form {
        min-width: 0;
        max-width: 100%;
        padding: 0.5rem 0.75rem;
    }
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    .category-card-glass {
        max-width: 100%;
        min-height: 180px;
        padding: 1rem 0.5rem;
    }
    .category-logo-glass {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    .category-title-glass {
        font-size: 1rem;
    }
    .category-meta-glass {
        font-size: 0.9rem;
    }
    .category-view-btn-glass {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}
@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}
@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1rem;
        padding: 0;
    }
}
.category-card-glass {
    min-width: 0;
    max-width: 320px;
    width: 100%;
}