/* Go Troppo Unified Theme - Wildly Fast Internet Design System */

/* ==========================================
   DESIGN PHILOSOPHY:
   - Target audience: Australian households wanting fast, reliable NBN
   - Brand personality: Energetic, playful, premium but approachable
   - Visual language: Tropical paradise meets high-speed tech
   - NOT generic AI-made - unique, memorable, and bold
   ========================================== */

/* Root Variables - Tropical Tech Palette */
:root {
    /* Primary Palette - Tropical Sunset */
    --troppo-midnight: #0f0f1e;
    --troppo-deep-ocean: #1a1a2e;
    --troppo-coral: #ff6b6b;
    --troppo-sunset: #ff8e53;
    --troppo-mango: #ffd93d;
    --troppo-lagoon: #20d6b4;
    --troppo-paradise: #7209b7;
    --troppo-flamingo: #ff4e88;
    --troppo-palm: #3ebd60;

    /* Extended Palette */
    --troppo-lightning: #ffe66d;
    --troppo-wave: #4ecdc4;
    --troppo-reef: #ff6b9d;
    --troppo-sand: #fff8e7;
    --troppo-storm: #373f51;

    /* Text Colors */
    --troppo-text-primary: #fff;
    --troppo-text-secondary: rgba(255, 255, 255, 0.8);
    --troppo-text-muted: rgba(255, 255, 255, 0.6);
    --troppo-text-dark: #1a1a2e;

    /* Glass Effects */
    --troppo-glass: rgba(255, 255, 255, 0.08);
    --troppo-glass-hover: rgba(255, 255, 255, 0.12);
    --troppo-glass-border: rgba(255, 255, 255, 0.15);

    /* Gradients - The Heart of Our Design */
    --troppo-gradient-sunset: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ffd93d 100%);
    --troppo-gradient-ocean: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    --troppo-gradient-lagoon: linear-gradient(135deg, #20d6b4 0%, #4ecdc4 100%);
    --troppo-gradient-lightning: linear-gradient(45deg, #ffd93d 0%, #ffe66d 50%, #fff 100%);
    --troppo-gradient-paradise: linear-gradient(135deg, #7209b7 0%, #ff4e88 100%);
    --troppo-gradient-speed: linear-gradient(90deg, #20d6b4 0%, #3ebd60 33%, #ffd93d 66%, #ff6b6b 100%);

    /* Animations & Transitions */
    --troppo-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --troppo-transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --troppo-transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Layout & Spacing */
    --troppo-radius-sm: 12px;
    --troppo-radius-md: 20px;
    --troppo-radius-lg: 30px;
    --troppo-radius-xl: 40px;

    /* Shadows - Dramatic and Vibrant */
    --troppo-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
    --troppo-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --troppo-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --troppo-shadow-glow: 0 0 40px rgba(255, 142, 83, 0.3);
    --troppo-shadow-neon: 0 0 60px rgba(32, 214, 180, 0.4);
}

/* ==========================================
   BASE CONTAINER STYLES
   ========================================== */

.troppo-theme-container {
    background: var(--troppo-midnight);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Animated Background Elements */
.troppo-bg-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.troppo-wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: url(
        data:image/svg + xml,
        %3Csvgxmlns='http://www.w3.org/2000/svg'viewBox='0 0 1440 320'%3E%3Cpathfill='%2320D6B4'fill-opacity='0.05'd='M0,192L48,181.3C96,171,192,149,288,154.7C384,160,480,192,576,192C672,192,768,160,864,149.3C960,139,1056,149,1152,170.7C1248,192,1344,224,1392,240L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E
    );
    background-size: 50% 100%;
    animation: troppoWave 25s linear infinite;
}

.troppo-wave:nth-child(2) {
    background: url(
        data:image/svg + xml,
        %3Csvgxmlns='http://www.w3.org/2000/svg'viewBox='0 0 1440 320'%3E%3Cpathfill='%23FF6B6B'fill-opacity='0.03'd='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,117.3C672,107,768,117,864,138.7C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E
    );
    animation: troppoWave 30s linear infinite reverse;
    opacity: 0.7;
}

@keyframes troppoWave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Floating Geometric Shapes */
.troppo-float-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.troppo-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: troppoFloat 20s infinite ease-in-out;
}

.troppo-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--troppo-gradient-sunset);
    top: -10%;
    right: -5%;
    animation-duration: 25s;
}

.troppo-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--troppo-gradient-lagoon);
    bottom: 10%;
    left: -10%;
    animation-duration: 30s;
    animation-delay: -10s;
}

