:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-600: #525252;
    --gray-800: #262626;

    --dark-100: #1a1a1a;
    --dark-200: #2a2a2a;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

::selection {
    background: var(--black);
    color: var(--white);
}

::-moz-selection {
    background: var(--black);
    color: var(--white);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background-color: #fdfdfd;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 32px 32px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-up.is-visible {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.availability-badge .pulse-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.avail-available {
    background-color: #e6fced;
    color: #1a9e52;
}

.avail-available .pulse-dot {
    background-color: #27c166;
}

.avail-last_items {
    background-color: #fff6c8;
    color: #b88220;
}

.avail-last_items .pulse-dot {
    background-color: #e8a914;
}

.avail-unavailable {
    background-color: #fde8e8;
    color: #c81e1e;
}

.avail-unavailable .pulse-dot {
    background-color: #ef4444;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

.topbar {
    background: var(--black);
    color: var(--gray-400);
    font-size: 0.75rem;
    padding: 10px 0;
    letter-spacing: 0.5px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.topbar a:hover {
    color: var(--gray-400);
}

.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--black);
}

.logo-icon {
    background: var(--black);
    color: var(--white);
    font-weight: 800;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.logo-text-strong {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--gray-600);
    letter-spacing: 2px;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-800);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.hero {
    padding: 180px 0 100px;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    padding: 80px 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 650px;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -40px;
    bottom: -40px;
    left: -40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.hero-badge {
    display: none;
}

.text-gradient {
    background: linear-gradient(135deg, #1e293b, #64748b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    font-style: normal !important;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 40px;
}

.hero-buttons .btn {
    border-radius: 40px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--gray-400);
    font-style: normal;
    font-weight: 800;
}

.hero-content p {
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
    font-size: 1.15rem;
    color: var(--gray-800);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
}

.hero-trust span {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
    line-height: 1.4;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    display: none;
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slider .slide.active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image-wrapper {
        padding: 0;
    }

    .img-backdrop {
        display: none;
    }
}

.section-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.equipment-section {
    background: transparent;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.eq-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.eq-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-400);
    transform: translateY(-8px);
}

.eq-card-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.eq-card button,
.eq-card .btn {
    position: relative;
    z-index: 2;
}

.eq-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
}

.eq-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.eq-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--black);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.eq-badge.popular {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
}

.eq-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.eq-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.eq-body p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.eq-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.eq-price {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eq-price strong {
    display: block;
    font-size: 1.6rem;
    color: var(--black);
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 4px;
}

.eq-price span {
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.how-it-works {
    background: #f3f4f6;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 60px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-image: linear-gradient(to right, var(--gray-300) 50%, transparent 50%);
    background-size: 16px 2px;
    background-repeat: repeat-x;
    z-index: 0;
}

.t-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 0 24px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--gray-200);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.t-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.t-step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    margin-top: -40px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}



.t-step-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
    background: #eff6ff;
    padding: 4px 12px;
    border-radius: 20px;
}

.t-step h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.t-step p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.advantages {
    background: var(--black);
    color: var(--white);
}

.advantages .section-header h2 {
    color: var(--white);
}

.advantages .section-header p {
    color: var(--gray-400);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.adv-item {
    padding: 48px 32px;
    background: var(--dark-100);
    border: 1px solid var(--dark-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}

.adv-item:hover {
    background: var(--dark-200);
    transform: translateY(-8px);
}

.adv-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--white);
}

.adv-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.adv-item p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.cta-section {
    background: transparent;
}

.cta-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-contact-item .icon-circle {
    width: 64px;
    height: 64px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
}

.cta-contact-item a {
    text-decoration: none;
    color: var(--black);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: block;
}

.cta-contact-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.footer {
    background: #000;
    color: var(--gray-400);
    padding: 60px 0 24px;
    font-size: 0.95rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo .logo-icon {
    background: #111;
    color: #fff;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-text-strong {
    color: var(--white);
    font-size: 1.4rem;
    margin-left: 12px;
    letter-spacing: -0.5px;
}

.footer-desc {
    color: #888;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 250px;
}

.footer-contact-info strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-contact-info a,
.footer-contact-info span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a3a3a3;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-contact-info a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contact-info svg {
    color: #666;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover svg {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.85rem;
}

.footer-shop-link {
    color: #a3a3a3 !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.footer-shop-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-steps::before {
        display: none;
    }

    .t-step-icon {
        margin-top: -40px;
    }

    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .adv-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .cta-contacts {
        flex-direction: column;
        gap: 32px;
    }

    .how-it-works-img {
        display: none;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .topbar {
        display: none;
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--black);
    transform: translateX(-4px);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-2px);
}

.product-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}

.product-details h1 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--black);
}

.rental-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rental-card:hover {
    border-color: var(--gray-400);
    box-shadow: var(--shadow-md);
}

.rental-price-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.rental-price-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.rental-price-value {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--black);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.rental-price-value span {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0;
}

.rental-delivery-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.rental-delivery-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rental-delivery-title svg {
    color: var(--black);
}

.rental-delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rental-delivery-item {
    font-size: 0.9rem;
    color: var(--gray-800);
    line-height: 1.5;
}

