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

:root {
    /* Sotheby's Realty Inspired Color Palette */
    --primary-color: #002349; /* Dark Royal Blue - Primary brand color */
    --secondary-color: #003d6b; /* Lighter blue for gradients and secondary elements */
    --accent-gold: #957C3D; /* Sophisticated gold for premium accents */
    --accent-gold-light: #B89A5A; /* Lighter gold for hover states */
    --accent-gold-dark: #7A6530; /* Darker gold for depth */
    
    /* Text Colors */
    --text-color: #1a1a1a; /* Near black for primary text */
    --text-light: #4a4a4a; /* Medium gray for secondary text */
    --text-muted: #6b6b6b; /* Lighter gray for less important text */
    
    /* Background Colors */
    --bg-light: #f1f1f1; /* Soft neutral gray for section backgrounds */
    --bg-cream: #f7f6f3; /* Warm cream for elegant contrast */
    --white: #fafafa; /* Warm off-white instead of pure white */
    
    /* Border and Divider Colors */
    --border-color: #e5e5e5; /* Light border */
    --border-gold: rgba(149, 124, 61, 0.3); /* Subtle gold border */
    
    /* Hover and Interactive States */
    --hover-color: #001a33; /* Darker blue for hover */
    --hover-gold: #B89A5A; /* Lighter gold for hover */
    
    /* Shadow Colors */
    --shadow-blue: rgba(0, 35, 73, 0.15); /* Blue-tinted shadows */
    --shadow-gold: rgba(149, 124, 61, 0.2); /* Gold-tinted shadows */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* General link styling for content areas - ensures all text links are distinguishable */
p a:not(.btn-learn-more):not(.btn-download):not(.btn-submit):not(.whatsapp-link),
.intro-section a:not(.btn-learn-more):not(.btn-download):not(.btn-submit):not(.category-link):not(.whatsapp-link),
.content-section a:not(.btn-learn-more):not(.btn-download):not(.btn-submit):not(.product-link):not(.category-link):not(.btn-primary):not(.whatsapp-link) {
    color: var(--accent-gold-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

p a:not(.btn-learn-more):not(.btn-download):not(.btn-submit):not(.whatsapp-link):hover,
.intro-section a:not(.btn-learn-more):not(.btn-download):not(.btn-submit):not(.category-link):not(.whatsapp-link):hover,
.content-section a:not(.btn-learn-more):not(.btn-download):not(.btn-submit):not(.product-link):not(.category-link):not(.btn-primary):not(.whatsapp-link):hover {
    color: var(--accent-gold);
    border-bottom-width: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Contact Bar */
.top-contact-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-contact-content {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    font-size: 1rem;
}

.top-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-contact-item a:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 85px;
    width: auto;
    max-width: 160px; /* Adjusted for larger logo */
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.dropdown-menu a::before {
    content: '→';
    position: absolute;
    left: 8px;
    color: var(--accent-gold);
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--accent-gold-dark);
    padding-left: 30px;
}

.dropdown-menu a:hover::before {
    opacity: 1;
    left: 12px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(149, 124, 61, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-brand {
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subheading {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 820px;
    margin: 0 auto;
}

.hero-stats {
    background-color: var(--white);
    padding: 0 20px 70px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

/* Spotlight Section */
.spotlight-section {
    padding: 70px 20px 40px;
    background: var(--bg-cream);
}

.spotlight-section + .hero-stats {
    margin-top: 0;
    padding-top: 40px;
}

.spotlight-header {
    text-align: center;
    margin-bottom: 36px;
}

.spotlight-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.spotlight-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.spotlight-subtitle {
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.spotlight-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 16px 30px var(--shadow-blue);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 100%;
}

.spotlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 35, 73, 0.2);
}

.spotlight-image {
    position: relative;
    overflow: hidden;
}

.spotlight-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 73, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.spotlight-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(250, 250, 250, 0.9);
    background-color: rgba(250, 250, 250, 0.9);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cline x1='16.2' y1='16.2' x2='21' y2='21'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cline x1='16.2' y1='16.2' x2='21' y2='21'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: 76%;
    mask-size: 76%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.spotlight-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.spotlight-card:hover .spotlight-image::before,
.spotlight-card:hover .spotlight-image::after {
    opacity: 1;
}

.spotlight-card:hover .spotlight-image::after {
    transform: translate(-50%, -50%) scale(1);
}

.spotlight-card:hover .spotlight-image img {
    transform: scale(1.03);
}

.spotlight-content {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.spotlight-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.spotlight-content p {
    color: var(--text-light);
    flex: 1;
}

@media (max-width: 968px) {
    .spotlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spotlight-image img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .spotlight-section {
        padding: 60px 20px 30px;
    }

    .spotlight-header h2 {
        font-size: 1.8rem;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-image img {
        height: 240px;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    background: var(--white);
    border-radius: 14px;
    padding: 30px 32px;
    box-shadow: 0 12px 30px var(--shadow-blue);
    border: 1px solid var(--border-color);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.stat-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 35, 73, 0.08);
    color: var(--primary-color);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.2px;
}

/* Intro Section */
.intro-section {
    padding: 80px 20px;
    background-color: var(--bg-cream);
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section .intro-highlight {
    background-color: rgba(149, 124, 61, 0.08);
    border-left: 4px solid var(--accent-gold);
    padding: 16px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Categories Section */
.categories-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.categories-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.categories-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.category-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-blue);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-blue);
    border-color: var(--border-gold);
}

.category-card:focus-within {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
}

.category-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--bg-light);
    position: relative;
    flex: 0 0 auto;
}

.category-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Category card slideshow (slide effect) */
.category-image--slideshow {
    padding: 0;
}

.category-image--slideshow .category-slideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.category-image--slideshow .category-slideshow-track {
    display: flex;
    width: 900%;
    height: 100%;
    animation: category-slideshow-slide 27s linear infinite;
}

.category-image--slideshow .category-slideshow-slide {
    flex: 0 0 11.111%;
    min-width: 11.111%;
    height: 100%;
    position: relative;
}

.category-image--slideshow .category-slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.category-image--slideshow .category-slideshow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: rgba(0, 35, 73, 0.85);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.category-card:hover .category-image--slideshow .category-slideshow-slide img {
    transform: none;
}

/* Seamless loop: 9 slides (8 + duplicate first). 100% stays at -88.89% so the
   browser never interpolates a rewind; the only “reset” is the instant jump
   from 100% to 0% when the animation restarts, which is invisible (same image). */
@keyframes category-slideshow-slide {
    0% { transform: translateX(0); }
    9% { transform: translateX(0); }
    11.11% { transform: translateX(-11.11%); }
    20.11% { transform: translateX(-11.11%); }
    22.22% { transform: translateX(-22.22%); }
    31.22% { transform: translateX(-22.22%); }
    33.33% { transform: translateX(-33.33%); }
    42.33% { transform: translateX(-33.33%); }
    44.44% { transform: translateX(-44.44%); }
    53.44% { transform: translateX(-44.44%); }
    55.55% { transform: translateX(-55.55%); }
    64.55% { transform: translateX(-55.55%); }
    66.66% { transform: translateX(-66.66%); }
    75.66% { transform: translateX(-66.66%); }
    77.77% { transform: translateX(-77.77%); }
    86.77% { transform: translateX(-77.77%); }
    88.89% { transform: translateX(-88.89%); }
    100% { transform: translateX(-88.89%); }
}

@media (prefers-reduced-motion: reduce) {
    .category-image--slideshow .category-slideshow-track {
        animation: none;
        transform: translateX(0);
    }
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-image img[src=""],
.category-image img:not([src]),
.product-image img[src=""],
.product-image img:not([src]) {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img[src=""]::after,
.category-image img:not([src])::after,
.product-image img[src=""]::after,
.product-image img:not([src])::after {
    content: "Image";
    color: #999;
    font-size: 14px;
}

.product-grid .product-item {
    cursor: pointer;
}

.product-grid .product-item:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
}

.product-grid .product-item .product-image {
    position: relative;
}

.product-grid .product-item .product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 73, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-grid .product-item .product-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(250, 250, 250, 0.9);
    background-color: rgba(250, 250, 250, 0.9);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cline x1='16.2' y1='16.2' x2='21' y2='21'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cline x1='16.2' y1='16.2' x2='21' y2='21'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: 76%;
    mask-size: 76%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.product-grid .product-item:hover .product-image::before,
.product-grid .product-item:hover .product-image::after {
    opacity: 1;
}

.product-grid .product-item:hover .product-image::after {
    transform: translate(-50%, -50%) scale(1);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 73, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.category-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(250, 250, 250, 0.9);
    background-color: rgba(250, 250, 250, 0.9);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cline x1='16.2' y1='16.2' x2='21' y2='21'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cline x1='16.2' y1='16.2' x2='21' y2='21'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: 76%;
    mask-size: 76%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.category-card:hover .category-image::before,
.category-card:hover .category-image::after {
    opacity: 1;
}

.category-card:hover .category-image::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Category card hover effects for about page */
a .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-blue);
    border-color: var(--border-gold);
}

a .category-card:hover .category-content h3 {
    color: var(--accent-gold-dark);
}

.category-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.category-content h3 a {
    color: inherit;
    text-decoration: none;
}

.category-card:hover .category-content h3 {
    color: var(--accent-gold-dark);
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-index-title {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.category-index-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px 18px;
    margin: 0 0 22px;
}

.category-index-subtitle {
    margin: 0 0 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.category-index {
    margin: 0;
    padding-left: 18px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.category-index li {
    margin-bottom: 6px;
}

.category-index a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.category-index a:hover,
.category-index a:focus-visible {
    color: var(--primary-color);
    border-bottom-color: var(--accent-gold);
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px var(--shadow-gold);
    margin-top: auto;
}

.btn-learn-more:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-gold);
}

.category-link {
    color: var(--accent-gold-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.category-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    border-bottom-width: 3px;
}

/* Intro Section (What We Do) */
.intro-section {
    padding: 100px 20px;
    background-color: var(--white);
    text-align: center;
}

.intro-section .container {
    max-width: 1000px;
}

.intro-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.intro-section p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-section p:first-of-type {
    margin-bottom: 12px;
}

.intro-section p:nth-of-type(2) {
    margin-bottom: 24px;
}

.intro-section p:nth-of-type(3) {
    margin-bottom: 20px;
}

.featured-section .location-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 24px;
}

/* Featured Section (Why Choose Us – alternates with What We Do for section flow) */
.featured-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.feature-item {
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px var(--shadow-blue);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-blue);
    border-top: 3px solid var(--accent-gold);
}

.featured-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.featured-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* CTA Section (Home and About) */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 28px;
    opacity: 0.95;
}
@media (max-width: 480px) {
    .cta-section {
        padding: 60px 20px;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-section ul li a::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--accent-gold);
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-section ul li a:hover {
    color: var(--accent-gold-light);
    padding-left: 5px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -12px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer .whatsapp-link {
    color: #25D366;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer .whatsapp-link:hover {
    color: #2ee66d;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}

.footer-bottom a:hover {
    color: var(--accent-gold-light);
    border-bottom-color: var(--accent-gold-light);
}

/* Social Links */
.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.social-link:hover {
    color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s;
}

.social-link .youtube-icon {
    width: 24px;
    height: 24px;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link span {
    font-size: 0.95rem;
}

/* Social link brand colors */
.social-link.linkedin-link {
    color: #0A66C2;
}
.social-link.linkedin-link:hover {
    color: #378fe9;
}
.social-link.linkedin-link svg {
    fill: #0A66C2;
}
.social-link.linkedin-link:hover svg {
    fill: #378fe9;
}

.social-link.youtube-link {
    color: #FF0000;
}
.social-link.youtube-link:hover {
    color: #ff3838;
}
.social-link.youtube-link svg {
    fill: #FF0000;
}
.social-link.youtube-link:hover svg {
    fill: #ff3838;
}

/* Page Header (for category and other pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px;
    background-color: var(--bg-light);
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb li {
    color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--accent-gold-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 1px;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
    border-bottom-width: 2px;
}

/* Content Section */
.content-section {
    padding: 60px 20px;
}

.content-section .container > p.intro-lead {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: center;
}

.content-section .container > p.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
}

/* Product Grid (for category pages) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-blue);
    border-color: var(--border-gold);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-light);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.product-item:hover .product-content h3 {
    color: var(--accent-gold-dark);
}

.product-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-link {
    display: inline-block;
    color: var(--accent-gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 2px;
}

.product-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    border-bottom-width: 3px;
    transform: translateX(3px);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

/* Contact info column */
.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 28px;
}

.contact-details-block {
    margin-bottom: 28px;
}

.contact-subheading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--border-gold);
}

.contact-dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    align-items: baseline;
}

.contact-dl dt {
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.contact-dl dd {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
}

.contact-whatsapp:hover {
    color: #1da851;
}

/* Contact form column */
.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-required {
    color: #c0392b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(149, 124, 61, 0.12);
}

.form-group input.field-invalid,
.form-group textarea.field-invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.field-error {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    color: #c0392b;
    min-height: 1em;
}

/* Submit button states */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 36px;
    background-color: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px var(--shadow-gold);
}

.btn-submit:hover:not(:disabled) {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-gold);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit .btn-loading { display: none; }
.btn-submit.loading .btn-text  { display: none; }
.btn-submit.loading .btn-loading { display: inline; }

.form-privacy-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form feedback messages */
.form-feedback {
    padding: 16px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-success {
    background: #edf7ed;
    border: 1px solid #7bc87b;
    color: #2e6b2e;
}

.form-error {
    background: #fdf0ef;
    border: 1px solid #e8a49e;
    color: #8b2017;
    margin-top: 12px;
}

/* Catalogue Items */
.catalogue-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.catalogue-thumbnail {
    transition: transform 0.3s;
}

.catalogue-item:hover .catalogue-thumbnail {
    transform: scale(1.02);
}

.catalogue-thumbnail img {
    transition: transform 0.3s;
}

.catalogue-item:hover .catalogue-thumbnail img {
    transform: scale(1.05);
}

.btn-download {
    background-color: var(--accent-gold) !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-gold);
}

.btn-download:hover {
    background-color: var(--accent-gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-gold);
}

.btn-download svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-contact-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.85rem;
    }

    .logo-image {
        height: 65px;
        max-width: 125px; /* Adjusted for larger logo */
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 95px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 15px 20px;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-light);
        display: none;
        margin-top: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-brand {
        font-size: 0.8rem;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    .hero-stats {
        margin-top: -30px;
        padding: 0 20px 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 24px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-image {
        height: 260px;
    }

    .category-index-groups {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .catalogue-item {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .catalogue-thumbnail {
        width: 100% !important;
        height: 250px !important;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

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

/* Product Detail Page Styles */
.product-detail-section {
    padding: 80px 20px 24px;
    background-color: var(--white);
}

/* Tight transition from product detail to Related Products */
.product-detail-section + .content-section {
    padding-top: 12px;
}

.product-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 60px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 30px;
}

.product-detail-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Main product layout - stacked: image first, then info */
.product-main-layout {
    display: block;
    margin-bottom: 32px;
}

.product-image-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-main-image-wrapper {
    width: 100%;
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-main-image-wrapper:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-main-image {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 4px;
    opacity: 1;
    transition: opacity 0.35s ease, transform 0.3s ease;
}

.product-main-image.is-fading {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .product-main-image {
        transition: none;
    }
}

.product-main-image-wrapper:hover .product-main-image {
    transform: scale(1.02);
}

.product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.product-thumbnail {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: var(--bg-light);
    padding: 8px;
}

.product-thumbnail:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.product-thumbnail.active {
    border-color: var(--accent-gold-dark);
}

.product-image-caption {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--accent-gold);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: left;
}

.product-thumbnail-wrapper {
    position: relative;
    flex-shrink: 0;
}

.product-thumbnail-wrapper .thumbnail-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 4px 6px;
    font-size: 0.75rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-thumbnail-wrapper:hover .thumbnail-caption {
    opacity: 1;
}

/* Dropdown keyboard focus: keep menu open while any child is focused (desktop) */
@media (min-width: 769px) {
    .dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown:focus-within .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Slideshow pause/play button */
.slideshow-pause-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.7rem;
    cursor: pointer;
    line-height: 1;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.slideshow-pause-btn:hover,
.slideshow-pause-btn:focus-visible {
    background: rgba(0, 0, 0, 0.7);
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    text-align: center;
    max-width: 80%;
}

/* Reset <button> defaults for lightbox controls */
.lightbox-close,
.lightbox-nav {
    border: none;
    font-family: inherit;
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.9);
}

.product-info-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-description {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin: 0;
}

.product-specs,
.product-features,
.product-applications {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-specs:last-child,
.product-features:last-child,
.product-applications:last-child {
    border-bottom: none;
}

.product-specs h3,
.product-features h3,
.product-applications h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-color);
    min-width: 140px;
}

.spec-value {
    color: var(--text-light);
    text-align: right;
    flex: 1;
}

.features-list,
.applications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li,
.applications-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    line-height: 1.7;
    border-bottom: 1px solid var(--bg-light);
}

.features-list li:last-child,
.applications-list li:last-child {
    border-bottom: none;
}

.features-list li::before,
.applications-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
}

.product-videos {
    margin-top: 60px;
    padding: 40px 0;
}

/* Tighter spacing when videos sit below thumbnails in the image column */
.product-image-column .product-videos {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    padding-bottom: 0;
}

.product-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.product-specs h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--bg-light);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-color);
    min-width: 140px;
}

