/**
 * Technoplast Premium - Products, Gallery & Blog Stylesheet
 * Enforces brand blue (#0067b2), accent red (#ef3125), and dark-industrial aesthetics.
 */

:root {
    --primary-blue: #0067b2;
    --accent-red: #ef3125;
    --dark-bg: #0b1622;
    --glass-bg: rgba(11, 22, 34, 0.7);
    --border-glass: rgba(255, 255, 255, 0.05);
    --text-light: #ffffff;
    --text-muted: #94a3b8;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-blue-glow: 0 0 25px rgba(0, 103, 178, 0.25);
    --shadow-red-glow: 0 0 25px rgba(239, 49, 37, 0.25);
}

/* -----------------------------------------------------------------------------
 * 1. AJAX FILTER TABS STYLING
 * ---------------------------------------------------------------------------*/
.filter-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 3.5rem;
}

.filter-tab {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tab:hover,
.filter-tab.active {
    color: var(--text-light);
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue-glow);
}

/* Loading overlay for AJAX */
.ajax-grid-loading {
    position: relative;
    opacity: 0.5;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.ajax-grid-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(0, 103, 178, 0.1);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: ajaxSpinner 0.8s linear infinite;
    z-index: 10;
}

@keyframes ajaxSpinner {
    to { transform: rotate(360deg); }
}

/* -----------------------------------------------------------------------------
 * 2. PRODUCT CARDS & EQUAL HEIGHT SYSTEM
 * ---------------------------------------------------------------------------*/
.products-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .products-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .products-grid-3col {
        grid-template-columns: 1fr;
    }
}

.product-matrix-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.product-matrix-card:hover {
    border-color: rgba(0, 103, 178, 0.3);
    box-shadow: var(--shadow-blue-glow);
    transform: translateY(-8px);
}

.product-card-media {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glass);
    background: #050b11;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-matrix-card:hover .product-card-media img {
    transform: scale(1.06);
}

.product-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.product-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-card-title a {
    color: var(--text-light);
}
.product-card-title a:hover {
    color: var(--primary-blue);
}

.product-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    border: 1px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.product-matrix-card:hover .product-card-btn {
    background: var(--primary-blue);
    color: var(--text-light);
    box-shadow: var(--shadow-blue-glow);
}

.product-card-btn i {
    margin-left: 8px;
    transition: var(--transition-smooth);
}
.product-card-btn:hover i {
    transform: translateX(4px);
}

/* -----------------------------------------------------------------------------
 * 3. TECHNICAL SPECIFICATIONS & BLUEPRINT MATRIX
 * ---------------------------------------------------------------------------*/
.single-product-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

@media (max-width: 991px) {
    .single-product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Blueprint Grid Overlay Effect */
.blueprint-spec-wrap {
    position: relative;
    border: 1px solid rgba(0, 103, 178, 0.15);
    background: rgba(11, 22, 34, 0.4);
    border-radius: 8px;
    padding: 2rem;
    overflow: hidden;
    margin-top: 2rem;
}

.blueprint-spec-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 103, 178, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 103, 178, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.blueprint-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 2;
}

.blueprint-table tr {
    border-bottom: 1px solid rgba(0, 103, 178, 0.1);
}
.blueprint-table tr:last-child {
    border-bottom: none;
}

.blueprint-table th,
.blueprint-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.9rem;
}

.blueprint-table th {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    width: 40%;
}

.blueprint-table td {
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

/* Action row styling */
.product-ctas-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.whatsapp-enquiry-btn {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
}
.whatsapp-enquiry-btn:hover {
    background: transparent !important;
    color: #25d366 !important;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.25) !important;
}

.pdf-catalog-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-light);
}
.pdf-catalog-btn:hover {
    border-color: var(--text-light);
}

/* Related Products Loop */
.related-products-section {
    border-top: 1px solid var(--border-glass);
    padding-top: 5rem;
    margin-top: 5rem;
}

/* -----------------------------------------------------------------------------
 * 4. MASONRY GALLERY & LIGHTBOX OVERLAYS
 * ---------------------------------------------------------------------------*/
.gallery-masonry-grid {
    column-count: 3;
    column-gap: 20px;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .gallery-masonry-grid {
        column-count: 2;
    }
}
@media (max-width: 575px) {
    .gallery-masonry-grid {
        column-count: 1;
    }
}

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    background: rgba(11, 22, 34, 0.4);
}

.gallery-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 103, 178, 0.9) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-masonry-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-masonry-item:hover img {
    transform: scale(1.04);
}

.gallery-hover-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.gallery-hover-cat {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox Modal System */
.technoplast-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 11, 20, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.technoplast-lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    background: transparent;
}
.lightbox-close-btn:hover {
    color: var(--accent-red);
    transform: scale(1.1);
}

.lightbox-media-frame {
    max-width: 85%;
    max-height: 80%;
    text-align: center;
    position: relative;
}

.lightbox-media-frame img {
    max-height: 75vh;
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border: 1px solid var(--border-glass);
}

