:root {
    --primary-brown: #ac916b;
    --primary-beige: #e8ddd0;
    --light-cream: #faf7f4;
    --dark-brown: #3d2518;
    --gold-accent: #c9a86c;
    --soft-pink: #f5e6e0;
}

/* Product Detail Gallery */
.product-gallery .gallery-main {
    position: relative;
}

.product-gallery .gallery-main img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #eee;
}

.product-gallery .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

i.bi.bi-chevron-left,
i.bi.bi-chevron-right {
    color: #3d2518;
    transition: color 0.2s ease;
}

i.bi.bi-chevron-left:hover,
i.bi.bi-chevron-right:hover {
    color: #ffffff;
}
.product-gallery .gallery-nav.prev {
    left: 10px;
}

.product-gallery .gallery-nav.next {
    right: 10px;
}

.product-gallery .gallery-thumbs {
    padding-bottom: 6px;
}

.product-gallery .gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
}

.product-gallery .gallery-thumb:hover {
    opacity: 1;
}

.product-gallery .gallery-thumb.active {
    border-color: var(--gold-accent);
    opacity: 1;
}

@media (max-width: 991px) {
    .product-gallery .gallery-main img {
        max-height: 420px;
    }
    .product-gallery .gallery-thumb {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 576px) {
    .product-gallery .gallery-main img {
        max-height: 320px;
    }
    .product-gallery .gallery-thumb {
        width: 64px;
        height: 64px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--dark-brown);
    background-color: var(--light-cream);
    overflow-x: hidden;
}

/* Brand text beside logo */
@font-face {
    font-family: "MeiraDemo Regular";
    src: url("/fonts/Meira_Demo.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.brand-text {
    font-family: "MeiraDemo Regular", "Montserrat", sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--primary-brown);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(93, 58, 41, 0.08);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-brown) !important;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--gold-accent) !important;
}

/* Hero Slider */
.hero-slider {
    height: 50vh;
    min-height: 650px;
    position: relative;
}

.hero-slider .carousel-item {
    height: 100vh;
    min-height: 600px;
}

.hero-slider .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(61, 37, 24, 0.3) 0%,
        rgba(61, 37, 24, 0.1) 50%,
        rgba(61, 37, 24, 0.4) 100%
    );
    z-index: 1;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    z-index: 2;
}

.carousel-caption h5 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4.5rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.carousel-caption p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

.btn-elegant {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 45px;
    border: 1px solid #fff;
    background: transparent;
    color: #3d2518;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-elegant::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    color: var(--primary-brown);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-elegant:hover {
    color: var(--primary-brown);
    border-color: #fff;
}

.btn-elegant:hover::before {
    left: 0;
}

.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background-size: 40%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    font-family: "Times New Roman", Times, serif;
    color: #ac916b;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8ddd0' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 3.5rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-text {
    font-size: 18px;
    line-height: 1.5;
    color: #ac916b;
    margin-bottom: 30px;
}

.decorative-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, var(--gold-accent), transparent);
    margin-bottom: 30px;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

/* .about-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold-accent);
    z-index: 0;
}

.about-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold-accent);
    z-index: 0;
} */

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(93, 58, 41, 0.15);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--light-cream) 0%,
        var(--soft-pink) 100%
    );
}

.service-card {
    background: #fff;
    padding: 50px 35px;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(93, 58, 41, 0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--gold-accent),
        var(--primary-beige)
    );
    transform: scaleX(0);
    transition: all 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(93, 58, 41, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.5s ease;
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-brown);
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-brown);
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h4 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--primary-brown);
    position: relative;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/placeholder.svg?height=600&width=1920") center/cover;
    opacity: 0.05;
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(93, 58, 41, 0) 0%,
        rgba(93, 58, 41, 0.8) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay span {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
}

/* Suppliers Carousel */
.suppliers-section {
    padding: 100px 0;
    background: var(--light-cream);
}

.suppliers-carousel {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.suppliers-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 14);
}

.supplier-item {
    flex: 0 0 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    /* filter: grayscale(100%); */
    /* opacity: 0.5; */
    transition: all 0.4s ease;
}

.supplier-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.supplier-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 7));
    }
}

/* CTA Section */
.cta-section {
    padding: 150px 0;
    background: linear-gradient(rgba(61, 37, 24, 0.85), rgba(61, 37, 24, 0.85)),
        url("/placeholder.svg?height=800&width=1920") center/cover fixed;
    text-align: center;
}

.cta-section h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.btn-gold {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 50px;
    background: var(--gold-accent);
    color: #fff;
    border: none;
    transition: all 0.4s ease;
}

.btn-gold:hover {
    background: #fff;
    color: var(--primary-brown);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: #fff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--gold-accent);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-info-item h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.contact-info-item p {
    font-size: 16px;
    color: var(--primary-brown);
    margin: 0;
    line-height: 1.6;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 15px 0;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--gold-accent);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: none;
}

.btn-submit {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 50px;
    background: var(--primary-brown);
    color: #fff;
    border: none;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--gold-accent);
    color: #fff;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    padding: 80px 0 30px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 25px;
    /* filter: brightness(0) invert(1); */
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-title {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}

/* Products Page */
.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 15px;
}

.product-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card .card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.product-card .btn {
    font-size: 14px;
    padding: 10px 20px;
}

.btn {
    background-color: var(--primary-brown) !important;
    color: #fff !important;
}

.btn:hover {
    background-color: var(--dark-brown) !important;
    color: #5d3a29 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .carousel-caption h5 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand img {
        height: 45px;
    }

    .hero-slider,
    .hero-slider .carousel-item {
        height: 80vh;
        min-height: 500px;
    }

    .carousel-caption h5 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .carousel-caption p {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .btn-elegant {
        padding: 14px 30px;
        font-size: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-image {
        height: 350px;
    }

    .about-image-wrapper::before,
    .about-image-wrapper::after {
        width: 100px;
        height: 100px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .supplier-item {
        flex: 0 0 150px;
        padding: 15px 25px;
    }

    .suppliers-track {
        width: calc(150px * 14);
        animation: scroll-mobile 25s linear infinite;
    }

    @keyframes scroll-mobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 7));
        }
    }
}

@media (max-width: 480px) {
    .carousel-caption h5 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

.partners-section {
    position: relative;
}

.partners-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;

    background-image: url("/images/explore-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 800px;
}

.partners-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.partners-title em {
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
}

.partners-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.partners-search-form {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partners-search-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: #333;
    background: transparent;
}

.partners-search-input::placeholder {
    color: #999;
}

.partners-search-btn {
    padding: 18px 28px;
    background-color: #ac916b;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-search-btn:hover {
    background-color: #8f7556;
}

.partners-search-btn svg {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-hero {
        height: 60vh;
        min-height: 400px;
    }

    .partners-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .partners-search-input {
        padding: 14px 18px;
        font-size: 14px;
    }

    .partners-search-btn {
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 2rem;
    }
}

.partners-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
}

.partners-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
}

.partners-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem 2rem;
}

.category-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.category-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.category-link:hover {
    color: #ac916b;
    padding-left: 8px;
}

.partners-search-wrapper {
    position: relative;
}

/* Responsive Design for Dropdown */
@media (max-width: 768px) {
    .partners-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .category-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .partners-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
}
