    :root {
        --rhino-orange: #c57229;
        --rhino-orange-dark: #b56624;
        --bg-dark-1: #0f0f0f;
        --bg-dark-2: #141414;
        --bg-dark-3: #1a1a1a;
        --bg-dark-4: #222222;
        --text-gray: #8a8a8a;
        --text-gray-light: #b0b0b0;
        --rhino-font-heading: 'Orbitron', sans-serif;
        --rhino-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        
        /* Legacy variables for compatibility */
        --rhino-primary-orange: #c7782b;
        --rhino-dark-bg: #0a0a0a;
        --rhino-card-bg: #141414;
        --rhino-text-light: #f5f5f5;
        --rhino-text-grey: #a0a0a0;
    }

    /* Override Bootstrap and Theme defaults for a more modern, dark look */
    body {
        background-color: var(--bg-dark-1);
        color: #ffffff;
        font-family: var(--rhino-font-body);
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--rhino-font-heading) !important;
        font-weight: 700 !important;
        color: #ffffff;
    }
    
    .text-primary {
        color: var(--rhino-orange) !important;
    }
    
    .text-rhino {
        color: var(--rhino-orange);
    }
    
    .text-muted-custom {
        color: var(--text-gray);
    }
    
    /* V2 Design Specific Styles */
    .section-title {
        font-family: var(--rhino-font-heading);
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        letter-spacing: -0.05em;
        color: #ffffff;
    }
    
    .section-title-compact {
        font-family: var(--rhino-font-heading);
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 900;
        letter-spacing: -0.03em;
        line-height: 1.2;
        color: #ffffff;
    }
    
    .section-title-compact .product-type {
        display: inline-block;
        margin-right: 0.5em;
    }
    
    .section-title-compact .product-type:after {
        content: "·";
        margin-left: 0.5em;
        color: var(--rhino-orange);
        font-weight: 400;
    }
    
    .section-title-compact .product-type:last-child:after {
        display: none;
    }
    
    @media (max-width: 768px) {
        .section-title-compact .product-type {
            display: block;
            margin-right: 0;
            margin-bottom: 0.25em;
        }
        
        .section-title-compact .product-type:after {
            display: none;
        }
    }
    
    .product-card {
        background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(20, 20, 20, 0.9));
        border: 1px solid var(--bg-dark-4);
        border-radius: 0.5rem;
        overflow: hidden;
        transition: all 0.5s;
        height: 100%;
    }
    
    .product-card:hover {
        border-color: rgba(197, 114, 41, 0.6);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        transform: translateY(-5px);
    }
    
    .product-img-wrapper {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    
    .product-img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        transition: transform 0.7s;
    }
    
    .product-card:hover .product-img {
        transform: scale(1.1);
    }

    .sound-deadening-callout {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(16, 16, 16, 0.98));
        border: 1px solid var(--bg-dark-4);
        transition: border-color 0.3s, box-shadow 0.3s;
    }

    .sound-deadening-callout:hover {
        border-color: rgba(197, 114, 41, 0.45);
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
    }

    .sd-profile-panel {
        background: var(--bg-dark-3);
        border: 1px solid var(--bg-dark-4);
        border-radius: 0.375rem;
        padding: 0.75rem;
        min-height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sd-profile-panel img {
        max-width: 100%;
        max-height: 220px;
        width: auto;
        height: auto;
        -o-object-fit: contain;
           object-fit: contain;
    }

    .sound-deadening-callout .sd-callout-copy {
        border-bottom: 1px solid var(--bg-dark-4);
    }

    @media (min-width: 992px) {
        .sound-deadening-callout .sd-callout-copy {
            border-bottom: none;
            border-right: 1px solid var(--bg-dark-4);
        }
    }

    .sd-solves-blurb {
        margin: 0;
        margin-top: 1rem;
        padding: 1rem 0.75rem 0.25rem;
        text-align: center;
        line-height: 1.55;
        color: var(--text-gray);
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        border-top: 1px solid var(--bg-dark-4);
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
    }

    @media (min-width: 576px) {
        .sd-solves-blurb {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }

    @media (min-width: 992px) {
        .sd-solves-blurb {
            margin-top: 1.25rem;
            padding-bottom: 0.5rem;
        }
    }
    
    .product-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(to top, var(--bg-dark-2), transparent);
    }
    
    .badge-usa {
        font-family: var(--rhino-font-heading);
        position: absolute;
        top: 1rem;
        right: 1rem;
        background-color: var(--rhino-orange);
        color: var(--bg-dark-1);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.25rem 0.75rem;
        border-radius: 0.25rem;
    }
    
    .product-price {
        font-family: var(--rhino-font-heading);
        font-size: 1.75rem;
        font-weight: 900;
        color: var(--rhino-orange);
        margin-bottom: 0.5rem;
    }
    
    .product-price-label {
        font-size: 0.75rem;
        color: var(--text-gray);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
    
    .btn-buy-now {
        font-family: var(--rhino-font-heading);
        background-color: var(--rhino-orange);
        color: var(--bg-dark-1);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 0.875rem 1.5rem;
        border: none;
        border-radius: 0.25rem;
        transition: all 0.3s;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-buy-now:hover {
        background-color: var(--rhino-orange-dark);
        color: var(--bg-dark-1);
        box-shadow: 0 4px 15px rgba(197, 114, 41, 0.5);
        transform: translateY(-2px);
    }
    
    .btn-learn-more {
        font-family: var(--rhino-font-heading);
        background-color: transparent;
        color: var(--text-gray-light);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 0.875rem 1.5rem;
        border: 1px solid var(--bg-dark-4);
        border-radius: 0.25rem;
        transition: all 0.3s;
        width: 100%;
        font-size: 0.875rem;
    }
    
    .btn-learn-more:hover {
        border-color: rgba(197, 114, 41, 0.5);
        color: #ffffff;
    }
    
    .btn-rhino {
        font-family: var(--rhino-font-heading);
        background-color: var(--rhino-orange);
        color: var(--bg-dark-1);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 1.25rem 2.5rem;
        border: none;
        border-radius: 0.375rem;
        transition: all 0.3s;
        font-size: 1.1rem;
        box-shadow: 0 4px 20px rgba(197, 114, 41, 0.4);
    }
    
    .btn-rhino:hover {
        background-color: var(--rhino-orange-dark);
        color: var(--bg-dark-1);
        box-shadow: 0 8px 30px rgba(197, 114, 41, 0.6);
        transform: translateY(-2px);
    }
    
    .btn-outline-light-custom {
        font-family: var(--rhino-font-heading);
        background-color: rgba(255, 255, 255, 0.1);
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
        color: #ffffff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 1.25rem 2.5rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 0.375rem;
        transition: all 0.3s;
        font-size: 1.1rem;
    }
    
    .btn-outline-light-custom:hover {
        border-color: rgba(255, 255, 255, 0.5);
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
    
    .why-rhino-bg {
        background: linear-gradient(to bottom, var(--bg-dark-1), var(--bg-dark-2));
    }
    
    .innovation-section {
        background: linear-gradient(to bottom, var(--bg-dark-2), var(--bg-dark-1));
        position: relative;
    }
    
    .timeline-item {
        position: relative;
        padding-left: 2rem;
        padding-bottom: 2rem;
        border-left: 2px solid var(--bg-dark-4);
    }
    
    .timeline-item:last-child {
        border-left: 2px solid transparent;
    }
    
    .timeline-dot {
        position: absolute;
        left: -9px;
        top: 0;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: var(--rhino-orange);
        border: 3px solid var(--bg-dark-2);
        box-shadow: 0 0 10px rgba(197, 114, 41, 0.5);
    }
    
    .timeline-date {
        font-family: var(--rhino-font-heading);
        font-size: 1rem;
        font-weight: 700;
        color: var(--rhino-orange);
        margin-bottom: 0.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content p {
        color: var(--text-gray);
        font-size: 0.9rem;
        margin: 0;
    }
    
    .axion-video-section {
        background: linear-gradient(to bottom, var(--bg-dark-1), var(--bg-dark-2));
        position: relative;
        overflow: hidden;
    }
    
    .video-container-wrapper {
        border-radius: 0.5rem;
        overflow: hidden;
        border: 2px solid var(--bg-dark-4);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        position: relative;
        background-color: #000;
        transition: all 0.5s;
    }
    
    .video-container-wrapper:hover {
        border-color: rgba(197, 114, 41, 0.5);
        box-shadow: 0 25px 70px rgba(197, 114, 41, 0.3);
    }
    
    .video-container {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
    }
    
    #axion-video-player {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .video-caption {
        color: var(--text-gray);
        font-size: 0.875rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    .video-controls {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .video-control-item {
        background-color: rgba(26, 26, 26, 0.8);
        border: 1px solid var(--bg-dark-4);
        border-radius: 0.375rem;
        padding: 1rem;
        cursor: pointer;
        transition: all 0.3s;
        text-align: left;
        color: #ffffff;
    }
    
    .video-control-item:hover {
        background-color: rgba(26, 26, 26, 0.95);
        border-color: rgba(197, 114, 41, 0.5);
        transform: translateX(5px);
    }
    
    .video-control-item.active {
        background: linear-gradient(135deg, rgba(197, 114, 41, 0.2), rgba(197, 114, 41, 0.1));
        border-color: var(--rhino-orange);
        box-shadow: 0 4px 15px rgba(197, 114, 41, 0.3);
    }
    
    .video-control-title {
        font-family: var(--rhino-font-heading);
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .video-control-title i {
        color: var(--rhino-orange);
    }
    
    .video-control-item.active .video-control-title {
        color: var(--rhino-orange);
    }
    
    .video-control-desc {
        color: var(--text-gray);
        font-size: 0.875rem;
        margin: 0;
    }
    
    .video-control-item.active .video-control-desc {
        color: var(--text-gray-light);
    }
    
    .rhinolink-section {
        background: linear-gradient(135deg, var(--bg-dark-1), var(--bg-dark-3), var(--bg-dark-1));
        position: relative;
        overflow: hidden;
    }
    
    .rhinolink-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse at 30% 30%, rgba(197, 114, 41, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 70%, rgba(197, 114, 41, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .rhinolink-img-main {
        background-color: var(--bg-dark-3);
        border: 2px solid var(--bg-dark-4);
        border-radius: 0.5rem;
        overflow: hidden;
        transition: all 0.5s;
    }
    
    .rhinolink-img-main:hover {
        border-color: rgba(197, 114, 41, 0.6);
        box-shadow: 0 10px 30px rgba(197, 114, 41, 0.2);
    }
    
    .rhinolink-badge {
        font-family: var(--rhino-font-heading);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, rgba(197, 114, 41, 0.2), rgba(197, 114, 41, 0.1));
        border: 2px solid var(--rhino-orange);
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        font-weight: 700;
        font-size: 0.875rem;
        color: var(--rhino-orange);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 15px rgba(197, 114, 41, 0.2);
    }
    
    .metric-card {
        background-color: var(--bg-dark-3);
        border: 1px solid var(--bg-dark-4);
        border-radius: 0.375rem;
        padding: 1.25rem;
        transition: all 0.3s;
    }
    
    .metric-card:hover {
        border-color: rgba(197, 114, 41, 0.5);
        transform: translateY(-3px);
    }
    
    .metric-value {
        font-family: var(--rhino-font-heading);
        font-size: 1.75rem;
        font-weight: 900;
        color: var(--rhino-orange);
        line-height: 1;
    }
    
    .metric-label {
        color: var(--text-gray);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .stat-value {
        font-family: var(--rhino-font-heading);
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--rhino-orange);
    }
    
    .led-accent {
        height: 4px;
        background: linear-gradient(to right, transparent, var(--rhino-orange), transparent);
    }
    
    /* Footer Styles */
    footer {
        background-color: var(--bg-dark-2) !important;
        border-top: 1px solid var(--bg-dark-4);
        color: #ffffff;
    }
    
    footer .container,
    footer .row,
    footer .col,
    footer [class*="col-"] {
        background-color: transparent !important;
    }
    
    footer .form-control {
        background-color: var(--bg-dark-3) !important;
        border: 1px solid var(--bg-dark-4) !important;
        color: #ffffff !important;
    }
    
    footer .form-control::-moz-placeholder {
        color: var(--text-gray) !important;
    }
    
    footer .form-control::placeholder {
        color: var(--text-gray) !important;
    }
    
    footer .form-control:focus {
        background-color: var(--bg-dark-3) !important;
        border-color: var(--rhino-orange) !important;
        color: #ffffff !important;
        box-shadow: 0 0 0 0.25rem rgba(197, 114, 41, 0.25) !important;
    }
    
    footer .border-bottom,
    footer .border-top {
        border-color: var(--bg-dark-4) !important;
    }
    
    .footer-title {
        font-family: var(--rhino-font-heading);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .social-icon {
        padding: 0.5rem;
        background-color: var(--bg-dark-3);
        border-radius: 0.25rem;
        color: var(--text-gray);
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-icon:hover {
        background-color: var(--bg-dark-4);
        color: #ffffff;
    }
    
    .footer-link {
        color: var(--text-gray);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.3s;
    }
    
    .footer-link:hover {
        color: #ffffff;
    }

    /* Modern Button Styles - matching login/register pages */
    .btn-primary {
        background: linear-gradient(135deg, var(--rhino-primary-orange) 0%, #d96d00 100%);
        border: none;
        border-radius: 50px;
        padding: 12px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(240, 124, 0, 0.3);
        position: relative;
        overflow: hidden;
        text-decoration: none;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover, .btn-primary:focus {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(240, 124, 0, 0.4);
        color: white;
        text-decoration: none;
    }
    
    .btn-outline-light {
        background: var(--rhino-text-grey);
        border: none;
        border-radius: 50px;
        padding: 12px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(160, 160, 160, 0.3);
        position: relative;
        overflow: hidden;
        text-decoration: none;
    }

    .btn-outline-light::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s;
    }

    .btn-outline-light:hover::before {
        left: 100%;
    }

    .btn-outline-light:hover {
        background: var(--rhino-primary-orange);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(240, 124, 0, 0.4);
        color: white;
        text-decoration: none;
    }

    /* Hero Section - Conversion Focused */
    .hero-section {
        height: 100vh;
        min-height: 600px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        z-index: 0;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), var(--bg-dark-1));
        z-index: 1;
    }
    
    /* Override rhino-premium-theme.css: .hero-content has padding-right: 3rem there, which off-centers this layout */
    .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        padding-right: 0;
    }
    
    .hero-title {
        font-family: var(--rhino-font-heading);
        font-size: clamp(2.5rem, 7vw, 5.5rem);
        font-weight: 900;
        letter-spacing: -0.05em;
        line-height: 0.95;
        margin-bottom: 1.5rem;
    }
    
    .hero-location-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-family: var(--rhino-font-heading);
        font-weight: 600;
        font-size: 0.875rem;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .hero-location-badge i {
        color: var(--rhino-orange);
        font-size: 1rem;
    }
    
    .hero-subtitle {
        line-height: 1.6;
    }
    
    .hero-trust-badges {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    
    .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        font-size: 0.875rem;
        color: #ffffff;
    }
    
    .trust-badge i {
        color: var(--rhino-orange);
        font-size: 1rem;
        display: inline-block;
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: clamp(2rem, 8vw, 3.5rem);
        }
        
        .hero-location-badge {
            font-size: 0.75rem;
            padding: 0.4rem 1rem;
        }
        
        .hero-trust-badges {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-rhino, .btn-outline-light-custom {
            padding: 1rem 2rem;
            font-size: 1rem;
            width: 100%;
            margin-bottom: 0.75rem;
        }
    }

    /* Shared Section Styling */
    .content-section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .section-subtitle {
        color: var(--rhino-text-grey);
        margin-bottom: 3rem;
    }

    /* The Rhino Difference Section */
    .rhino-difference-section {
        background-color: var(--rhino-dark-bg);
    }
    .feature-card {
        background: linear-gradient(135deg, var(--rhino-card-bg) 0%, var(--rhino-dark-bg-secondary) 100%);
        border: 1px solid #2a2a2a;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--rhino-primary-orange) 0%, transparent 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border-color: var(--rhino-primary-orange);
    }
    .feature-card:hover::before {
        transform: scaleX(1);
    }
    .feature-card-label {
        font-family: var(--rhino-font-body);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--rhino-primary-orange);
        margin-bottom: 1rem;
        display: block;
    }
    .feature-icon {
        font-size: 3rem;
        color: var(--rhino-primary-orange);
        margin-bottom: 1rem;
    }
    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .feature-card p {
        color: var(--rhino-text-grey);
    }

    /* Our Story Section */
    .our-story-section {
        background-color: var(--rhino-card-bg);
    }
    .our-story-section img {
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    }

    /* BESPOKE ENGINEERING SECTION */
    .bespoke-engineering-section {
        background-color: var(--rhino-dark-bg);
    }
    .bespoke-engineering-section .feature-card img {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* Axion vs Competition Section */
    .axion-promo-section {
        background-color: var(--rhino-dark-bg);
    }
    .comparison-container {
        background-color: var(--rhino-card-bg);
        border-radius: 15px;
        padding: 2rem;
        border: 1px solid #2a2a2a;
    }
    .comparison-card {
        text-align: center;
        padding: 1rem;
    }
    .comparison-card img {
        max-width: 150px;
        margin-bottom: 1.5rem;
        height: 150px;
        -o-object-fit: contain;
           object-fit: contain;
    }
    .comparison-card h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    .comparison-list {
        list-style: none;
        padding: 0;
        text-align: left;
        max-width: 320px;
        margin: 0 auto;
    }
    .comparison-list li {
        margin-bottom: 0.75rem;
        display: flex;
        align-items: flex-start;
        font-size: 0.95rem;
    }
    .comparison-list .bi {
        margin-right: 0.75rem;
        margin-top: 5px;
        flex-shrink: 0;
    }
    .rhino-card .bi-check-circle-fill {
        color: var(--rhino-primary-orange);
    }
    .competition-card .bi-x-circle-fill {
        color: #8a2a2a;
    }
    .vs-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    .vs-circle {
        width: 60px;
        height: 60px;
        background-color: var(--rhino-primary-orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        border: 4px solid var(--rhino-dark-bg);
        box-shadow: 0 0 15px rgba(240, 124, 0, 0.4);
    }
    @media (max-width: 991px) {
        .vs-divider {
            margin: 2rem 0;
            transform: rotate(90deg);
        }
    }
    .promo-footer {
        border-top: 1px solid #2a2a2a;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    /* Axion Marketing Video Showcase */
    .axion-video-showcase-marketing {
        background-color: var(--rhino-dark-bg);
        border-bottom: 1px solid #2a2a2a;
    }
    .video-container-wrapper-marketing {
        border-radius: 15px;
        overflow: hidden;
        border: 2px solid #2a2a2a;
        box-shadow: 0 10px 40px rgba(0,0,0,0.4);
        position: relative;
        background-color: #000;
    }
    .video-container-marketing {
        position: relative;
        width: 100%;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
    }
    #axion-homepage-video-player {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
    }
    .video-caption-marketing {
        color: var(--rhino-text-grey);
        font-size: 0.9rem;
    }
    .video-controls-marketing .list-group-item {
        background-color: var(--rhino-card-bg);
        border: 1px solid #2a2a2a;
        color: var(--rhino-text-light);
        margin-bottom: 0.5rem;
        border-radius: 10px !important;
        transition: all 0.3s ease;
    }
    .video-controls-marketing .list-group-item:hover {
        background-color: #252525;
        transform: translateX(5px);
    }
    .video-controls-marketing .list-group-item.active {
        background-color: var(--rhino-primary-orange);
        border-color: var(--rhino-primary-orange);
        color: #fff;
        box-shadow: 0 4px 15px rgba(240, 124, 0, 0.3);
    }
    .video-controls-marketing .list-group-item.active .bi {
        color: #fff !important;
    }
    .video-controls-marketing h5 {
        font-weight: 600 !important;
        font-family: 'Poppins', sans-serif !important;
    }
    .video-controls-marketing p {
        font-size: 0.9rem;
        color: var(--rhino-text-grey);
        margin-bottom: 0 !important;
    }
    .video-controls-marketing .list-group-item.active p {
        color: rgba(255,255,255,0.8);
    }

    /* Re-styled Product Sections */
    .product-showcase {
        background-color: var(--rhino-dark-bg);
        padding: 80px 0;
    }
    .product-showcase .img-border {
        border-radius: 15px;
        border: 1px solid #2a2a2a;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .product-showcase .order-lg-1 h1 {
        font-size: 3rem;
    }

    /* History Timeline Teaser */
    .history-teaser {
        background: linear-gradient(to bottom, var(--rhino-card-bg) 0%, var(--rhino-dark-bg) 100%);
    }
    .timeline-item {
        position: relative;
        padding-bottom: 2rem;
        padding-left: 2rem;
        border-left: 2px solid #2a2a2a;
    }
    .timeline-item:last-child {
        border-left: 2px solid transparent;
    }
    .timeline-dot {
        position: absolute;
        left: -9px;
        top: 0;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: var(--rhino-primary-orange);
        border: 3px solid var(--rhino-dark-bg);
    }
    .timeline-date {
        font-family: 'Orbitron', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--rhino-primary-orange);
    }
    .timeline-content h4 {
        margin-bottom: 0.5rem;
    }
    .timeline-content p {
        color: var(--rhino-text-grey);
    }

    /* CTA Section */
    .cta-section {
        background-color: var(--rhino-dark-bg);
    }
    .cta-box {
        background: url('/imgs/parallax/background.png') no-repeat center center;
        background-size: cover;
        padding: 4rem;
        border-radius: 15px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-box .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(16, 16, 16, 0.7);
        z-index: 1;
    }
    .cta-box .container {
        position: relative;
        z-index: 2;
    }

    /* Blog Teaser */
    .blog-teaser-section {
        background-color: var(--rhino-card-bg);
    }
    .blog-post-card {
        background-color: var(--rhino-dark-bg);
        border: 1px solid #2a2a2a;
        border-radius: 15px;
        overflow: hidden;
        height: 100%;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
    }
    .blog-post-card:hover {
        transform: translateY(-5px);
        border-color: var(--rhino-primary-orange);
    }
    .blog-post-card .card-meta {
        padding: 1.5rem;
        color: var(--rhino-text-grey);
    }
     .blog-post-card .card-meta .post-date {
        font-size: 0.9rem;
    }
     .blog-post-card .card-title {
        color: var(--rhino-text-light);
        font-size: 1.25rem;
        line-height: 1.4;
    }

    /* Responsive button adjustments */
    @media (max-width: 576px) {
        .btn-primary,
        .btn-outline-light {
            padding: 0.875rem 1.5rem;
            font-size: 1rem;
        }
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
        /* Section Padding */
        .content-section {
            padding: 50px 0;
        }
        
        /* Section Titles */
        .section-title {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        
        .section-subtitle {
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        
        /* Hero Section */
        .hero h1 {
            font-size: clamp(1.75rem, 5vw, 3rem);
        }
        
        .hero p.lead {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
        }
        
        /* Video Showcase */
        .axion-video-showcase-marketing {
            padding: 40px 0;
        }
        
        .video-container-wrapper-marketing {
            margin-bottom: 1.5rem;
        }
        
        .video-controls-marketing .list-group-item {
            font-size: 0.85rem;
            padding: 0.75rem 1rem;
        }
        
        .video-controls-marketing h5 {
            font-size: 0.95rem;
        }
        
        /* Feature Cards */
        .feature-card {
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .feature-card h3 {
            font-size: 1.25rem;
        }
        
        .feature-icon {
            font-size: 2.5rem;
        }
        
        /* Comparison Cards */
        .comparison-container {
            padding: 1.5rem;
        }
        
        .comparison-card h3 {
            font-size: 1.5rem;
        }
        
        .comparison-list {
            max-width: 100%;
            font-size: 0.9rem;
        }
        
        /* Product Showcase */
        .product-showcase {
            padding: 50px 0;
        }
        
        .product-showcase .order-lg-1 h1 {
            font-size: 2rem;
        }
        
        /* CTA Box */
        .cta-box {
            padding: 2.5rem 1.5rem;
        }
        
        .cta-box h3 {
            font-size: 1.5rem;
        }
        
        /* Timeline */
        .timeline-item {
            padding-left: 1.5rem;
        }
        
        .timeline-date {
            font-size: 1rem;
        }
        
        /* Blog Cards */
        .blog-post-card .card-title {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 576px) {
        /* Extra Small Mobile */
        .content-section {
            padding: 40px 0;
        }
        
        .section-title {
            font-size: 1.75rem;
        }
        
        .section-subtitle {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        /* Hero Adjustments */
        .hero h1 {
            font-size: clamp(1.5rem, 6vw, 2.5rem);
            line-height: 1.3;
        }
        
        /* Buttons */
        .btn-primary,
        .btn-outline-light {
            padding: 0.75rem 1.25rem;
            font-size: 0.9rem;
            width: 100%;
            margin-bottom: 0.5rem;
        }
        
        .hero-actions {
            flex-direction: column;
        }
        
        .hero-actions .btn {
            width: 100%;
            margin-bottom: 0.75rem;
        }
        
        /* Video Showcase Mobile */
        .axion-video-showcase-marketing {
            padding: 30px 0;
        }
        
        .video-controls-marketing {
            margin-top: 1.5rem;
        }
        
        .video-controls-marketing .list-group-item {
            padding: 0.6rem 0.75rem;
            font-size: 0.8rem;
        }
        
        .video-controls-marketing h5 {
            font-size: 0.85rem;
        }
        
        .video-caption-marketing {
            font-size: 0.8rem;
            padding: 0 1rem;
        }
        
        /* Feature Cards */
        .feature-card {
            padding: 1.25rem;
        }
        
        .feature-card h3 {
            font-size: 1.1rem;
        }
        
        .feature-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        
        /* Comparison Mobile */
        .comparison-container {
            padding: 1rem;
        }
        
        .comparison-card {
            padding: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .comparison-card img {
            max-width: 120px;
            height: 120px;
        }
        
        .comparison-card h3 {
            font-size: 1.25rem;
        }
        
        .comparison-list {
            font-size: 0.85rem;
        }
        
        .vs-circle {
            width: 50px;
            height: 50px;
            font-size: 1.25rem;
        }
        
        /* Product Showcase Mobile */
        .product-showcase {
            padding: 40px 0;
        }
        
        .product-showcase .order-lg-1 h1 {
            font-size: 1.75rem;
            line-height: 1.3;
        }
        
        .product-showcase .img-border {
            margin-bottom: 1.5rem;
        }
        
        /* CTA Mobile */
        .cta-box {
            padding: 2rem 1rem;
        }
        
        .cta-box h3 {
            font-size: 1.25rem;
        }
        
        .cta-box .section-subtitle {
            font-size: 0.85rem;
        }
        
        /* Timeline Mobile */
        .timeline-item {
            padding-left: 1.25rem;
            padding-bottom: 1.5rem;
        }
        
        .timeline-dot {
            width: 12px;
            height: 12px;
            left: -8px;
        }
        
        .timeline-date {
            font-size: 0.9rem;
        }
        
        .timeline-content h4 {
            font-size: 1.1rem;
        }
        
        /* Blog Cards Mobile */
        .blog-post-card .card-title {
            font-size: 1rem;
        }
        
        /* Build System Strip Mobile */
        .build-system-strip {
            padding: 1rem 0;
        }
        
        .build-system-label {
            display: block;
            margin-bottom: 0.75rem;
            text-align: center;
        }
        
        .build-system-buttons {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .btn-pill {
            width: 100%;
            text-align: center;
        }
        
        /* CTA Below Video Mobile */
        .axion-video-showcase-marketing .cta-box {
            padding: 1.5rem 1rem;
            margin-top: 1.5rem;
        }
        
        .axion-video-showcase-marketing .cta-box h3 {
            font-size: 1.25rem;
        }
        
        .axion-video-showcase-marketing .cta-box p {
            font-size: 0.85rem;
        }
        
        /* Spacing adjustments */
        .mt-5 {
            margin-top: 2rem !important;
        }
        
        .mb-5 {
            margin-bottom: 2rem !important;
        }
        
        .py-5 {
            padding-top: 2rem !important;
            padding-bottom: 2rem !important;
        }
    }
    
    /* Landscape Mobile Optimization */
    @media (max-width: 768px) and (orientation: landscape) {
        .content-section {
            padding: 40px 0;
        }
        
        .hero {
            min-height: 100vh;
        }
    }
    
    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure video containers are responsive */
    video {
        max-width: 100%;
        height: auto;
    }

    /* ============================================
       RHINOLINK COMING SOON SECTION
       ============================================ */
    .rhinolink-promo {
        position: relative;
        padding: 100px 0;
        overflow: hidden;
        background: linear-gradient(135deg, #0a0a0f 0%, #13131a 50%, #0a0a0f 100%);
    }

    .rhinolink-promo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse at 20% 20%, rgba(197, 114, 41, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 80%, rgba(224, 138, 77, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 50%, rgba(233, 168, 92, 0.05) 0%, transparent 60%);
        z-index: 0;
    }

    .rhinolink-promo .rl-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
        animation: rl-float 8s ease-in-out infinite;
    }

    .rhinolink-promo .rl-glow-1 {
        width: 400px;
        height: 400px;
        background: rgba(197, 114, 41, 0.25);
        top: -100px;
        right: -50px;
    }

    .rhinolink-promo .rl-glow-2 {
        width: 350px;
        height: 350px;
        background: rgba(224, 138, 77, 0.2);
        bottom: -100px;
        left: -50px;
        animation-delay: -4s;
    }

    @keyframes rl-float {
        0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
        50% { transform: translateY(20px) scale(1.05); opacity: 0.8; }
    }

    .rl-coming-soon-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.5rem;
        background: linear-gradient(135deg, rgba(197, 114, 41, 0.2), rgba(224, 138, 77, 0.2));
        border: 2px solid rgba(197, 114, 41, 0.5);
        border-radius: 100px;
        font-size: 0.9rem;
        font-weight: 700;
        color: #e9a85c;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        animation: rl-pulse-border 2s ease-in-out infinite;
    }

    @keyframes rl-pulse-border {
        0%, 100% { border-color: rgba(197, 114, 41, 0.5); box-shadow: 0 0 20px rgba(197, 114, 41, 0.2); }
        50% { border-color: rgba(233, 168, 92, 0.7); box-shadow: 0 0 30px rgba(233, 168, 92, 0.3); }
    }

    .rl-promo-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700 !important;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: #fff;
    }

    .rl-promo-title .rl-gradient {
        background: linear-gradient(135deg, #c57229, #e08a4d, #e9a85c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .rl-promo-subtitle {
        font-size: 1.15rem;
        color: #a0a0b0;
        max-width: 550px;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    /* Stats Grid */
    .rl-stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .rl-stat-item {
        text-align: center;
        padding: 1.5rem 1rem;
        background: rgba(19, 19, 26, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .rl-stat-item:hover {
        border-color: rgba(197, 114, 41, 0.4);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .rl-stat-number {
        font-family: 'Orbitron', sans-serif;
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 700;
        background: linear-gradient(135deg, #c57229, #e9a85c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .rl-stat-label {
        font-size: 0.8rem;
        color: #a0a0b0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Feature Pills */
    .rl-feature-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .rl-feature-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        background: rgba(26, 26, 36, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        font-size: 0.85rem;
        color: #e0e0e0;
        transition: all 0.3s ease;
    }

    .rl-feature-pill:hover {
        border-color: rgba(197, 114, 41, 0.5);
        background: rgba(197, 114, 41, 0.1);
    }

    .rl-feature-pill i {
        color: #e9a85c;
    }

    /* Newsletter Form */
    .rl-newsletter-form {
        max-width: 500px;
    }

    .rl-newsletter-wrapper {
        display: flex;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .rl-newsletter-input {
        flex: 1;
        padding: 1rem 1.5rem;
        background: rgba(26, 26, 36, 0.9);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .rl-newsletter-input::-moz-placeholder {
        color: #6b7280;
    }

    .rl-newsletter-input::placeholder {
        color: #6b7280;
    }

    .rl-newsletter-input:focus {
        outline: none;
        border-color: #c57229;
        box-shadow: 0 0 20px rgba(197, 114, 41, 0.2);
    }

    .rl-newsletter-btn {
        padding: 1rem 2rem;
        background: linear-gradient(135deg, #c57229, #e08a4d);
        border: none;
        border-radius: 50px;
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(197, 114, 41, 0.35);
        white-space: nowrap;
    }

    .rl-newsletter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(197, 114, 41, 0.5);
    }

    .rl-newsletter-note {
        font-size: 0.85rem;
        color: #6b7280;
    }

    .rl-newsletter-note i {
        color: #10b981;
        margin-right: 0.5rem;
    }

    /* Product Visual */
    .rl-product-visual {
        position: relative;
    }

    .rl-product-card {
        background: linear-gradient(145deg, rgba(26, 26, 36, 0.9), rgba(19, 19, 26, 0.9));
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 32px;
        padding: 2rem;
        position: relative;
        overflow: hidden;
    }

    .rl-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #c57229, #e08a4d, #e9a85c);
    }

    .rl-product-placeholder {
        background: linear-gradient(135deg, #0a0a0f, #13131a);
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 1rem;
    }

    .rl-product-placeholder::after {
        content: '';
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(circle at 30% 30%, rgba(197, 114, 41, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 70%, rgba(233, 168, 92, 0.1) 0%, transparent 50%);
    }

    .rl-product-placeholder i {
        font-size: 5rem;
        color: #c57229;
        opacity: 0.4;
        position: relative;
        z-index: 1;
        animation: rl-icon-pulse 3s ease-in-out infinite;
    }

    @keyframes rl-icon-pulse {
        0%, 100% { transform: scale(1); opacity: 0.4; }
        50% { transform: scale(1.05); opacity: 0.6; }
    }

    .rl-product-placeholder-text {
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(26, 26, 36, 0.9);
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 0.75rem;
        color: #6b7280;
        border: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 2;
    }

    /* Learn More Link */
    .rl-learn-more {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #e9a85c;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-top: 1.5rem;
    }

    .rl-learn-more:hover {
        color: #c57229;
        gap: 0.75rem;
    }

    /* Mobile Responsive for RhinoLink */
    @media (max-width: 991px) {
        .rhinolink-promo {
            padding: 70px 0;
        }

        .rl-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .rl-product-visual {
            margin-top: 3rem;
        }
    }

    @media (max-width: 767px) {
        .rhinolink-promo {
            padding: 50px 0;
        }

        .rl-promo-title {
            font-size: clamp(1.75rem, 6vw, 2.5rem);
            text-align: center;
        }

        .rl-promo-subtitle {
            font-size: 1rem;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .rl-coming-soon-badge {
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
        }

        .rl-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .rl-stat-item {
            padding: 1rem 0.75rem;
        }

        .rl-stat-number {
            font-size: 1.75rem;
        }

        .rl-stat-label {
            font-size: 0.7rem;
        }

        .rl-feature-pills {
            justify-content: center;
        }

        .rl-feature-pill {
            font-size: 0.75rem;
            padding: 0.5rem 0.75rem;
        }

        .rl-newsletter-form {
            max-width: 100%;
        }

        .rl-newsletter-wrapper {
            flex-direction: column;
        }

        .rl-newsletter-input {
            width: 100%;
            text-align: center;
        }

        .rl-newsletter-btn {
            width: 100%;
        }

        .rl-newsletter-note {
            text-align: center;
        }

        .rl-learn-more {
            display: flex;
            justify-content: center;
        }

        .rl-glow {
            width: 200px !important;
            height: 200px !important;
        }
    }

    @media (max-width: 575px) {
        .rl-stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .rl-stat-number {
            font-size: 1.5rem;
        }

        .rl-product-card {
            padding: 1.25rem;
        }

        .rl-product-placeholder i {
            font-size: 3.5rem;
        }
    }