.rental-delivery-item strong {
    color: var(--black);
    font-weight: 600;
}

.trust-badges-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-800);
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.trust-badge-pill:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.trust-badge-pill svg {
    flex-shrink: 0;
}

.rental-cta-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-call {
    width: 100%;
    background: var(--black);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-call:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-call svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.btn-secondary-contact {
    width: 100%;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary-contact:hover {
    background: var(--off-white);
    border-color: var(--black);
}

.desc-box {
    margin-bottom: 0;
}

.desc-box h3,
.features-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 12px;
}

.desc-box p,
.desc-box .html-desc {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1rem;
    white-space: pre-wrap;
}

.desc-box p {
    margin-bottom: 16px;
}

.desc-box .html-desc> :last-child {
    margin-bottom: 0;
}

.desc-box .html-desc ul,
.desc-box .html-desc ol {
    margin-left: 20px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.desc-box .html-desc b,
.desc-box .html-desc strong {
    color: var(--black);
    font-weight: 700;
}

.features-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.features-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-800);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    padding: 0;
    border: none;
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-icon-wrapper svg {
    width: 12px;
    height: 12px;
}

.video-section {
    margin-bottom: 48px;
}

.video-section h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 12px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease;
}

.video-wrapper:hover {
    box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .product-details h1 {
        font-size: 2rem;
    }

    .rental-card {
        padding: 24px;
    }
}

.gallery-empty {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    border: 1px solid var(--gray-200);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.zoom-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

.main-image-wrapper:hover .zoom-hint {
    opacity: 1;
}

.thumbnail-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--black);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--black);
    width: 0%;
    transition: width 0.1s ease-out;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 99;
    pointer-events: none;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--gray-800);
    transform: translateY(-5px);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px 12px 16px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    z-index: 99;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--black);
}

.floating-icon {
    width: 32px;
    height: 32px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.faq-section {
    background: transparent;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-inter);
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gray-600);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-600);
    line-height: 1.7;
}

.coverage-section {
    background: transparent;
}

.coverage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    border: 1px solid var(--gray-200);
}

.coverage-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.coverage-text p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.coverage-cities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.coverage-cities li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--black);
    font-size: 0.95rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.coverage-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.radar-map {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--gray-400);
    opacity: 0.5;
}

.circle-1 {
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.02);
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.02);
}

.circle-3 {
    width: 320px;
    height: 320px;
    background: rgba(0, 0, 0, 0.02);
    border: 2px dashed var(--black);
    animation: pulseBorder 4s infinite alternate;
}

@keyframes pulseBorder {
    0% {
        transform: scale(0.95);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

.marker:hover {
    transform: translateY(-5px);
}

.marker:hover .marker-label {
    background: var(--gray-800);
}

.marker svg {
    fill: var(--white);
    color: var(--black);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.marker-label {
    background: var(--black);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    transition: var(--transition);
}

.radius-label {
    position: absolute;
    top: -16px;
    background: var(--white);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid var(--gray-200);
    z-index: 10;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .coverage-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 40px;
    }

    .coverage-visual {
        height: 300px;
    }
}

.stats-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-400);
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-200), transparent);
    margin: 0 auto;
    max-width: 1000px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.main-image-container {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-details {
    position: sticky;
    top: 100px;
}

.btn-pulse {
    position: relative;
    overflow: visible;
    animation: pulse-shadow 2.5s infinite;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.pulse-icon {
    display: inline-flex;
    align-items: center;
    animation: ring 2.5s infinite ease-in-out;
    transform-origin: center;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.thumbnail-btn {
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.thumbnail-btn:hover {
    transform: translateY(-2px);
    border-color: var(--gray-400);
}

.thumbnail-btn img {
    transition: transform 0.3s ease;
}

.thumbnail-btn:hover img {
    transform: scale(1.05);
}

.related-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.8px;
    color: var(--black);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--black);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-400);
}

.article-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.article-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-meta {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.article-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
}

.article-footer svg {
    transition: transform 0.3s ease;
}

.article-card:hover .article-footer svg {
    transform: translateX(4px);
}

.article-hero {
    position: relative;
    padding: 120px 24px 80px;
    background: var(--dark-100);
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: blur(10px);
    transform: scale(1.1);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.article-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-800);
}

.article-body h2,
.article-body h3 {
    color: var(--black);
    margin: 40px 0 20px;
    letter-spacing: -0.5px;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 800;
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 32px 0;
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--black);
}

.sidebar-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
    background: var(--white);
}

.sidebar-product-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--gray-400);
}

.sidebar-product-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--off-white);
}

.sidebar-product-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.sidebar-product-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}


.floating-cart {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(10, 10, 10, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(10, 10, 10, 0.5);
}

.floating-cart.pulse-anim {
    animation: pulse-cart 0.6s ease-in-out;
}

@keyframes pulse-cart {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}

.cart-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-panel-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 768px) {
    .lightbox-close {
        right: 0;
        top: -50px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1002;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-panel.open {
    right: 0;
}

.cart-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-panel-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.cart-close:hover {
    background: #f3f4f6;
    color: black;
}

.cart-panel-body {
    padding: 24px;
    flex-grow: 1;
    overflow-y: auto;
}