:root {
    --primary-color: #0d3b66;
    /* Deep Ocean Blue */
    --secondary-color: #00a8e8;
    /* Fresh Water Blue */
    --accent-color: #eef4ed;
    /* Soft White/light blue tint */
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--accent-color);
    overflow-x: hidden;

    /* High-quality font antialiasing for crisp, smooth text */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-white {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 59, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 59, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-white:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Adjust based on logo proportions */
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Search Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
}

.search-icon:hover {
    color: var(--secondary-color);
    background: rgba(0, 168, 232, 0.1);
}

.search-input {
    width: 0;
    opacity: 0;
    padding: 8px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.4s ease;
    margin-left: 0;
    pointer-events: none;
}

.search-input.active {
    width: 250px;
    opacity: 1;
    margin-left: 10px;
    pointer-events: all;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 168, 232, 0.2);
}

.search-results {
    position: absolute;
    top: 50px;
    right: 0;
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1001;
}

.search-results.active {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--accent-color);
}

.search-result-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
}

.search-result-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.search-result-category {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #999;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: url('images/hero_family.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--white);
    padding-top: 80px;
    /* Offset for navbar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 59, 102, 0.8) 0%, rgba(13, 59, 102, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.text-highlight {
    color: var(--secondary-color);
}

.separator {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--accent-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Catalog Section */
.catalog {
    padding: 100px 0;
    background: #f8fcfd;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    background: #eef4ed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-category {
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #0a2e4f;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    height: 40px;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Simplification for mobile, usually would need JS toggle */
    }

    .mobile-toggle {
        display: block;
    }

    .search-input.active {
        width: 180px;
    }

    .search-results {
        width: 90vw;
        right: -10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 60px;
        background-position: left center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links a {
        margin: 0 10px;
    }
}

/* Product Modal Specifics */
/* Product Modal Specifics */
.product-modal-content {
    max-width: 800px;
    width: 95%;
    /* Slightly wider on mobile if needed, but 90% is fine usually */
    max-height: 85vh;
    /* Reduce from 90vh */
    overflow-y: auto;
    padding: 30px;
    /* Reduce padding slightly */
}

/* Message Modal Specifics */
.message-modal-content {
    max-width: 400px;
    text-align: center;
    padding: 2rem;
}

.message-icon-box {
    margin-bottom: 1rem;
}

.message-icon-box i {
    font-size: 3rem;
}

.message-success {
    color: var(--secondary-color);
}

.message-error {
    color: #e74c3c;
}

#messageBtn {
    margin-top: 1.5rem;
    min-width: 120px;
}

/* Info Modal Specifics (Minimalist, to the right) */
.info-modal-overlay {
    background: rgba(0, 0, 0, 0.2);
    /* Lighter backdrop */
    z-index: 2000;
    /* Above product modal */
}

.info-modal-content {
    position: relative;
    /* Changed from absolute */
    width: 90%;
    max-width: 350px;
    /* Slightly wider */
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-color);
    animation: fadeInUp 0.3s ease;
    /* Use existing fade up animation or standard */
    margin: 0 auto;
    /* Ensure centering logic if needed, but flex handles it */
}

/* Removed specific slideInRight animation to avoid side-effect confusion */


#infoTitle {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.info-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.info-body ul {
    list-style: none;
    padding: 0;
}

.info-body li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.info-body li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

@media (min-width: 768px) {
    .product-detail-container {
        flex-direction: row;
    }
}

.detail-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
    max-height: 300px;
    /* Reduce from 400px to save vertical space */
    background: #f9f9f9;
    /* Add bg for transparent images */
}

.thumbnail-grid {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.detail-info {
    flex: 1;
}

.detail-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.detail-desc {
    color: var(--text-light);
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* Added padding to prevent touching edges */
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.modal-content p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    max-width: 350px;
    /* Slightly wider */
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-color);
    animation: fadeInUp 0.3s ease;
    /* Use existing fade up animation or standard */
    margin: 0 auto;
    /* Ensure centering logic if needed, but flex handles it */
}

/* Removed specific slideInRight animation to avoid side-effect confusion */


#infoTitle {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.info-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.info-body ul {
    list-style: none;
    padding: 0;
}

.info-body li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.info-body li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

@media (min-width: 768px) {
    .product-detail-container {
        flex-direction: row;
    }
}

.detail-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
    max-height: 300px;
    /* Reduce from 400px to save vertical space */
    background: #f9f9f9;
    /* Add bg for transparent images */
}

.thumbnail-grid {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.detail-info {
    flex: 1;
}

.detail-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.detail-desc {
    color: var(--text-light);
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* Added padding to prevent touching edges */
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.modal-content p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

/* Footer Enhanced Styles */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 30px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin: 15px 0;
    line-height: 1.6;
}

.footer-info {
    margin-top: 20px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0;
    font-size: 0.9rem;
}

.footer-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.developer-credit {
    font-size: 0.9rem;
}

/* Institutional Pages Styles */
.institutional-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--white);
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-section h2 i {
    color: var(--secondary-color);
}