.troppo-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: var(--troppo-gradient-paradise);
    top: 50%;
    right: 20%;
    animation-duration: 35s;
    animation-delay: -20s;
}

@keyframes troppoFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* ==========================================
   CARD COMPONENTS
   ========================================== */

.troppo-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--troppo-glass-border);
    border-radius: var(--troppo-radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--troppo-transition-smooth);
}

.troppo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--troppo-gradient-sunset);
    opacity: 0;
    transition: opacity var(--troppo-transition-smooth);
    z-index: -1;
}

.troppo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--troppo-shadow-lg), var(--troppo-shadow-glow);
    border-color: rgba(255, 142, 83, 0.3);
}

.troppo-card:hover::before {
    opacity: 0.05;
}

/* Premium Card Variant */
.troppo-card.troppo-premium {
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.2) 0%, rgba(255, 78, 136, 0.2) 100%);
    border: 2px solid var(--troppo-paradise);
    position: relative;
    overflow: visible;
}

.troppo-card.troppo-premium::after {
    content: '⚡';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 40px;
    animation: troppoSpark 2s infinite;
}

@keyframes troppoSpark {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.8;
    }
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

.troppo-heading {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--troppo-text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.troppo-heading .troppo-highlight {
    background: var(--troppo-gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: troppoGradientShift 8s infinite;
}

@keyframes troppoGradientShift {
    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(30deg);
    }
}

.troppo-subtitle {
    font-size: 1.25rem;
    color: var(--troppo-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* ==========================================
   BUTTONS
   ========================================== */

.troppo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--troppo-radius-xl);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--troppo-transition-smooth);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* Primary Button - Sunset Gradient */
.troppo-btn-primary {
    background: var(--troppo-gradient-sunset);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.troppo-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.troppo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

.troppo-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Secondary Button - Glass Effect */
.troppo-btn-secondary {
    background: var(--troppo-glass);
    color: var(--troppo-text-primary);
    border: 1px solid var(--troppo-glass-border);
    backdrop-filter: blur(10px);
}

.troppo-btn-secondary:hover {
    background: var(--troppo-glass-hover);
    border-color: var(--troppo-lagoon);
    box-shadow: 0 0 20px rgba(32, 214, 180, 0.3);
}

/* Speed Button - Lightning Effect */
.troppo-btn-speed {
    background: var(--troppo-gradient-lightning);
    color: var(--troppo-text-dark);
    position: relative;
    overflow: visible;
}

.troppo-btn-speed::after {
    content: '⚡';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    opacity: 0;
    transition: all var(--troppo-transition-bounce);
}

.troppo-btn-speed:hover::after {
    opacity: 1;
    right: 10px;
}

/* ==========================================
   FORM ELEMENTS
   ========================================== */

.troppo-input-group {
    position: relative;
    margin-bottom: 2rem;
}

.troppo-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--troppo-glass-border);
    border-radius: var(--troppo-radius-md);
    color: var(--troppo-text-primary);
    font-size: 1.125rem;
    transition: all var(--troppo-transition-smooth);
}

.troppo-input:focus {
    outline: none;
    border-color: var(--troppo-lagoon);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(32, 214, 180, 0.2);
}

.troppo-input-label {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--troppo-text-muted);
    font-size: 1.125rem;
    pointer-events: none;
    transition: all var(--troppo-transition-smooth);
}

.troppo-input:focus + .troppo-input-label,
.troppo-input:not(:placeholder-shown) + .troppo-input-label {
    top: -0.75rem;
    left: 1rem;
    font-size: 0.875rem;
    background: var(--troppo-deep-ocean);
    padding: 0 0.5rem;
    color: var(--troppo-lagoon);
}

/* ==========================================
   PROGRESS INDICATORS
   ========================================== */

.troppo-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
}

.troppo-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.troppo-progress-step::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(100% + 1rem);
    width: 2rem;
    height: 2px;
    background: var(--troppo-glass-border);
}

.troppo-progress-step:last-child::after {
    display: none;
}

.troppo-progress-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--troppo-glass);
    border: 2px solid var(--troppo-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--troppo-text-muted);
    transition: all var(--troppo-transition-smooth);
}

.troppo-progress-step.active .troppo-progress-circle {
    background: var(--troppo-gradient-sunset);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(255, 142, 83, 0.5);
    animation: troppoPulse 2s infinite;
}

.troppo-progress-step.completed .troppo-progress-circle {
    background: var(--troppo-gradient-lagoon);
    border-color: transparent;
    color: white;
}

@keyframes troppoPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.troppo-progress-label {
    font-size: 0.875rem;
    color: var(--troppo-text-secondary);
    text-align: center;
    max-width: 100px;
}