.spec-value {
    color: var(--text-light);
    text-align: right;
    flex: 1;
}

.product-features {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: 0;
    margin-bottom: 0;
}

.product-features h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.features-list li {
    padding: 14px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    line-height: 1.7;
    border-bottom: 1px solid var(--bg-light);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
}

.product-variants {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: 0;
    margin-bottom: 0;
}

.product-variants h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.product-applications {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: 0;
    margin-bottom: 0;
}

.product-applications h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.applications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.applications-list li {
    padding: 14px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    line-height: 1.7;
    border-bottom: 1px solid var(--bg-light);
}

.applications-list li:last-child {
    border-bottom: none;
}

.applications-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
}

/* Product CTA Section */
.product-cta {
    padding: 32px 0 24px;
    margin-top: 8px;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-gold);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--shadow-gold);
}

/* Floating CTA (fixed in corner, visible while scrolling) */
.cta-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(0, 35, 73, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 35, 73, 0.3);
    color: var(--white);
}
.cta-float:focus {
    outline: 2px solid var(--accent-gold-light);
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .cta-float {
        bottom: 16px;
        right: 16px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.product-videos {
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 40px 0;
}


.video-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-link:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: translateX(5px);
}

.video-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: #FF0000;
}
.video-link:hover svg {
    fill: var(--white);
}

