:root {
    --primary: #FF6B00;
    --primary-hover: #E66000;
    --secondary: #111111;
    --text-main: #111111;
    --text-muted: #666666;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --border-color: #EEEEEE;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes imgFade {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

.fade-in {
    animation: imgFade 0.4s ease-out forwards;
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
p,
span {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    min-height: 50px;
}

.menu-toggle {
    display: none;
    position: absolute;
    left: 0;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 5px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary);
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-cart-btn {
    position: relative;
    text-decoration: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    transition: var(--transition);
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-cart-btn i {
    color: var(--text-main) !important;
    font-size: 1.25rem !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary) !important;
    color: white !important;
    font-size: 0.65rem;
    padding: 1px 4px;
    border-radius: 50%;
    font-weight: 700;
    line-height: normal;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

/* Mobile Sidebar */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-white);
    z-index: 2001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-main);
}

.sidebar-nav {
    padding: 20px 0;
    flex-grow: 1;
    display: block !important;
}

.sidebar-nav ul {
    list-style: none;
    display: block !important;
}

.sidebar-nav li {
    display: block !important;
}

.sidebar-nav li a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar-nav li a i {
    display: none !important;
}

.sidebar-nav li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.sidebar-login {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
}

/* Product Section */
.product-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0 20px 0;
}

@media (min-width: 992px) {
    .product-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        padding: 60px 0 30px 0;
    }
}

/* Gallery */
.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    animation: revealUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.main-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1/1;
    background: #f0f0f0;
    transition: var(--transition);
    animation: revealScale 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
    position: relative;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5); /* More visible background */
    color: white;
    border: none;
    width: 42px; /* Increased size */
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    opacity: 1; /* Full opacity by default */
    backdrop-filter: blur(4px); /* Premium glass effect */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-arrow i {
    font-size: 1.2rem; /* Larger icon */
}

.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev { left: 15px; }
.nav-arrow.next { right: 15px; }

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.main-image:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px) scale(1.01);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
    opacity: 0;
    animation: revealUp 0.6s ease forwards;
}

.thumbnail:nth-child(1) { animation-delay: 0.4s; }
.thumbnail:nth-child(2) { animation-delay: 0.5s; }
.thumbnail:nth-child(3) { animation-delay: 0.6s; }
.thumbnail:nth-child(4) { animation-delay: 0.7s; }

.thumbnail.active {
    border-color: var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-md) - 2px);
}

/* Buy Box */
.buy-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}



.product-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin: 0;
    display: block;
    width: 100%;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFC107;
    font-size: 0.9rem;
}

.rating span {
    color: var(--text-muted);
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 10px 0;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.save-badge {
    background: #FFEBE0;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-features {
    list-style: none;
    margin: 10px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-features i {
    color: var(--primary);
}

.cta-button {
    background: var(--primary) !important;
    background-image: none !important;
    color: white !important;
    border: none !important;
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    display: block;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.cta-button:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.trust-badges-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: #555;
    background: #f8f8f8;
    padding: 15px;
    border-radius: var(--radius-md);
    justify-content: center;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.review-stars {
    color: #FFC107;
    font-size: 0.8rem;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* Smartphone Showcase */
.iphone-frame {
    width: 280px;
    height: 560px;
    background: #111;
    border: 8px solid #333;
    border-radius: 40px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.9);
}

.reveal-on-scroll.active .iphone-frame {
    animation: revealScale 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, float 4s ease-in-out infinite 1.2s;
}

.iphone-notch {
    width: 120px;
    height: 25px;
    background: #111;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Lock scroll for carousel */
    padding: 30px 10px 10px;
    background: #fff;
    position: relative;
}

.mockup-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: mockupMarqueeVertical 20s linear infinite;
}

@keyframes mockupMarqueeVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.mockup-img-container {
    width: 100%;
}

.mockup-img-container img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Marquee / Carousel */
.carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
    background: #fff;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.carousel-item {
    width: 250px;
    margin: 0 10px;
    flex-shrink: 0;
}

.carousel-item img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Spin Modal */
.roulette-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.roulette-modal.active {
    display: flex;
}

.roulette-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
}

.wheel-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 20px auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #111;
    position: relative;
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.1, 0, 0.1, 1);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    background: var(--clr);
    transform-origin: bottom right;
    transform: rotate(calc(45deg * var(--i)));
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-segment span {
    transform: rotate(45deg);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    position: absolute;
    right: 15px;
    bottom: 35px;
}

.wheel-arrow {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    z-index: 10;
}