/* ==========================================
   SPEED INDICATORS
   ========================================== */

.troppo-speed-meter {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 2rem auto;
}

.troppo-speed-gauge {
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 180deg at 50% 100%,
        var(--troppo-coral) 0deg,
        var(--troppo-sunset) 60deg,
        var(--troppo-mango) 120deg,
        var(--troppo-lagoon) 180deg
    );
    border-radius: 100px 100px 0 0;
    overflow: hidden;
}

.troppo-speed-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 80px;
    background: white;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-90deg);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.troppo-speed-value {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-weight: 900;
    color: var(--troppo-text-primary);
}

.troppo-speed-label {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    color: var(--troppo-text-secondary);
    white-space: nowrap;
}

/* ==========================================
   LOADING STATES
   ========================================== */

.troppo-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.troppo-loader-content {
    text-align: center;
}

.troppo-loader-rings {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.troppo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.troppo-ring:nth-child(1) {
    border-top-color: var(--troppo-coral);
    animation: troppoSpin 1.5s linear infinite;
}

.troppo-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-right-color: var(--troppo-lagoon);
    animation: troppoSpin 1s linear infinite reverse;
}

.troppo-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-bottom-color: var(--troppo-mango);
    animation: troppoSpin 0.75s linear infinite;
}

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

.troppo-loader-text {
    font-size: 1.25rem;
    color: var(--troppo-text-primary);
    font-weight: 600;
}

.troppo-loader-dots {
    display: inline-block;
}

.troppo-loader-dots::after {
    content: '...';
    animation: troppoDots 1.5s infinite;
}

@keyframes troppoDots {
    0% {
        content: '.';
    }

    33% {
        content: '..';
    }

    66% {
        content: '...';
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .troppo-heading {
        font-size: 2.5rem;
    }

    .troppo-card {
        padding: 1.5rem;
    }

    .troppo-progress {
        gap: 1rem;
    }

    .troppo-progress-step::after {
        width: 1rem;
    }

    .troppo-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==========================================
   ANIMATIONS LIBRARY
   ========================================== */

@keyframes troppoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes troppoZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes troppoSlideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes troppoShake {
    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* Utility Classes */
.troppo-animate-fade-in-up {
    animation: troppoFadeInUp 0.6s ease-out;
}

.troppo-animate-zoom-in {
    animation: troppoZoomIn 0.5s ease-out;
}

.troppo-animate-slide-in-right {
    animation: troppoSlideInRight 0.5s ease-out;
}

.troppo-animate-shake {
    animation: troppoShake 0.5s ease-in-out;
}

/* ==========================================
   SPECIAL EFFECTS
   ========================================== */

/* Parrot Easter Egg */
.troppo-parrot {
    position: fixed;
    bottom: -100px;
    right: 20px;
    width: 80px;
    height: 100px;
    background: url(
        data:image/svg + xml,
        %3Csvgxmlns='http://www.w3.org/2000/svg'viewBox='0 0 100 100'%3E%3Cpathfill='%23FF6B6B'd='M50 20 C30 20 20 35 20 50 C20 65 30 80 50 80 C70 80 80 65 80 50 C80 35 70 20 50 20 Z'/%3E%3Cpathfill='%23FFD93D'd='M45 40 C45 35 40 30 35 30 C30 30 25 35 25 40 Z'/%3E%3Ccirclecx='40'cy='40'r='3'fill='%23000'/%3E%3C/svg%3E
    );
    background-size: contain;
    cursor: pointer;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 998;
}

.troppo-parrot:hover {
    bottom: 10px;
    animation: troppoParrotFly 2s ease-in-out;
}

@keyframes troppoParrotFly {
    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }

    25% {
        transform: rotate(-10deg) translateY(-20px);
    }

    75% {
        transform: rotate(10deg) translateY(-20px);
    }
}

/* Confetti Burst */
.troppo-confetti {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--troppo-coral);
    opacity: 0;
    pointer-events: none;
}

.troppo-confetti.burst {
    animation: troppoConfetti 1s ease-out forwards;
}

@keyframes troppoConfetti {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1) rotate(720deg);
    }
}

/* ==========================================
   WILDLY THEME SPECIFIC FIXES
   Consolidated from wildly-theme-fix.css
   ========================================== */

/* Force dark background on body and all containers */
body.page-template-default,
body {
    background: #0f0e1e !important;
    min-height: 100vh;
}