.related-products {
    margin-top: 12px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
}

.related-products h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.subcategory-section {
    margin-bottom: 80px;
    padding-top: 40px;
}

.subcategory-section:first-of-type {
    padding-top: 0;
}

.subcategory-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-gold);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.subcategory-section .subcategory-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 900px;
    opacity: 0.9;
}

.subcategory-section .product-grid {
    margin-top: 0;
}

@media (max-width: 968px) {
    .product-main-image-wrapper {
        min-height: 400px;
        padding: 30px;
    }
    
    .product-info-grid {
        gap: 30px;
    }
    
    .product-detail-header h1 {
        font-size: 2rem;
    }
    
    .product-cta {
        padding: 30px 0;
    }
    
    .btn-primary {
        padding: 14px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-brand {
        font-size: 0.75rem;
    }

    .hero-subheading {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .intro-section,
    .categories-section,
    .featured-section {
        padding: 40px 20px;
    }

    .category-content {
        padding: 20px;
    }
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
}

.clients-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.clients-reel {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto 20px;
    padding: 10px 0;
}

.clients-reel::before,
.clients-reel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, var(--bg-cream), transparent);
}

.clients-reel::after {
    right: 0;
    transform: rotate(180deg);
}

.clients-reel::before {
    left: 0;
}

.clients-reel-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
    width: max-content;
    animation: clients-reel 32s linear infinite;
}

