/* ==========================================================================
   ANYLUV PRODUCT LANDING PAGE - CUSTOM CSS
   Theme Palette: Red (from extremely light to deep dark)
   ========================================================================== */

/* --- 1. CSS Variables & Design Tokens --- */
:root {
    /* Main Red Palette */
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-300: #fca5a5;
    --red-400: #f87171;
    --red-500: #ef4444; /* Base Accent */
    --red-600: #dc2626; /* Primary CTA */
    --red-700: #b91c1c; /* Hover States */
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    --red-950: #450a0a;

    /* Neutrals matching the red tone */
    --bg-main: #ffffff;
    --bg-body: #fcfcfc;
    --bg-muted: #f9fafb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    
    /* Borders & Shadows */
    --border-light: rgba(220, 38, 38, 0.15);
    --border-strong: rgba(220, 38, 38, 0.3);
    
    --shadow-sm: 0 1px 2px 0 rgba(153, 27, 27, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(153, 27, 27, 0.08), 0 2px 4px -1px rgba(153, 27, 27, 0.04);
    --shadow-lg: 0 10px 25px -3px rgba(153, 27, 27, 0.1), 0 4px 10px -2px rgba(153, 27, 27, 0.05);
    --shadow-xl: 0 20px 35px -5px rgba(153, 27, 27, 0.15), 0 10px 15px -5px rgba(153, 27, 27, 0.08);
    --shadow-glow: 0 0 30px rgba(220, 38, 38, 0.15);
    --shadow-cta: 0 15px 30px -5px rgba(220, 38, 38, 0.4);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- 2. Resets & Base Typography --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--red-200);
    color: var(--red-950);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

/* --- 3. Keyframe Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-soft {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideRightFade {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- 4. Background Decorative Elements --- */
.bg-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.bg-decor-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--red-100) 0%, transparent 70%);
}

.bg-decor-2 {
    top: 30%;
    right: -15%;
    width: 40vw;
    height: 60vw;
    background: radial-gradient(circle, var(--red-50) 0%, transparent 70%);
}

.bg-decor-3 {
    bottom: -5%;
    left: 20%;
    width: 60vw;
    height: 40vw;
    background: radial-gradient(circle, var(--red-100) 0%, transparent 70%);
}

/* --- 5. Header Styles --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px -10px rgba(220, 38, 38, 0.15);
    transition: all var(--transition-base);
}

.header-container {
    max-width: 1200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-inner {
    width: 100%;
}

.header-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.title-brand {
    color: var(--red-700);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.title-product {
    font-weight: 500;
    color: var(--text-muted);
}

.header-badge {
    background: var(--red-50);
    border: 1px solid var(--red-100);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red-800);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--red-500);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 0 2px var(--red-200);
    animation: pulse-soft 2s infinite;
}

.header-bottom-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red-400), transparent);
    opacity: 0.5;
}

/* --- 6. Main Product Section --- */
.main-content {
    max-width: 1280px;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.product-section {
    position: relative;
    margin-bottom: 5rem;
    animation: slideUpFade 0.8s ease-out;
}

.product-card-wrapper {
    position: relative;
}

.product-card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--red-200), var(--red-50), var(--red-300));
    border-radius: calc(var(--radius-xl) + 2px);
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.product-card {
    background: var(--bg-main);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

/* Decorative inner corners */
.card-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
    opacity: 0.1;
    background: radial-gradient(circle at top left, var(--red-600), transparent 70%);
}
.card-corner-tl { top: 0; left: 0; }
.card-corner-br { 
    bottom: 0; right: 0; 
    background: radial-gradient(circle at bottom right, var(--red-600), transparent 70%);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* --- 7. CSS-Only Gallery --- */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-radio {
    display: none;
}

.gallery-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at center, var(--bg-main), var(--red-50));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.viewport-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    z-index: 5;
    pointer-events: none;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
    padding: 2rem;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.thumb-label {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    padding: 4px;
    transition: all var(--transition-bounce);
    position: relative;
}

.thumb-inner {
    width: 100%;
    height: 100%;
    background: var(--red-50);
    border-radius: calc(var(--radius-md) - 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.thumb-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.thumb-label:hover {
    transform: translateY(-3px);
}

.thumb-label:hover .thumb-inner img {
    transform: scale(1.1);
}

/* Gallery Logic (The Core Requirement) */
#img-1:checked ~ .gallery-viewport .slide-1,
#img-2:checked ~ .gallery-viewport .slide-2,
#img-3:checked ~ .gallery-viewport .slide-3,
#img-4:checked ~ .gallery-viewport .slide-4 {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 10;
}

#img-1:checked ~ .gallery-thumbnails .thumb-1,
#img-2:checked ~ .gallery-thumbnails .thumb-2,
#img-3:checked ~ .gallery-thumbnails .thumb-3,
#img-4:checked ~ .gallery-thumbnails .thumb-4 {
    border-color: var(--red-500);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    transform: translateY(-5px);
}

/* --- 8. Product Details & Typography --- */
.product-details {
    display: flex;
    flex-direction: column;
}

.breadcrumbs {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.h1-underline {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--red-500), var(--red-300));
    border-radius: 2px;
    margin-top: 0.75rem;
}