/* Ensure plugin wrapper has dark background for product flow and plans display */
.nbn-plugin-wrapper.nbn-product-flow,
.nbn-plugin-wrapper.nbn-plans-display {
    background: #0f0e1e !important;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Address search wrapper should be transparent */
.nbn-plugin-wrapper.nbn-address-search {
    background: transparent !important;
    min-height: auto;
    position: relative;
    z-index: 1;
}

/* Fix payment type indicator styling to match screenshot */
.nbn-payment-type-indicator {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: lowercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 400 !important;
    margin: 0 0 0.5rem 0 !important;
    padding: 0.25rem 0.75rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    display: none !important; /* Hidden by default */
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    text-align: center !important;
}

/* Show only the active payment indicator */
.nbn-payment-type-indicator.active {
    display: inline-block !important;
}

/* Default state - show monthly indicator */
.nbn-plans-display:not(.payment-filtered) .nbn-payment-type-indicator[data-payment='monthly'] {
    display: inline-block !important;
}

/* Ensure scroll arrows are visible and styled correctly */
.nbn-scroll-arrow,
.nbn-carousel-arrow {
    display: flex !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(79, 209, 197, 0.5) !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    z-index: 100 !important;
}

.nbn-scroll-arrow:hover,
.nbn-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #4ecdc4 !important;
}

.nbn-scroll-arrow.prev,
.nbn-carousel-prev {
    left: 1rem !important;
}

.nbn-scroll-arrow.next,
.nbn-carousel-next {
    right: 1rem !important;
}

/* Arrow icons */
.nbn-carousel-arrow::before {
    content: '' !important;
    display: block !important;
    width: 12px !important;
    height: 12px !important;
    border-top: 3px solid #4ecdc4 !important;
    border-right: 3px solid #4ecdc4 !important;
}

.nbn-carousel-prev::before {
    transform: rotate(-135deg) !important;
    margin-left: 4px !important;
}

.nbn-carousel-next::before {
    transform: rotate(45deg) !important;
    margin-right: 4px !important;
}

.nbn-scroll-arrow svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #4ecdc4 !important;
}

/* Fix plan header layout */
.nbn-plan-header {
    padding: 1.5rem 1.5rem 0 1.5rem !important;
    text-align: center !important;
}

/* Ensure title has correct styling */
.nbn-plans-title {
    color: white !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 3rem !important;
}

.nbn-plans-title .troppo-highlight {
    color: #ff8e53 !important;
}

/* Fix plan details background */
.nbn-plan-details {
    background: linear-gradient(180deg, #2a5298 0%, #1e3c72 100%);
    border: 2px solid rgba(79, 209, 197, 0.3) !important;
}

/* Ensure filters have correct styling */
.nbn-plan-filter {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.nbn-plan-filter.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ffd93d 100%) !important;
    color: #1a1a2e !important;
    border-color: transparent !important;
}

/* Payment filters styling */
.nbn-payment-filter,
.nbn-payment-type-filter {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.nbn-payment-filter:hover,
.nbn-payment-type-filter:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
}

.nbn-payment-filter.active,
.nbn-payment-type-filter.active {
    background: #ffd93d !important;
    color: #1a1a2e !important;
    border-color: #ffd93d !important;
}

/* Also hide pricing sections by default except monthly */
.nbn-weekly-price,
.nbn-yearly-price {
    display: none !important;
}

/* Show pricing based on active filter */
.payment-weekly .nbn-weekly-price {
    display: block !important;
}

.payment-weekly .nbn-monthly-price,
.payment-weekly .nbn-yearly-price {
    display: none !important;
}

.payment-monthly .nbn-monthly-price {
    display: block !important;
}

.payment-monthly .nbn-weekly-price,
.payment-monthly .nbn-yearly-price {
    display: none !important;
}

.payment-yearly .nbn-yearly-price {
    display: block !important;
}

.payment-yearly .nbn-weekly-price,
.payment-yearly .nbn-monthly-price {
    display: none !important;
}

/* Carousel wrapper positioning */
.nbn-plans-carousel-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: visible !important;
}

/* Ensure plans container allows horizontal scroll */
.nbn-plans-container {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.nbn-plans-container::-webkit-scrollbar {
    display: none !important;
}

/* Fix plan card width - make them wider */
.nbn-plan-card {
    flex: 0 0 420px !important;
    min-width: 420px !important;
    max-width: 420px !important;
    width: 420px !important;
}

/* Adjust for medium screens */
@media (max-width: 1400px) {
    .nbn-plan-card {
        flex: 0 0 380px !important;
        min-width: 380px !important;
        max-width: 380px !important;
        width: 380px !important;
    }
}

/* Adjust for smaller screens */
@media (max-width: 1024px) {
    .nbn-plan-card {
        flex: 0 0 350px !important;
        min-width: 350px !important;
        max-width: 350px !important;
        width: 350px !important;
    }
}