.about-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.8;
}

.values-list li:last-child {
    border-bottom: none;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .page-title {
        font-size: 2rem;
    }

    .institutional-page {
        padding: 100px 0 60px;
    }
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
    animation: fadeInScale 0.5s ease forwards;
}

.floating-btn.show {
    opacity: 1;
    transform: scale(1);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.floating-btn:active {
    transform: scale(0.95);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    animation-delay: 0.1s;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.scroll-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    animation-delay: 0.2s;
}

.scroll-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.scroll-btn i {
    transition: transform 0.3s ease;
}

.scroll-btn.rotate i {
    transform: rotate(180deg);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating buttons responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ============================================
   PROMO MODAL (BANNER)
   ============================================ */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.promo-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    /* or your preferred max width */
    max-height: 90vh;
    background: transparent;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: visible;
    /* To allow close button to hang out if needed */
}

.promo-modal-overlay.active .promo-modal-content {
    transform: translateY(0);
}

.close-promo-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.2s ease;
}

.close-promo-modal:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

#promoModalBody img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Make it responsive */
@media (max-width: 600px) {
    .promo-modal-content {
        width: 95%;
    }

    .close-promo-modal {
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}

/* Featured carousel */
.featured-strip {
    background: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 40%, #0ea5e9 100%);
    color: #fff;
    padding: 60px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: center;
}

.featured-info h2 {
    margin: 8px 0 12px;
    color: #fff;
}

.featured-info p {
    color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #a5f3fc;
    margin-bottom: 8px;
}

.featured-carousel {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 16px 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.featured-window {
    overflow: hidden;
    touch-action: pan-y;
}

.featured-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.featured-card {
    flex: 0 0 260px;
    min-width: 260px;
    max-width: 280px;
    background: #fff;
    color: #0f172a;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    background: #f1f5f9;
}

.featured-card h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #0f172a;
}

.featured-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

.featured-badge {
    display: inline-block;
    padding: 6px 10px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.featured-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: grid;
    place-items: center;
}

.featured-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.featured-prev {
    left: 10px;
}

.featured-next {
    right: 10px;
}

.featured-dots {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.featured-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.featured-dot.active {
    background: #fff;
    transform: scale(1.1);
}

@media (max-width: 960px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-carousel {
        padding: 16px 40px;
    }

    .featured-card {
        flex-basis: 240px;
        min-width: 240px;
    }
}

@media (max-width: 640px) {
    .featured-carousel {
        padding: 12px 12px 24px;
    }

    .featured-nav {
        display: none;
    }

    .featured-track {
        gap: 12px;
    }

    .featured-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

/* Marketing Carousels Upgrade */
.marketing-carousel-section {
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--white);
}

.marketing-carousel-section.bg-light {
    background-color: #f8fcfd;
}

.marketing-carousel {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.marketing-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.marketing-item {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.marketing-image {
    flex: 1;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.marketing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.marketing-item:hover .marketing-image img {
    transform: scale(1.1);
}

.marketing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marketing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.2);
}

.marketing-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.marketing-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Social Proof */
.social-proof-section {
    padding: 20px 0 100px;
    background: linear-gradient(180deg, rgba(248, 252, 253, 0) 0%, rgba(255, 255, 255, 0.85) 22%, #f7fbfc 100%);
}

.social-proof-shell {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(18, 87, 142, 0.1) 0%, rgba(18, 87, 142, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f4f9fb 100%);
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: 0 28px 60px rgba(6, 31, 53, 0.08);
}

.social-proof-shell::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.12) 0%, rgba(0, 168, 232, 0) 70%);
}

.social-proof-shell::after {
    content: '';
    position: absolute;
    left: -30px;
    bottom: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 59, 102, 0.08) 0%, rgba(13, 59, 102, 0) 72%);
}

.social-proof-topline,
.social-proof-intro,
.social-proof-grid {
    position: relative;
    z-index: 1;
}

.social-proof-topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, auto);
    gap: 24px;
    align-items: end;
    margin-bottom: 20px;
}

.social-proof-intro h2 {
    margin: 12px 0 14px;
    color: var(--primary-color);
    font-size: 2.4rem;
    line-height: 1.04;
    max-width: 13ch;
}

.social-proof-intro p {
    color: #5d7388;
    font-size: 1rem;
    max-width: 58ch;
}

.social-proof-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 26px;
    background: linear-gradient(135deg, #0d3b66 0%, #0f4d82 100%);
    box-shadow: 0 18px 36px rgba(8, 39, 70, 0.16);
}

.social-proof-summary-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 112px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
}

.social-proof-value {
    display: block;
    color: var(--primary-color);
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1;
}

.social-proof-summary-source {
    display: block;
    margin-bottom: 6px;
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.social-proof-summary-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-proof-stars {
    display: flex;
    gap: 8px;
    color: #ffd15c;
    font-size: 1.1rem;
}

.social-proof-summary-meta p {
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.9);
}