.clients-reel-track > .client-logo {
    flex: 0 0 auto;
    min-width: 160px;
}

.client-logo {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 35, 73, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.client-logo.logo-dark {
    background: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.12);
}

.client-logo.logo-dark .client-name {
    color: var(--white);
}

.client-logo.logo-light {
    background: var(--bg-cream);
}

.client-logo.logo-light .client-name {
    color: var(--primary-color);
}

.client-logo-image.logo-darkmark {
    filter: brightness(0) saturate(100%);
}

@keyframes clients-reel {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-reel-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 35, 73, 0.12);
    border-color: var(--accent-gold);
}

.client-logo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.client-logo-image {
    width: 170px;
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.client-logo-image.logo-nmdc {
    width: 170px;
    max-height: 62px;
}

.client-logo-image.logo-center {
    display: block;
    margin: 0 auto;
    object-position: center;
}

.client-name {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 0.02em;
}

.clients-secondary-row {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 auto 35px;
    font-weight: 500;
}

.international-footprint {
    max-width: 1100px;
    margin: 0 auto 30px;
}

.international-footprint h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.world-map {
    position: relative;
    max-width: 980px;
    margin: 0 auto 30px;
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 35, 73, 0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: #eef3f8;
}

.world-map-svg svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-pins {
    position: absolute;
    inset: 0;
}

.map-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--accent-gold);
    border-radius: 999px;
    transform: translate(-50%, -120%);
    box-shadow: 0 0 0 4px rgba(149, 124, 61, 0.2);
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 12px;
    background: var(--accent-gold);
    transform: translateX(-50%);
    border-radius: 999px;
}

