:root {
    --radius: 0.75rem;
    --background: #ffffff;
    --foreground: #1c1c1c;
    --card: #ffffff;
    --card-foreground: #1c1c1c;
    --popover: #ffffff;
    --popover-foreground: #1c1c1c;
    --primary: #1c1c1c;
    --primary-foreground: #fafafa;
    --secondary: #f4f4f5;
    --secondary-foreground: #1c1c1c;
    --muted: #f4f4f5;
    --muted-foreground: #71717a;
    --accent: #f4f4f5;
    --accent-foreground: #1c1c1c;
    --destructive: #ef4444;
    --border: #e4e4e7;
    --input: #e4e4e7;
    --ring: #1c1c1c;
}

* {
    border-color: var(--border);
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.success-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
}

.success-overlay.active {
    display: flex;
}

.service-card-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-image.active {
    z-index: 1;
}

.service-card-image.slide-in {
    animation: slideIn 0.5s ease-in-out forwards;
    z-index: 2;
}

.service-card-image.slide-out {
    animation: slideOut 0.5s ease-in-out forwards;
    z-index: 1;
}

.text-fade-in {
    animation: textFadeIn 0.5s ease-in-out forwards;
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes textFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ============================================
   PREMIUM 2026 ENHANCEMENTS
   ============================================ */

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Premium button hover effects */
button,
a[class*="button"],
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

button:hover,
a[class*="button"]:hover,
.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

button:active,
a[class*="button"]:active,
.hover-lift:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Card hover effects */
.service-card,
.bg-white.border {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.bg-white.border:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 100;
}

/* Material UI Button Styles */
button,
a[class*="bg-primary"],
a[class*="border-primary"] {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Material UI Elevation */
.shadow-md {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.12);
}

.shadow-xl {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.16);
}

/* Hover elevation increase */
button:hover,
a[class*="hover:shadow"]:hover {
    transform: translateY(-1px);
}

button:active,
a[class*="bg-primary"]:active {
    transform: translateY(0);
}

/* Material UI Ripple Effect (already implemented in JS) */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #1c1c1c 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth color transitions */
* {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow effect on focus */
input:focus,
textarea:focus,
button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(28, 28, 28, 0.1),
        0 0 20px rgba(28, 28, 28, 0.05);
}

