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

/* Color Variables - Fresh Lime Green Theme */
:root {
    --primary-green: #4A7C59;
    --lime-green: #8BC34A;
    --light-lime: #C5E1A5;
    --bg-green: #E8F5E9;
    --hero-gradient: linear-gradient(135deg, #D4E157 0%, #AED581 50%, #C5E1A5 100%);
    --dark-bg: #3E5641;
    --dark-charcoal: #2D3A2E;
    --charcoal: #4A5A4C;
    --soft-grey: #F5F7F5;
    --white: #FFFFFF;
    --border-grey: #E0E8E0;
    --accent-orange: #FF6F00;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--soft-grey);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; font-weight: 700; line-height: 1.1; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

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

/* Header & Navigation */
header {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header.header-light {
    position: relative;
    background: var(--hero-gradient);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-charcoal);
}

.logo span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-top: -5px;
}

/* Light header text for dark backgrounds - NOT USED, keeping header on gradient */

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    gap: 35px;
}

nav a {
    font-weight: 500;
    color: var(--charcoal);
    font-size: 0.95rem;
}

nav a:hover, nav a.active {
    color: var(--primary-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--border-grey);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--charcoal);
    cursor: pointer;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--charcoal);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

/* Hero Section - Card Style */
.hero-wrapper {
    padding: 40px 20px 60px;
    background: var(--hero-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.hero-tagline {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 10px;
    font-style: italic;
}

.hero-tagline span {
    color: var(--lime-green);
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--dark-charcoal);
}

.hero-content h1 span {
    color: var(--primary-green);
}

.hero-description {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-order {
    padding: 14px 30px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: var(--dark-charcoal);
    transform: translateY(-2px);
}

.price-badge {
    padding: 14px 25px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-charcoal);
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bowl-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.bowl-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border: 2px solid rgba(74, 124, 89, 0.3);
    border-radius: 50%;
}

.bowl-ring::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20%;
    width: 16px;
    height: 16px;
    background: var(--primary-green);
    border-radius: 50%;
}

.bowl-ring::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--primary-green);
    border-radius: 50%;
}

.bowl-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Nutrition Info Panel */
.nutrition-panel {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nutrition-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.nutrition-item:last-child {
    margin-bottom: 0;
}

.nutrition-value {
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.nutrition-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-charcoal);
}

/* Decorative blob */
.hero-blob {
    position: absolute;
    top: 80px;
    left: 80px;
    width: 80px;
    height: 80px;
    background: rgba(139, 195, 74, 0.4);
    border-radius: 50%;
    filter: blur(20px);
}

/* Featured Products Section */
.featured-products {
    padding: 40px 20px 60px;
    background: var(--hero-gradient);
}

.products-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card-featured {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    flex: 1;
}

.product-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-charcoal);
}

.product-price {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
}

.product-nutrition {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.75rem;
    color: var(--charcoal);
    margin-top: 8px;
}

.product-nutrition span {
    display: flex;
    justify-content: space-between;
}

/* Page Hero (for inner pages) */
.page-hero {
    min-height: 200px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    background: var(--hero-gradient);
}

.page-hero h1 {
    color: var(--dark-charcoal);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--charcoal);
}

/* Slogan Banner */
.slogan-banner {
    text-align: center;
    background: var(--hero-gradient);
    color: var(--dark-charcoal);
    padding: 70px 0;
}

.slogan-banner h2 {
    color: var(--dark-charcoal);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.slogan-banner p {
    font-size: 1.15rem;
    color: var(--charcoal);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--dark-charcoal);
    border-color: var(--dark-charcoal);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.7);
    color: var(--dark-charcoal);
    border: 2px solid var(--border-grey);
}

.btn-secondary:hover {
    background-color: var(--white);
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--soft-grey);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

.section-title p {
    color: var(--charcoal);
    margin-top: 10px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-grey);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    color: var(--lime-green);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
}