/* Mandatory Health Badge */
.health-badge-block {
    display: flex;
    gap: 1rem;
    background: linear-gradient(to right, var(--red-50), white);
    border-left: 4px solid var(--red-500);
    padding: 1.25rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    animation: slideRightFade 0.6s ease-out 0.2s both;
}

.health-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--red-600);
}

.health-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.health-text strong {
    color: var(--red-800);
    font-weight: 700;
}

/* Description List Formatting */
.description-wrapper {
    background: var(--bg-main);
}

.description-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description-title::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--red-500);
    border-radius: 50%;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: var(--bg-main);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    position: relative;
}

.feature-icon::before {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-100);
    color: var(--red-600);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.feature-item:hover .feature-icon::before {
    background: var(--red-500);
    color: white;
}

.feature-content {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-highlight {
    display: block;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

/* --- 9. Powerful CTA Section --- */
.cta-section {
    position: relative;
    padding: 4rem 1rem;
    margin-bottom: 5rem;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--red-900), var(--red-800), var(--red-700));
    box-shadow: var(--shadow-lg);
}

/* Background Blobs for CTA */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.5;
}

.cta-blob-1 {
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: var(--red-500);
}

.cta-blob-2 {
    bottom: -50%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: var(--red-400);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-subheading {
    font-size: 1.1rem;
    color: var(--red-100);
    margin-bottom: 2.5rem;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red-900);
    background: white;
    overflow: hidden;
    box-shadow: var(--shadow-cta);
    transition: all var(--transition-bounce);
    z-index: 10;
}

.cta-button-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, white, var(--red-50));
    z-index: -2;
}

.cta-button-text {
    position: relative;
    z-index: 2;
    margin-right: 0.75rem;
}

.cta-button-icon {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-100);
    border-radius: 50%;
    color: var(--red-700);
    transition: transform var(--transition-base);
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -5px rgba(220, 38, 38, 0.6);
    color: var(--red-700);
}

.cta-button:hover .cta-button-icon {
    transform: translateX(3px);
    background: var(--red-200);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.5);
}

.cta-button:focus-visible {
    outline: 4px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

/* --- 10. Reviews Section (Amazon Style + Elegance) --- */
.reviews-section {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-main);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
}

.reviews-header-block {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}

.reviews-line {
    width: 80px;
    height: 4px;
    background: var(--red-500);
    margin: 1rem auto;
    border-radius: 2px;
}

.reviews-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    position: relative;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--red-100);
    transition: all var(--transition-base);
}

.review-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-inner {
    position: relative;
    z-index: 2;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.review-card:hover .review-inner {
    background: var(--red-50);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--red-100);
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-meta-main {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.review-rating-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-stars {
    color: var(--red-500);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.05rem;
}

.review-date-locale {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.review-specs {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-left: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.spec-divider {
    color: var(--red-200);
}

.verified-badge {
    color: var(--red-700);
    font-weight: 600;
    background: var(--red-50);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--red-100);
}

.review-body {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    padding-left: 1rem;
}

.review-body p {
    margin-bottom: 0.5rem;
}

.review-body p:last-child {
    margin-bottom: 0;
}

.review-attachment {
    margin-top: 1rem;
    padding-left: 1rem;
}

.review-attachment img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--red-100);
    transition: transform var(--transition-base);
    cursor: pointer;
}

.review-attachment img:hover {
    transform: scale(1.05);
    border-color: var(--red-300);
}

/* --- 11. Footer Section --- */
.site-footer {
    position: relative;
    background: var(--red-950);
    color: var(--red-100);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    text-align: center;
}

.footer-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red-800), var(--red-500), var(--red-800));
}

.footer-brand {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05em;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--red-300);
}

.footer-links-wrapper {
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--red-200);
    position: relative;
    padding: 0.25rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: white;
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--red-400);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- 12. Media Queries (Mobile First approach adaptations) --- */

/* Super Small Devices */
@media (max-width: 359px) {
    .product-card { padding: 1rem; }
    .thumb-label { width: 60px; height: 60px; }
    .product-h1 { font-size: 1.5rem; }
    .cta-heading { font-size: 1.8rem; }
    .cta-button { padding: 1rem 1.5rem; font-size: 1rem; }
    .reviews-section { padding: 1.5rem 1rem; }
}

/* Mobile Devices (360px - 767px) */
@media (max-width: 767px) {
    .title-brand { font-size: 1.2rem; }
    .title-product { font-size: 0.85rem; text-align: center; }
    
    .product-grid {
        gap: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .health-badge-block {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-icon {
        margin-top: 0;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .review-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-date-locale, .review-specs, .review-body, .review-attachment {
        padding-left: 0;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Tablet & Desktop (768px and up) */
@media (min-width: 768px) {
    .header-title {
        flex-direction: row;
        gap: 0.5rem;
        font-size: 1.25rem;
    }
    
    .header-inner {
        justify-content: space-between;
    }
    
    .header-title {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .product-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: start;
    }
    
    .product-gallery {
        position: sticky;
        top: 100px;
    }
    
    .cta-section {
        padding: 6rem 2rem;
        margin: 0 2rem 5rem;
    }
    
    .reviews-section {
        padding: 4rem;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .product-card {
        padding: 3rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
    
    .product-h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .main-content {
        padding-top: 5rem;
    }
}