.close-roulette {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 10px 0;
    }

    header nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .product-title {
        font-size: 1.6rem;
        word-break: normal;
        overflow-wrap: break-word;
        line-height: 1.3;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .price-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .buy-box {
        gap: 15px;
    }

    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 12px 15px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        transition: transform 0.3s ease;
        transform: translateY(100%);
    }

    .mobile-sticky-cta.active {
        transform: translateY(0);
    }

    .sticky-price-info {
        display: flex;
        flex-direction: column;
    }

    .sticky-price-info .p-price {
        font-weight: 800;
        font-size: 1.1rem;
        color: var(--primary);
    }

    .sticky-price-info .p-label {
        font-size: 0.65rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-sticky-cta .cta-button {
        padding: 12px 15px;
        font-size: 0.85rem;
        white-space: nowrap;
        width: auto;
        flex: 1;
    }

    body {
        padding-bottom: 70px;
    }
}

/* Utils */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Statistics Section (Loved by) */
.stats-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.stats-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    color: var(--secondary);
}

.stats-container {
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.stat-circle {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.stat-circle svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
}

.stat-circle circle {
    fill: none;
    stroke-width: 7;
    stroke-linecap: round;
}

.stat-circle .circle-bg {
    stroke: #f2f2f2;
}

.stat-circle .circle-progress {
    stroke: var(--primary);
    stroke-dasharray: 283;
    stroke-dashoffset: 283; /* Initial state: empty */
    transition: stroke-dashoffset 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.active .circle-progress {
    stroke-dashoffset: var(--offset); /* Set final state */
    transition-delay: 0.5s;
}

/* Staggered entry for items */
.reveal-on-scroll.active .stat-item {
    animation: revealUp 0.8s ease forwards;
    opacity: 0;
}

.reveal-on-scroll.active .stat-item:nth-child(1) { animation-delay: 0.2s; }
.reveal-on-scroll.active .stat-item:nth-child(2) { animation-delay: 0.4s; }
.reveal-on-scroll.active .stat-item:nth-child(3) { animation-delay: 0.6s; }

/* Staggered entry for general feature cards */
.reveal-on-scroll.active .feature-card {
    animation: revealUp 0.8s ease forwards;
    opacity: 0;
}

.reveal-on-scroll.active .feature-card:nth-child(1) { animation-delay: 0.2s; }
.reveal-on-scroll.active .feature-card:nth-child(2) { animation-delay: 0.4s; }
.reveal-on-scroll.active .feature-card:nth-child(3) { animation-delay: 0.6s; }

.stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--secondary);
}

.stat-text {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--text-main);
}

.stat-text b {
    font-weight: 700;
    color: var(--secondary);
}

.stats-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .stat-item {
        gap: 20px;
        padding: 20px 0;
    }

    .stat-circle {
        width: 70px;
        height: 70px;
    }

    .stat-circle svg {
        width: 70px;
        height: 70px;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-text {
        font-size: 1rem;
    }
}

/* Trustpilot Style Section */
.trust-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.trust-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary);
}

.trust-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.trust-score {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--secondary);
}

.trust-summary > span:first-child {
    font-size: 1.1rem;
    color: var(--secondary);
}

.trust-stars-row {
    display: flex;
    gap: 5px;
}

.trust-stars-row.centered {
    justify-content: center;
    margin-bottom: 20px;
}

.trust-star-box {
    background: #00b67a; /* Trustpilot Green */
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 2px;
}

.trust-star-box.sm {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
}

.trust-slider {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-carousel {
    position: relative;
    min-height: 400px; /* Prevent jumpy layout */
}

.trust-card {
    background: #F8F9FA;
    padding: 50px 40px;
    border-radius: 24px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: none; /* Hidden by default */
}

.trust-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.trust-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
}

.trust-card p {
    color: #4B5563;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.trust-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.trust-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.trust-author span {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--secondary);
}

.trust-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.trust-nav {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #CBD5E1;
    cursor: pointer;
    transition: var(--transition);
}

.trust-nav:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

.trust-dots {
    display: flex;
    gap: 10px;
}

.t-dot {
    width: 9px;
    height: 9px;
    background: #E2E8F0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background: var(--secondary);
    width: 24px;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .trust-title {
        font-size: 1.8rem;
    }
    .trust-card {
        padding: 35px 25px;
    }
    .trust-card h3 {
        font-size: 1.2rem;
    }
    .trust-card p {
        font-size: 1rem;
    }
}

/* Bottom Sticky Bar Styling */
.bottom-sticky-bar {
    position: fixed;
    bottom: -120px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000000;
    padding: 15px 0;
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    transition: bottom 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 -15px 45px rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: block !important;
    visibility: visible !important;
    opacity: 0;
    pointer-events: none;
}

.bottom-sticky-bar.active {
    bottom: 0;
    opacity: 1;
    pointer-events: all;
}

.sticky-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 0 20px; /* Essential for mobile edges */
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.st-name {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
}

.st-price {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}

.st-old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 5px;
}

.st-cta-btn {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
    animation: pulseSticky 2s infinite;
}

@keyframes pulseSticky {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

@media (max-width: 600px) {
    .st-name {
        display: none; /* Keep it clean on mobile */
    }
}