.social-proof-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.social-proof-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.social-proof-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 251, 0.98));
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: 0 16px 32px rgba(5, 24, 41, 0.08);
}

.social-proof-card-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.social-proof-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 10px 18px rgba(13, 59, 102, 0.12);
}

.social-proof-person {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.social-proof-person h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1.2;
}

.social-proof-person p {
    margin: 0;
    color: #7b8ea0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.social-proof-card-time {
    margin-left: auto;
    color: #8ea1b2;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.social-proof-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 168, 232, 0.12);
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.social-proof-card-icon {
    display: none;
}

.social-proof-card-stars {
    display: flex;
    gap: 6px;
    margin: 18px 0 14px;
    color: #ffbf3f;
    font-size: 0.95rem;
}

.social-proof-card blockquote {
    margin: 0;
    color: #37556c;
    font-size: 1.02rem;
    line-height: 1.75;
    font-weight: 500;
}

.social-proof-card-footer,
.social-proof-card-link {
    margin-top: 18px;
}

.social-proof-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
}

.social-proof-card-footer {
    padding-top: 14px;
    border-top: 1px solid rgba(13, 59, 102, 0.08);
    color: #7a8fa3;
    font-size: 0.92rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .social-proof-section {
        padding-bottom: 72px;
    }

    .social-proof-shell {
        padding: 24px;
        border-radius: 28px;
    }

    .social-proof-topline {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .social-proof-intro h2 {
        font-size: 2rem;
        max-width: none;
    }

    .social-proof-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-proof-summary-badge {
        width: 100%;
        max-width: 220px;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
    }

    .social-proof-card {
        min-height: auto;
    }

    .social-proof-card-head {
        flex-wrap: wrap;
        align-items: center;
    }

    .social-proof-card-time {
        margin-left: 68px;
    }
}

/* Brand Ticker */
.brand-ticker {
    padding: 40px 0;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.ticker-container {
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.ticker-logo {
    height: 50px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
    object-fit: contain;
}

.ticker-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 40px)); }
}

/* Catalog Footer */
.catalog-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-large {
    padding: 18px 45px !important;
    font-size: 1.2rem !important;
}

/* Catalog Page Styles */
.catalog-page .navbar .nav-links a.active {
    color: var(--secondary-color);
    font-weight: 700;
}

.page-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(123, 226, 255, 0.18) 0, transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.16) 0, transparent 28%),
        linear-gradient(135deg, #082746 0%, #0b4a74 45%, #1182b8 100%);
    padding: 156px 0 68px;
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 72px;
    right: 8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.08) 42%, transparent 72%);
    filter: blur(4px);
}

.page-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -120px;
    height: 240px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.12) 100%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 40px;
    align-items: center;
}

.page-header-copy {
    max-width: 620px;
}

.page-header-kicker {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 700;
}

.page-header h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    color: white;
    max-width: 12ch;
    text-wrap: balance;
}

.page-header p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    max-width: 52ch;
}

.page-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
}

.page-header .btn-white {
    box-shadow: 0 18px 32px rgba(6, 27, 46, 0.18);
}

.page-header-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.page-header-secondary-link:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.page-header-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.page-header-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(5, 24, 41, 0.14);
}

.page-header-highlights i {
    color: #7ee5ff;
}

.page-header-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.page-header-photo {
    width: min(100%, 520px);
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 60px rgba(6, 27, 46, 0.24);
    background: rgba(255, 255, 255, 0.12);
}

.page-header-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-header-caption {
    width: min(100%, 420px);
    align-self: flex-start;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(5, 24, 41, 0.16);
}

.page-header-caption strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.page-header-caption span {
    display: block;
    color: #47637f;
    line-height: 1.55;
    font-size: 0.94rem;
}

.catalog-full {
    position: relative;
    margin-top: -24px;
    padding-top: 32px;
    background-color: var(--accent-color);
    min-height: 600px;
    border-radius: 42px 42px 0 0;
}

.catalog-controls {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.filter-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid transparent;
    background: transparent;
    color: #666;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--secondary-color);
}

.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marketing-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .marketing-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .marketing-text h3 {
        font-size: 1.5rem;
    }

    .marketing-text p {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 120px 0 48px;
    }

    .page-header-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .page-header h1 {
        font-size: 2.4rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .page-header-actions {
        gap: 12px;
    }

    .page-header-highlights {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .page-header-highlights li {
        width: 100%;
    }

    .page-header-visual {
        align-items: stretch;
    }

    .page-header-photo {
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 24px;
    }

    .page-header-caption {
        width: 100%;
        padding: 16px 18px;
    }

    .catalog-full {
        margin-top: -12px;
        padding-top: 28px;
        border-radius: 28px 28px 0 0;
    }

    .catalog-controls {
        justify-content: flex-start;
        margin-bottom: 36px;
    }

    .filter-group {
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 12px;
        border-radius: 24px;
        scrollbar-width: none;
    }

    .filter-group::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
    }
}