/* Products Section with Sidebar Layout */
.products-section {
    padding: 60px 0;
    background: var(--white);
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.category-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border-grey);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-sticky h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-green);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--lime-green);
}

.category-menu li {
    margin-bottom: 8px;
}

.category-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--charcoal);
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-menu a:hover {
    background-color: var(--bg-green);
    color: var(--primary-green);
    padding-left: 20px;
}

/* Products Content Area */
.products-content {
    min-width: 0;
}

.category-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.category-header {
    margin-bottom: 25px;
}

.category-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 10px;
}

.category-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--lime-green);
}

.category-header p {
    color: var(--charcoal);
    font-size: 1rem;
}

/* Subcategory Styling */
.subcategory {
    margin-bottom: 40px;
}

.subcategory-title {
    font-size: 1.2rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--accent-orange);
}

/* Back to Top Link */
.back-to-top {
    display: inline-block;
    margin-top: 25px;
    color: var(--lime-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.back-to-top:hover {
    color: var(--primary-green);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-grey);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark-charcoal);
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-charcoal);
}

.product-info p {
    font-size: 0.85rem;
    color: var(--charcoal);
    line-height: 1.5;
    margin-top: auto;
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 40px;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-charcoal);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-item {
    background: var(--bg-green);
    padding: 25px;
    border-radius: 15px;
}

.value-item h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-item p {
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.6;
}

.offer-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 15px;
}

.offer-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    color: var(--lime-green);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--charcoal);
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-grey);
}

.contact-form h3 {
    margin-bottom: 25px;
    color: var(--primary-green);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-grey);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime-green);
}

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

.map-container {
    border-radius: 20px;
    overflow: hidden;
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info h4 {
    color: var(--lime-green);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-info p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--lime-green);
    opacity: 1;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-green { color: var(--primary-green); }
.max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.large-text { font-size: 1.25rem; line-height: 1.8; color: var(--charcoal); margin-bottom: 1.5rem; }

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-section {
        order: -1;
    }
    
    .bowl-container {
        width: 300px;
        height: 300px;
    }
    
    .bowl-ring {
        width: 280px;
        height: 280px;
    }
    
    .bowl-image {
        width: 240px;
        height: 240px;
    }
    
    .nutrition-panel {
        right: 50%;
        transform: translateX(50%);
        top: auto;
        bottom: -30px;
    }
    
    .products-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .category-menu ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .category-menu li {
        margin-bottom: 0;
    }
    
    .category-menu a {
        padding: 8px 12px;
        background-color: var(--bg-green);
        font-size: 0.85rem;
    }
    
    .category-menu a:hover {
        padding-left: 12px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .nav-container {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .logo {
        text-align: center;
        width: 100%;
    }
    
    nav {
        width: 100%;
        justify-content: center;
    }
    
    nav ul {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-wrapper {
        padding: 30px 15px 40px;
        min-height: auto;
    }
    
    .hero-card {
        padding: 25px 20px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-section {
        display: flex;
        justify-content: center;
    }
    
    .bowl-container {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .bowl-ring {
        width: 230px;
        height: 230px;
    }
    
    .bowl-image {
        width: 200px;
        height: 200px;
    }
    
    .nutrition-panel {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        margin: 20px auto 0;
        max-width: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .page-hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-order, .price-badge {
        width: 100%;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        gap: 12px;
        font-size: 0.8rem;
    }
    
    .bowl-container {
        width: 200px;
        height: 200px;
    }
    
    .bowl-ring {
        width: 180px;
        height: 180px;
    }
    
    .bowl-image {
        width: 160px;
        height: 160px;
    }
    
    .hero-card {
        padding: 20px 15px;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .category-header h2 {
        font-size: 1.4rem;
    }
    
    .product-card {
        padding: 15px;
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--dark-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 58, 46, 0.5);
}

.back-to-top-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top-btn svg {
        width: 20px;
        height: 20px;
    }
}