.map-pin::before {
    content: attr(data-label);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%, -100%);
    background: rgba(0, 35, 73, 0.85);
    color: var(--white);
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.map-pin:hover::before {
    opacity: 1;
}

.clients-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .clients-reel::before,
    .clients-reel::after {
        width: 50px;
    }

    .clients-reel-track {
        animation-duration: 22s;
    }

    .international-footprint {
        margin-bottom: 24px;
    }

    .international-footprint h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .world-map {
        margin-bottom: 22px;
    }

    .map-pin {
        width: 12px;
        height: 12px;
        box-shadow: 0 0 0 3px rgba(149, 124, 61, 0.25);
    }

    .map-pin::before {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 20px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(149, 124, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(149, 124, 61, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.testimonial-quote {
    margin-bottom: 25px;
}

.quote-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    opacity: 0.7;
}

.testimonial-quote p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.75;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    color: var(--accent-gold-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
}

.certifications-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.certification-badge {
    text-align: center;
    padding: 35px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 35, 73, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certification-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 35, 73, 0.12);
    border-color: var(--accent-gold);
}

.cert-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    color: var(--accent-gold-light);
}

.cert-icon svg {
    width: 100%;
    height: 100%;
}

.cert-icon.award-icon {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--white);
}

.certification-badge h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.certification-badge p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .clients-section h2,
    .testimonials-section h2,
    .certifications-section h2 {
        font-size: 2rem;
    }
}