/* Ripple effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    animation: ripple 0.6s ease-out;
}

/* Icon animations */
i[data-lucide] {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover i[data-lucide],
a:hover i[data-lucide] {
    transform: scale(1.1);
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Smooth page load animation */
@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

body {
    animation: fadeInPage 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced navbar on scroll */
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Underline animation for links */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Image reveal animation */
@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

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

img {
    animation: imageReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Disable reveal animation for carousels to prevent animation conflicts */
#service-image-track img,
#mobile-showcase-track img,
#service-carousel-track img,
#desktop-carousel-track img,
#mobile-reviews-track img {
    animation: none !important;
}


/* Prevent layout shift with aspect ratio */
img[width][height] {
    aspect-ratio: attr(width) / attr(height);
    height: auto;
}

/* Ensure carousel images maintain aspect ratio */
.aspect-\[16\/9\] img {
    aspect-ratio: 16 / 9;
}

.aspect-square img {
    aspect-ratio: 1 / 1;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Call Now Button */
.btn-call-now {
    background-color: #007aff !important;
    /* Apple Blue */
    color: white !important;
    border: none !important;
}

.btn-call-now:hover {
    background-color: #0063cc !important;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3) !important;
}

.btn-call-now:active {
    background-color: white !important;
    color: #007aff !important;
    transform: scale(0.98);
}

/* Back button override */
.no-hover-animation:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Frosted Green Button */
.btn-frosted-green {
    background-color: rgba(37, 211, 102, 0.1) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(37, 211, 102, 0.3) !important;
    color: #16a34a !important;
}

.btn-frosted-green:hover {
    background-color: rgba(37, 211, 102, 0.2) !important;
    border-color: rgba(37, 211, 102, 0.5) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2) !important;
}

.card-frosted-green {
    background-color: rgba(37, 211, 102, 0.05) !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
}

.card-frosted-green:hover {
    background-color: rgba(37, 211, 102, 0.1) !important;
    border-color: rgba(37, 211, 102, 0.6) !important;
}

/* Performance optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Enhanced form inputs */
input,
textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus,
textarea:focus {
    transform: translateY(-1px);
    border-color: var(--primary);
}

/* Gradient overlay effects */
.gradient-overlay {
    position: relative;
}

.gradient-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(28, 28, 28, 0.05) 0%,
            transparent 50%,
            rgba(28, 28, 28, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gradient-overlay:hover::before {
    opacity: 1;
}

/* Liquid Glass Effect */
.liquid-glass-effect {
    position: relative;
    isolation: isolate;
    background-color: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: none !important;
    /* Overriding default blur */
    border: none !important;
}

.liquid-glass-effect::before,
.liquid-glass-effect::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

/* Glass distortion effect */
.liquid-glass-effect::before {
    backdrop-filter: blur(3px) !important;
    filter: url(#glass-distortion) !important;
    z-index: -1;
}

/* Outline shine */
.liquid-glass-effect::after {
    box-shadow: inset 2px 2px 1px 0 rgb(255 255 255 / 50%), inset -1px -1px 1px 1px rgb(255 255 255 / 50%);
    z-index: 1;
}

/* WhatsApp Floating Button - Material UI Style */
.whatsapp-float {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: white !important;
    color: #25D366 !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float.liquid-glass-effect {
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5), 0 4px 8px rgba(0, 0, 0, 0.16);
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(1.05);
}

/* WhatsApp tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: #333;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease 0.5s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transition-delay: 0.5s;
}

/* Remove FAQ card hover effects - make them static */
#faq .border:hover {
    transform: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

/* Remove shadow from FAQ button on hover */
#faq .border button:hover {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Remove any shadow from FAQ answer content */
#faq .border .px-6 {
    box-shadow: none !important;
}

/* Smooth transitions for all interactive elements */
button,
a,
input,
textarea,
select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card hover transitions */
.shadow-lg,
.shadow-md,
.shadow-xl {
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Get Estimate Button Shake Animation */
@keyframes shake-button {

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

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

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

.btn-get-estimate {
    background-color: #001f3f !important;
    /* Navy Blue */
    color: white !important;
    border: 2px solid #001f3f !important;
    animation: shake-button 2s ease-in-out infinite;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
}

.btn-get-estimate:hover {
    background-color: #003366 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.4) !important;
}

/* Animation runs for 2 seconds, then pauses for 8 seconds (total 10 seconds loop) */
@keyframes shake-with-pause {
    0% {
        transform: translateX(0);
    }

    2%,
    6%,
    10%,
    14%,
    18% {
        transform: translateX(-5px);
    }

    4%,
    8%,
    12%,
    16% {
        transform: translateX(5px);
    }

    20%,
    100% {
        transform: translateX(0);
    }
}

.btn-get-estimate {
    animation: shake-with-pause 10s ease-in-out infinite;
}

/* Center the "Other" card in device grid */
#device-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    #device-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Center the last card (Other) when it's alone in the row */
#device-list .device-card:last-child:nth-child(3n+1) {
    grid-column: 2 / 3;
}

/* For mobile, center when it's the 7th item (odd in 2-column grid) */
@media (max-width: 767px) {
    #device-list .device-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Dark Mode for Device Showcase Section */
#device-showcase-container {
    background-color: #000000 !important;
}

section.bg-white.border-y:has(#device-showcase-container) {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

/* Dark mode text colors for Device Showcase */
section.bg-white.border-y:has(#device-showcase-container) h2 {
    color: #ffffff !important;
}

section.bg-white.border-y:has(#device-showcase-container) p {
    color: #ffffff !important;
}

section.bg-white.border-y:has(#device-showcase-container) span.inline-block {
    color: #4facfe !important;
    background-color: rgba(79, 172, 254, 0.1) !important;
    border-color: rgba(79, 172, 254, 0.3) !important;
}

/* Keep cards white in dark mode */
section.bg-white.border-y:has(#device-showcase-container) .bg-white {
    background-color: #ffffff !important;
}

section.bg-white.border-y:has(#device-showcase-container) .border-border {
    border-color: #e4e4e7 !important;
}

/* Card text should be black */
section.bg-white.border-y:has(#device-showcase-container) .bg-white h3,
section.bg-white.border-y:has(#device-showcase-container) .bg-white p {
    color: #000000 !important;
}

/* Navigation dots - white and grey */
section.bg-white.border-y:has(#device-showcase-container) #desktop-carousel-dots>div {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

section.bg-white.border-y:has(#device-showcase-container) #desktop-carousel-dots>div.bg-primary {
    background-color: #ffffff !important;
}

section.bg-white.border-y:has(#device-showcase-container) #mobile-showcase-dots>span {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

section.bg-white.border-y:has(#device-showcase-container) #mobile-showcase-dots>span.bg-white {
    background-color: #ffffff !important;
}

/* Dark Mode for Services Section (What We Can Fix) */
section.bg-white.border-y:has(#service-cards) {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

/* Dark mode text colors for Services */
section.bg-white.border-y:has(#service-cards) h2 {
    color: #ffffff !important;
}

section.bg-white.border-y:has(#service-cards) p {
    color: #ffffff !important;
}

section.bg-white.border-y:has(#service-cards) span.inline-block {
    color: #4facfe !important;
    background-color: rgba(79, 172, 254, 0.1) !important;
    border-color: rgba(79, 172, 254, 0.3) !important;
}

/* Keep cards white in Services dark mode */
section.bg-white.border-y:has(#service-cards) .bg-white {
    background-color: #ffffff !important;
}

section.bg-white.border-y:has(#service-cards) .border-border {
    border-color: #e4e4e7 !important;
}

/* Card text should be black */
section.bg-white.border-y:has(#service-cards) .bg-white h3,
section.bg-white.border-y:has(#service-cards) .bg-white p {
    color: #000000 !important;
}

/* Navigation dots for Services - white and grey */
section.bg-white.border-y:has(#service-cards) #service-carousel-dots>div {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

section.bg-white.border-y:has(#service-cards) #service-carousel-dots>div.bg-primary {
    background-color: #ffffff !important;
}

section.bg-white.border-y:has(#service-cards) #service-dots>span {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

section.bg-white.border-y:has(#service-cards) #service-dots>span.bg-white {
    background-color: #ffffff !important;
}

/* Service Tabs Styling - Simplified */
.service-tab {
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    background-color: #f4f4f5;
    color: #71717a;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex: 1;
    text-align: center;
    line-height: 1.3;
}

.service-tab:hover {
    transform: none !important;
    box-shadow: none !important;
}

.service-tab.active {
    background-color: #3b82f6;
    color: white;
}


/* Dynamic Warranty Button */
.btn-dynamic-warranty {
    font-size: clamp(0.7rem, 2.5vw, 1rem) !important;
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem) !important;
    gap: clamp(0.25rem, 1.5vw, 0.75rem) !important;
    width: min(100%, fit-content);
    max-width: 100%;
    white-space: nowrap;
}

.btn-dynamic-warranty svg {
    width: clamp(1rem, 3vw, 1.25rem) !important;
    height: clamp(1rem, 3vw, 1.25rem) !important;
    flex-shrink: 0;
}

/* Service Content Visibility */
.service-content {
    display: none;
}

.service-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Vertical Divider Between How It Works and Device Selection */
.lg\:w-2\/5::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e4e4e7;
    display: none;
}

@media (min-width: 1024px) {
    .lg\:w-2\/5 {
        position: relative;
    }

    .lg\:w-2\/5::after {
        display: block;
    }
}

/* Step Number Boxes & Connecting Lines */
.service-step {
    position: relative;
}

.step-number-box {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2.5px solid #1c1c1c;
    border-radius: 50%;
    background-color: #ffffff;
    /* Added white background to cover the line */
    color: #1c1c1c;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

/* Connecting Line */
.service-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1rem;
    top: 1rem;
    /* Start from center of circle */
    width: 2.5px;
    height: calc(100% + 2rem);
    background-color: #1c1c1c;
    z-index: 1;
    transform: translateX(-50%);
}

/* Hamburger Icon Styling */
.hamburger-icon {
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #1c1c1c;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    display: block;
}

/* No hover animation on the button itself as requested */
#mobile-menu-btn:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Active State (X conversion) - Robust alignment */
.hamburger-icon.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-icon.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-icon.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Scrollbar & Container Fixes */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e4e4e7;
    border-radius: 10px;
}

#mobile-menu {
    overflow: hidden;
    /* Ensure rounded corners clip content */
}

@media (max-width: 480px) {
    #mobile-menu {
        width: calc(100% - 1.5rem) !important;
        max-height: calc(100vh - 2rem) !important;
    }
}