/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Elegant Jewelry Color Palette */
    --primary-silver: #A8A9AD;
    --primary-dark: #4A4A4A;
    --accent-gold: #C6A15B;
    --accent-rose: #B76E79;
    --bg-light: #F9F7F5;
    --bg-white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --border-light: #E5E1DB;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-elegant: 0 20px 40px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* ========== LOADER ========== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-light);
    border-top-color: var(--accent-rose);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== COOKIE POPUP ========== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-elegant);
    z-index: 1000;
    display: none;
    border: 1px solid var(--border-light);
}

.cookie-popup.show {
    display: block;
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookie-content i {
    font-size: 2rem;
    color: var(--accent-rose);
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

@media (max-width: 480px) {
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    flex: 1;
}

.cookie-btn.accept {
    background: var(--text-dark);
    color: white;
}

.cookie-btn.accept:hover {
    background: var(--primary-dark);
}

.cookie-btn.reject {
    background: var(--border-light);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background: #d1c9c0;
}

/* ========== AD BAR ========== */
.ad-bar {
    background: var(--text-dark);
    color: white;
    padding: 6px 0;
    font-size: 0.75rem;
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1002;
}

.ad-bar i {
    margin-right: 5px;
    color: var(--accent-rose);
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 30px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    top: 0;
    box-shadow: var(--shadow-soft);
    border-color: var(--border-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }
}

.logo {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 2.5px;
}

.logo span {
    color: var(--accent-rose);
    font-weight: 400;
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }
}

.mobile-logo {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.mobile-logo span {
    color: var(--accent-rose);
    font-weight: 400;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-rose);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-rose);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 992px) {
    .header-actions .btn-primary {
        display: none;
    }
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
}

.btn-primary {
    background: var(--text-dark);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-rose);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: white;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 24px;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 2000;
    padding: 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-logo {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
}

.mobile-logo span {
    color: var(--accent-rose);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--accent-rose);
    padding-left: 5px;
}

.mobile-cta {
    margin-top: 30px;
    display: block;
    text-align: center;
}

/* ========== HERO SECTION ========== */
.hero {
    padding-top: 120px;
    min-height: auto;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f5 100%);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(183, 110, 121, 0.1);
    color: var(--accent-rose);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
}

.text-accent {
    color: var(--accent-rose);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.hero-guarantee i {
    color: var(--accent-rose);
}

.hero-image {
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-elegant);
}

/* ========== TRUST BADGES ========== */
.trust-badges {
    background: var(--bg-white);
    padding: 30px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.badge-item i {
    color: var(--accent-rose);
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .badge-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-rose);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== FEATURED SHOWCASE ========== */
.showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.showcase-image-wrapper {
    position: relative;
    padding: 20px;
}

.showcase-main-img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-elegant);
}

.showcase-accent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    border: 2px solid var(--accent-rose);
    border-radius: 20px;
    z-index: 1;
    transform: translate(-15px, 30px);
}

.showcase-badge {
    position: absolute;
    top: 40px;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 8px 20px;
    border-radius: 30px 0 0 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 3;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.showcase-content-col .section-title span {
    color: var(--accent-rose);
    font-style: italic;
}

.showcase-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-rose);
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.showcase-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.showcase-features {
    list-style: none;
    margin-bottom: 40px;
}

.showcase-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.showcase-features li i {
    color: var(--accent-rose);
    font-size: 1.1rem;
}

.showcase-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ========== ABOUT SECTION ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-signature {
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
}

.about-signature span:first-child {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-signature span:last-child {
    font-size: 0.9rem;
    color: var(--accent-rose);
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-elegant);
}

/* ========== QUALITY SECTION ========== */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
}

.quality-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    transition: var(--transition);
}

.quality-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elegant);
}

.quality-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(183, 110, 121, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-rose);
    font-size: 1.8rem;
}

.quality-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.quality-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========== FEATURES ========== */
.features {
    background: var(--bg-white);
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-rose);
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.testimonial-stars {
    color: #FFB800;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========== FAQ ========== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 5px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--accent-rose);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    color: var(--text-light);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--text-dark), var(--primary-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }
}

.cta-banner .btn-primary {
    background: var(--accent-rose);
    color: white;
}

.cta-banner .btn-primary:hover {
    background: white;
    color: var(--accent-rose);
}

/* ========== FOOTER CONTACT DETAILS ========== */
.footer-contact-details {
    margin-top: 25px;
}

.footer-contact-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-contact-details p i {
    color: var(--accent-rose);
    width: 20px;
    text-align: center;
}

.footer-contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-details a:hover {
    color: var(--accent-rose);
}

.footer-address-main {
    display: flex;
    gap: 12px;
    margin: 15px 0 25px;
    font-size: 0.95rem;
    opacity: 0.9;
    align-items: flex-start;
}

.footer-address-main i {
    color: var(--accent-rose);
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.address-cols {
    display: flex;
    gap: 30px;
    line-height: 1.6;
}

.address-cols span {
    display: block;
}

@media (max-width: 768px) {
    .address-cols {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: white;
    letter-spacing: 2.5px;
}

.footer-logo span {
    color: var(--accent-rose);
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: white;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--accent-rose);
    padding-left: 5px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ========== MODALS ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.modal-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-rose);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--text-dark);
}