/* Share button */
.product-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    background: #1f73ff;
    border: 1px solid #1458d8;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    min-width: 48px;
    min-height: 48px;
    box-shadow: 0 8px 20px rgba(31, 115, 255, 0.18);
    transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.product-share-btn:hover {
    background: #1458d8;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(31, 115, 255, 0.26);
}

.product-share-btn svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    stroke: currentColor;
    fill: none;
}

.product-share-btn svg path,
.product-share-btn svg circle,
.product-share-btn svg line {
    stroke: currentColor;
}

.sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

/* Share modal */
#share-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#share-modal .share-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

#share-modal .share-panel {
    position: relative;
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    min-width: 260px;
    max-width: 94%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

#share-modal .share-panel h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

#share-modal .share-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#share-modal .share-option {
    flex: 1 1 45%;
    padding: 8px;
    border-radius: 6px;
    background: #f7f7f7;
    border: 1px solid #e6e6e6;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s ease;
}

#share-modal .share-option:hover {
    background: #e8e8e8;
}

#share-modal .share-option:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

#share-modal .share-close {
    position: absolute;
    right: 8px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

/* Cookie consent banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #f0f0f0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 10000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

.cookie-banner-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 300px;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s ease;
}

.cookie-btn-accept {
    background: #1f73ff;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: #1458d8;
}

.cookie-btn-decline {
    background: transparent;
    color: #f0f0f0;
    border: 1px solid rgba(240, 240, 240, 0.4);
}

.cookie-btn-decline:hover {
    background: rgba(240, 240, 240, 0.1);
}

/* Award cards hover (about page) */
.award-card:hover {
    box-shadow: 0 16px 34px rgba(0, 35, 73, 0.16);
    transform: translateY(-5px);
}