.lightbox-text-caption {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
 * 5. BLOG POSTS CARDS & SIDEBAR STYLING
 * ---------------------------------------------------------------------------*/
.blog-dual-container {
    display: grid;
    grid-template-columns: 2.1fr 0.9fr;
    gap: 4rem;
}

@media (max-width: 991px) {
    .blog-dual-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

/* Featured Large Blog Card */
.featured-blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}
.featured-blog-card:hover {
    border-color: rgba(0, 103, 178, 0.25);
    box-shadow: var(--shadow-blue-glow);
}

.featured-card-media {
    height: 400px;
    overflow: hidden;
    background: #050b11;
}

.featured-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.featured-blog-card:hover .featured-card-media img {
    transform: scale(1.02);
}

.featured-card-body {
    padding: 2.5rem;
}

.featured-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    gap: 15px;
}
.featured-card-meta span i {
    color: var(--primary-blue);
    margin-right: 6px;
}

.featured-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.featured-card-title a {
    color: var(--text-light);
}
.featured-card-title a:hover {
    color: var(--primary-blue);
}

/* 3-Column Remaining Blog Grid */
.blog-columns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 575px) {
    .blog-columns-grid {
        grid-template-columns: 1fr;
    }
}

.blog-grid-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.blog-grid-card:hover {
    border-color: rgba(0, 103, 178, 0.2);
    box-shadow: var(--shadow-blue-glow);
    transform: translateY(-5px);
}

.blog-card-media {
    height: 200px;
    overflow: hidden;
    background: #050b11;
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.blog-grid-card:hover .blog-card-media img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
}
.blog-card-title a {
    color: var(--text-light);
}
.blog-card-title a:hover {
    color: var(--primary-blue);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Sidebar Widgets Styling */
.blog-sidebar-widget {
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Sidebar Search Form */
.sidebar-search-box {
    position: relative;
}
.sidebar-search-box input {
    width: 100%;
    background: rgba(11, 22, 34, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 0.8rem 3rem 0.8rem 1.2rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}
.sidebar-search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 103, 178, 0.15);
}
.sidebar-search-box button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}
.sidebar-search-box button:hover {
    color: var(--primary-blue);
}

/* Sidebar Lists */
.sidebar-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-links-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-links-list li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.sidebar-links-list li a:hover {
    color: var(--primary-blue);
    transform: translateX(3px);
}

.sidebar-links-list li span.count-tag {
    font-size: 0.75rem;
    background: rgba(0, 103, 178, 0.1);
    color: var(--primary-blue);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Recent Posts widget */
.sidebar-recent-post-card {
    display: flex;
    gap: 12px;
    margin-bottom: 1.25rem;
    align-items: center;
}
.sidebar-recent-post-card:last-child {
    margin-bottom: 0;
}

.recent-post-thumb {
    width: 65px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
    background: #050b11;
}
.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}
.recent-post-title a {
    color: var(--text-light);
}
.recent-post-title a:hover {
    color: var(--primary-blue);
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
 * 6. SINGLE BLOG POSTS & SOCIAL SHARE BUTTONS
 * ---------------------------------------------------------------------------*/
.single-post-hero-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    margin-bottom: 4rem;
}
.single-post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .single-post-hero-image {
        height: 300px;
    }
}

.article-content-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.article-content-body p {
    margin-bottom: 2rem;
}

.article-content-body h2,
.article-content-body h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

/* Author Info Panel */
.author-profile-card {
    display: flex;
    gap: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 2.5rem;
    margin: 4rem 0;
    align-items: center;
}

@media (max-width: 575px) {
    .author-profile-card {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
}

.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-blue-glow);
    flex-shrink: 0;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Tag list in post details */
.post-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
}

.post-tag-item {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}
.post-tag-item:hover {
    border-color: var(--primary-blue);
    color: var(--text-light);
}

/* B2B Social Share Panel */
.post-share-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem 0;
    margin-bottom: 4rem;
}

.share-lbl {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.share-buttons-wrap {
    display: flex;
    gap: 10px;
}

.social-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}
.social-share-btn:hover {
    transform: translateY(-3px);
}

.social-share-btn.wa {
    background: #25d366;
}
.social-share-btn.fb {
    background: #1877f2;
}
.social-share-btn.li {
    background: #0077b5;
}

/* -----------------------------------------------------------------------------
 * 7. COMMENTS MODULES
 * ---------------------------------------------------------------------------*/
.comments-layout-area {
    margin-top: 5rem;
}

.comments-heading-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.75rem;
}

.comments-thread-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.comment-card-node {
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.comment-card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--primary-blue);
    flex-shrink: 0;
}
.comment-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-card-content h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.comment-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.comment-card-text {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
}
.comment-card-text p:last-child {
    margin-bottom: 0;
}

/* Comment Form glow styling */
.comments-submission-form {
    margin-top: 4rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2.5rem;
}

.comment-reply-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Numerical B2B Pagination Links */
.technoplast-pagination-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4rem;
}

.technoplast-pagination-wrap .page-numbers {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    border: 1px solid var(--border-glass);
    background: rgba(255,255,255,0.02);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.technoplast-pagination-wrap .page-numbers.current,
.technoplast-pagination-wrap .page-numbers:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-light);
    box-shadow: var(--shadow-blue-glow);
}
