/* Header Styles - LensVista (No Search or Cart) */
.lv-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(20px);
    z-index: 200;
    transition: background-color var(--transition-time) ease;
}

.lv-header.scrolled {
    background-color: rgba(0, 0, 0, 0.2);
}

.lv-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.lv-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--txt-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.lv-nav {
    display: flex;
}

.lv-nav-list {
    display: flex;
    gap: var(--gap-large);
}

.lv-nav-link {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    padding: 4px 0;
    transition: color var(--transition-time) ease;
}

.lv-nav.active .lv-nav-link {
    color: var(--txt-primary);
}

.lv-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-time) ease;
}

.lv-nav-link:hover {
    color: var(--accent);
}

.lv-nav-link:hover::after {
    width: 100%;
}

/* Burger menu (hidden on desktop) */
.lv-burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 210;
}

.lv-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: transform var(--transition-time) ease, opacity var(--transition-time) ease;
}

.lv-burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.lv-burger.active span:nth-child(2) {
    opacity: 0;
}

.lv-burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile navigation overlay */
@media (max-width: 768px) {
    .lv-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: var(--gap-large);
        transform: translateY(-120%);
        transition: transform var(--transition-time) ease;
        overflow-y: auto;
        z-index: 190;
    }

    .lv-nav.active {
        transform: translateY(0);
    }

    .lv-nav-list {
        flex-direction: column;
        gap: var(--gap-medium);
    }

    .lv-burger {
        display: flex;
    }
}

/* Footer Styles - LensVista (unchanged) */
/* Multi-column layout, newsletter form, hover underlines, responsive stacking */

.lv-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding-top: 60px;
    padding-bottom: 20px;
    font-size: 0.9rem;
}

.lv-footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-large);
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.lv-footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--gap-medium);
}

.lv-footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--gap-small);
}

.lv-footer-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--txt-secondary);
}

.lv-footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-small);
}

.lv-footer-link {
    color: var(--txt-secondary);
    position: relative;
    transition: color var(--transition-time) ease;
}

.lv-footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-time) ease;
}

.lv-footer-link:hover {
    color: var(--accent);
}

.lv-footer-link:hover::after {
    width: 100%;
}

.lv-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-small);
}

.lv-news-label {
    font-size: 0.9rem;
    color: var(--white);
}

.lv-news-input-group {
    display: flex;
    gap: var(--gap-small);
}

.lv-news-input-group input[type="email"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #333;
    color: var(--white);
    font-size: 0.9rem;
    transition: border-color var(--transition-time) ease;
}

.lv-news-input-group input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.lv-news-input-group button {
    padding: 8px 16px;
}

.lv-footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #444;
    margin-top: var(--gap-large);
}

.lv-footer-bottom p {
    margin: 0;
    color: var(--txt-secondary);
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .lv-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lv-footer-container {
        display: flex;
        flex-direction: column;
        gap: var(--gap-large);
    }

    .lv-news-input-group {
        flex-direction: column;
    }

    .lv-swiper-testimonials .swiper-button-next,
    .lv-swiper-testimonials .swiper-button-prev {
        display: none;
    }
}

/* Hero Section - LensVista */
.lv-hero {
    width: 100%;
    height: 100vh;
    max-height: 1400px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    z-index: 1;
}

.lv-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 720px;
    margin: 0 auto;
}

.lv-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--gap-medium);
}

.lv-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #f0f0f0;
    margin-bottom: var(--gap-large);
}

.lv-hero-btn {
    padding: 12px 32px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .lv-hero-title {
        font-size: 2.25rem;
    }

    .lv-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .lv-hero-title {
        font-size: 1.75rem;
    }

    .lv-hero-subtitle {
        font-size: 1rem;
    }
}

/* Featured Categories Section - LensVista */
.lv-featured-categories {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-light);
}

.lv-featured-header {
    margin-bottom: 40px;
}

.lv-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Each category item */
.lv-category-item {
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Staggered animation delays */
.lv-category-item:nth-child(1) {
    animation-delay: 0.1s;
}

.lv-category-item:nth-child(2) {
    animation-delay: 0.2s;
}

.lv-category-item:nth-child(3) {
    animation-delay: 0.3s;
}

.lv-category-item:nth-child(4) {
    animation-delay: 0.4s;
}

.lv-category-link {
    display: block;
    text-decoration: none;
}

.lv-category-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.lv-category-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-time) ease;
    display: block;
}

/* Overlay for darkening */
.lv-category-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition-time) ease;
}

/* Title */
.lv-category-title {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--txt-primary);
    text-align: center;
    transition: color var(--transition-time) ease;
}

/* Hover Effects */
.lv-category-item:hover .lv-category-img {
    transform: scale(1.05);
}

.lv-category-item:hover .lv-category-overlay {
    opacity: 1;
}

.lv-category-item:hover .lv-category-title {
    color: var(--accent);
}

/* Responsive Breakpoints */
/* Tablets */
@media (max-width: 1024px) {
    .lv-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lv-category-grid {
        grid-template-columns: 1fr;
    }

    .lv-category-img {
        height: 180px;
    }

    .lv-category-title {
        font-size: 1rem;
    }
}

/* New Arrivals Section - LensVista */
.lv-new-arrivals {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-light);
}

/* Header fade-in animation */
.lv-newarrivals-header {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.lv-newarrivals-header .lv-h2 {
    margin-bottom: var(--gap-small);
}

/* Swiper container styling */
.lv-swiper-newarrivals {
    position: relative;
}

/* Product slide/card */
.lv-product-slide {
    display: flex;
    justify-content: center;
    /* fade-in effect when slide comes into view is handled by Swiper transitions */
}

.lv-product-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-time) ease, box-shadow var(--transition-time) ease;
    width: 100%;
    max-width: 280px;
}

/* Image wrapper */
.lv-product-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-top: 66.66%;
    /* 3:2 aspect ratio */
}

.lv-product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-time) ease;
}

/* Product info */
.lv-product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lv-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--txt-primary);
    transition: color var(--transition-time) ease;
}

.lv-product-price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
}

/* Hover effects */
.lv-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.lv-product-card:hover .lv-product-img {
    transform: scale(1.05);
}

.lv-product-card:hover .lv-product-title {
    color: var(--accent);
}

/* Swiper navigation buttons */
.lv-swiper-newarrivals .swiper-button-prev,
.lv-swiper-newarrivals .swiper-button-next {
    color: var(--txt-primary);
    transition: color var(--transition-time) ease;
}

.lv-swiper-newarrivals .swiper-button-prev:hover,
.lv-swiper-newarrivals .swiper-button-next:hover {
    color: var(--accent);
}

/* Swiper pagination bullets */
.lv-swiper-newarrivals .swiper-pagination-bullet {
    background-color: var(--txt-secondary);
    opacity: 0.7;
}

.lv-swiper-newarrivals .swiper-pagination-bullet-active {
    background-color: var(--accent);
    opacity: 1;
}

/* Responsive Breakpoints */
/* Desktop large: show 3 slides */
/* Tablet: 2 slides */
/* Mobile: 1 slide */
/* These breakpoints are set in JS initialization */

/* If additional CSS needed: ensure container padding */
@media (max-width: 1024px) {
    .lv-new-arrivals {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .lv-new-arrivals {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .lv-product-card {
        max-width: 100%;
    }

    .lv-product-info {
        padding: 12px;
    }

    .lv-product-title {
        font-size: 1rem;
    }

    .lv-product-price {
        font-size: 0.95rem;
    }
}

/* Testimonials Section - LensVista */
.lv-testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-light);
}

.lv-testimonials-header {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.lv-testimonials-header .lv-h2 {
    margin-bottom: var(--gap-small);
}

/* Swiper container styling */
.lv-swiper-testimonials {
    position: relative;
}

/* Testimonial slide and card */
.lv-testimonial-slide {
    display: flex;
    justify-content: center;
}

.lv-testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 24px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-time) ease, box-shadow var(--transition-time) ease;
    position: relative;
}

/* Text inside */
.lv-testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--txt-primary);
    margin-bottom: 16px;
}

/* Author line */
.lv-testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-align: right;
}

/* Hover effect: slight lift */
.lv-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Swiper navigation buttons */
.lv-swiper-testimonials .swiper-button-prev,
.lv-swiper-testimonials .swiper-button-next {
    color: var(--txt-primary);
    transition: color var(--transition-time) ease;
}

.lv-swiper-testimonials .swiper-button-prev:hover,
.lv-swiper-testimonials .swiper-button-next:hover {
    color: var(--accent);
}

/* Swiper pagination bullets */
.lv-swiper-testimonials .swiper-pagination-bullet {
    background-color: var(--txt-secondary);
    opacity: 0.7;
}

.lv-swiper-testimonials .swiper-pagination-bullet-active {
    background-color: var(--accent);
    opacity: 1;
}

/* Responsive Breakpoints */
/* Tablet: fewer items visible via JS config */
/* Adjust card padding/font if needed */
@media (max-width: 1024px) {
    .lv-testimonials {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .lv-testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .lv-testimonials {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .lv-testimonial-card {
        padding: 16px;
    }

    .lv-testimonial-text {
        font-size: 0.95rem;
    }

    .lv-testimonial-author {
        font-size: 0.85rem;
    }
}

/* Application Promo Section - LensVista */
.lv-app-promo {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(15, 145, 30, 0.1) 0%, rgba(15, 145, 30, 0.05) 100%);
}

.lv-app-promo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Content area */
.lv-app-promo-content {
    flex: 1;
    max-width: 600px;
}

.lv-app-promo-content .lv-h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--gap-medium);
    animation: fadeInUp 0.6s ease forwards;
}

.lv-app-promo-content .lv-p-secondary {
    font-size: 1.1rem;
    margin-bottom: var(--gap-medium);
    color: var(--txt-secondary);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.lv-app-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--gap-large) 0;
}

.lv-app-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays for list items */
.lv-app-feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.lv-app-feature-item:nth-child(2) {
    animation-delay: 0.3s;
}

.lv-app-feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

.lv-app-feature-item:nth-child(4) {
    animation-delay: 0.5s;
}

.lv-app-feature-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--accent);
    flex-shrink: 0;
}

.lv-app-feature-text {
    font-size: 1rem;
    color: var(--white);
}

/* CTA */
.lv-app-promo-cta {
    margin-top: var(--gap-large);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

.lv-app-download-btn {
    padding: 12px 32px;
    font-size: 1rem;
    transition: background-color var(--transition-time) ease, transform var(--transition-time) ease;
}

.lv-app-download-btn:hover {
    transform: translateY(-2px);
    background-color: var(--accent);
    color: var(--white);
}

/* Image area */
.lv-app-promo-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 400px;
}

.lv-app-promo-image {
    width: 100%;
    max-width: 300px;
    animation: floatY 4s ease-in-out infinite;
    display: block;
}

/* Keyframes for floating effect */
@keyframes floatY {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Breakpoints */
/* Desktop large adjustments */
@media (max-width: 1024px) {
    .lv-app-promo {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .lv-app-promo-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .lv-app-promo-content {
        max-width: 100%;
    }

    .lv-app-promo-image-wrapper {
        max-width: 300px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lv-app-promo {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .lv-app-promo-container {
        gap: 20px;
    }

    .lv-app-promo-content .lv-h2 {
        font-size: 2rem;
    }

    .lv-app-promo-content .lv-p-secondary {
        font-size: 1rem;
    }

    .lv-app-feature-icon {
        font-size: 1.3rem;
    }

    .lv-app-feature-text {
        font-size: 0.95rem;
    }

    .lv-app-promo-image-wrapper {
        max-width: 240px;
    }

    .lv-app-promo-image {
        max-width: 200px;
    }
}

/* FAQ Section - LensVista */
.lv-home-faq {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-light);
}

.lv-home-faq-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

/* Content area */
.lv-home-faq-content {
    flex: 1;
    max-width: 600px;
}

/* FAQ header animations */
.lv-home-faq-content .lv-h2 {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.lv-home-faq-content .lv-p-secondary {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
    margin-bottom: var(--gap-large);
}

/* FAQ list */
.lv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Individual FAQ item */
.lv-faq-item {
    border: 1px solid var(--txt-secondary);
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--white);
    transition: box-shadow var(--transition-time) ease;
}

/* Question button */
.lv-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt-primary);
    position: relative;
    transition: background-color var(--transition-time) ease;
}

.lv-faq-question:hover,
.lv-faq-question:focus {
    background-color: rgba(15, 145, 30, 0.1);
}

.lv-faq-question:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Question text */
.lv-faq-question-text {
    flex: 1;
    text-align: left;
}

/* Icon */
.lv-faq-icon {
    font-size: 1.25rem;
    margin-left: 12px;
    transition: transform var(--transition-time) ease;
}

/* Answer area (collapsed by default) */
.lv-faq-answer {
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Answer paragraph */
.lv-faq-answer p {
    margin: 16px 0;
    line-height: 1.6;
    color: var(--txt-secondary);
    font-size: 0.95rem;
}

/* When item is active/open, add class lv-open to .lv-faq-item */
.lv-faq-item.lv-open .lv-faq-answer {
    max-height: 500px;
    /* large enough for content; ensure this covers longest answer */
    padding: 16px;
}

/* Rotate icon when open */
.lv-faq-item.lv-open .lv-faq-icon {
    transform: rotate(45deg);
}

/* Hover effect on item */
.lv-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Image area */
.lv-home-faq-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 400px;
}

.lv-home-faq-image {
    width: 100%;
    /* max-width: 300px; */
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

/* Responsive Breakpoints */
/* On tablet and below, stack content above image */
@media (max-width: 1024px) {
    .lv-home-faq {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .lv-home-faq-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .lv-home-faq-content {
        max-width: 100%;
    }

    .lv-home-faq-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lv-home-faq {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .lv-home-faq-question {
        padding: 12px;
        font-size: 0.95rem;
    }

    .lv-faq-answer p {
        font-size: 0.9rem;
        margin: 12px 0;
    }

    .lv-home-faq-image-wrapper {
        max-width: 240px;
    }

    .lv-home-faq-image {
        max-width: 200px;
    }
}

/* Shop Hero Section - LensVista */
.lv-shop-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 1400px;
    background-image: url('../images/shop-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lv-shop-hero-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.lv-shop-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.lv-shop-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Title */
.lv-shop-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Subtitle */
.lv-shop-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #f0f0f0;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

/* Button */
.lv-shop-hero-btn {
    padding: 12px 32px;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    transition: transform var(--transition-time) ease, background-color var(--transition-time) ease;
}

.lv-shop-hero-btn:hover {
    transform: translateY(-2px);
    background-color: var(--accent);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .lv-shop-hero-title {
        font-size: 2.25rem;
    }

    .lv-shop-hero-subtitle {
        font-size: 1.1rem;
    }

    .lv-shop-hero-btn {
        padding: 10px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .lv-shop-hero {
        min-height: 70vh;
    }

    .lv-shop-hero-title {
        font-size: 1.75rem;
    }

    .lv-shop-hero-subtitle {
        font-size: 1rem;
    }

    .lv-shop-hero-btn {
        padding: 8px 24px;
        font-size: 0.9rem;
    }
}

/* Shop Products Grid Section - LensVista */
.lv-shop-products {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-light);
}

/* Header */
.lv-shop-products-header {
    margin-bottom: 40px;
    text-align: center;
}

.lv-shop-products-header .lv-h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--txt-primary);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.lv-shop-products-header .lv-p-secondary {
    font-size: 1rem;
    color: var(--txt-secondary);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

/* Products Grid */
.lv-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Product Item wrapper: for animation */
.lv-product-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

/* We will set animation-delay via inline style or via JS below */

/* Product Card */
.lv-product-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-time) ease, box-shadow var(--transition-time) ease;
}

.lv-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image wrapper for 3:2 aspect ratio */
.lv-product-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 66.66%;
    overflow: hidden;
}

.lv-product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-time) ease;
}

.lv-product-card:hover .lv-product-img {
    transform: scale(1.05);
}

/* Info area */
.lv-product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lv-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt-primary);
}

.lv-product-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent);
}

/* Responsive Breakpoints */
/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .lv-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
    .lv-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Newsletter & App CTA Section Styles - LensVista
   Complete CSS for the lv-shop-cta block
   Requires common.css to define:
     --white, --accent, --txt-primary, --txt-secondary,
     --bg-light, --transition-time, etc.
     @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px);} 
                          to { opacity:1; transform: translateY(0);} }
   ============================================================ */

/* Section wrapper with animated gradient background */
.lv-shop-cta {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    /* Animated gradient: adjust colors as desired */
    background: linear-gradient(45deg, #0F911E, #145A32, #0F911E);
    background-size: 600% 600%;
    animation: lv-gradientShift 10s ease infinite;
}

/* Keyframes for gradient shift */
@keyframes lv-gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Overlay to darken background for better text contrast */
.lv-shop-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* Container centering content */
.lv-shop-cta-container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Content wrapper */
.lv-shop-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Title styling and animation */
.lv-cta-title {
    font-size: 2.5rem;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Subtitle styling and animation */
.lv-cta-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
    max-width: 600px;
}

/* Form wrapper: overall form styling */
.lv-cta-form {
    width: 100%;
    max-width: 500px;
    /* Animations */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

/* Row for email input + subscribe button */
.lv-cta-form-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

/* Email input styling */
.lv-cta-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    transition: border-color var(--transition-time) ease;
}

/* Email input focus */
.lv-cta-input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Subscribe button styling */
.lv-cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color var(--transition-time) ease, transform var(--transition-time) ease;
}

/* Button hover */
.lv-cta-button:hover {
    transform: translateY(-2px);
    background-color: #0D7A1A;
    /* Slightly darker accent */
}

/* Checkbox wrapper below form row */
.lv-cta-checkbox-wrapper {
    margin-top: 12px;
    text-align: left;
    /* Animates with same timing as disclaimer if desired */
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

/* Checkbox label styling */
.lv-cta-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--white);
    cursor: pointer;
}

/* Checkbox input styling */
.lv-cta-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Disclaimer text below form */
.lv-cta-disclaimer {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

/* Link styling inside disclaimer */
.lv-cta-disclaimer .lv-link {
    color: var(--white);
    text-decoration: underline;
}

.lv-cta-disclaimer .lv-link:hover {
    color: #E5E5E5;
}

/* App download button wrapper */
.lv-app-download-links {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.5s;
}

/* App button styling */
.lv-app-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--transition-time) ease, transform var(--transition-time) ease;
}

/* App button hover */
.lv-app-btn:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 1);
}

/* Error message styling for email or checkbox validation */
.lv-error {
    color: #FFCCCC;
    margin-top: 8px;
    font-size: 0.9rem;
    text-align: left;
}

/* Responsive adjustments */
/* Tablet and below: stack input and button vertically */
@media (max-width: 768px) {
    .lv-shop-cta {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .lv-cta-title {
        font-size: 2rem;
    }

    .lv-cta-subtitle {
        font-size: 1rem;
    }

    .lv-cta-form-row {
        flex-direction: column;
    }

    .lv-cta-input,
    .lv-cta-button,
    .lv-app-btn {
        width: 100%;
    }

    .lv-products-grid .lv-product-card {
        max-width: none;
    }
}

/* Mobile: further reduce sizes */
@media (max-width: 480px) {
    .lv-shop-cta {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .lv-cta-title {
        font-size: 1.75rem;
    }

    .lv-cta-subtitle {
        font-size: 0.95rem;
    }

    .lv-cta-input {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .lv-cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .lv-app-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

.lv-hero-about {
    background-image: url('../images/hero-bg-a.jpg');
}

.lv-hero-app {
    background-image: url('../images/hero-bg-app.jpg');
}

.lv-hero-contact {
    background-image: url('../images/hero-bg-c.jpg');
}

/* About Mission and Vision Section - LensVista */
.lv-about-mission {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-light);
}

.lv-about-mission-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.lv-about-mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lv-about-mission-text {
    flex: 1;
}

.lv-about-mission-title {
    font-size: 2rem;
    color: var(--txt-primary);
    margin-bottom: 16px;
}

.lv-about-mission-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--txt-secondary);
    margin-bottom: 16px;
}

.lv-about-mission-image-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.lv-about-mission-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-time) ease;
}

.lv-about-mission-image-wrapper:hover .lv-about-mission-img {
    transform: scale(1.05);
}

/* Animations (ensure fadeInUp exists in common.css) */
.lv-about-mission-title {
    opacity: 0;
}

.lv-about-mission-paragraph {
    opacity: 0;
}

.lv-about-mission-img {
    opacity: 0;
}

/* You may trigger animations via JS on DOMContentLoaded or via CSS if parent has a class */
/* Responsive */
@media (max-width: 1024px) {
    .lv-about-mission-content {
        flex-direction: column;
    }

    .lv-about-mission-image-wrapper {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .lv-about-mission-title {
        font-size: 1.75rem;
    }

    .lv-about-mission-paragraph {
        font-size: 0.95rem;
    }
}

.lv-about-mission-title {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.lv-about-mission-paragraph:nth-of-type(1) {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.lv-about-mission-paragraph:nth-of-type(2) {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.lv-about-mission-img {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}


/* ============================================================
   About Page: Values Section - LensVista
   Classes prefixed lv-about-values
   ============================================================ */

.lv-about-values {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-light);
}

.lv-about-values-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.lv-about-values-title {
    font-size: 2rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.lv-about-values-subtitle {
    font-size: 1rem;
    color: var(--txt-secondary);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

/* Grid container: 2 columns on desktop, 1 on mobile */
.lv-about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Each value item */
.lv-about-value-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    /* animation-delay will be set via nth-child or JS */
}

/* Icon wrapper */
.lv-about-value-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 50%;
}

/* Icon image */
.lv-about-value-icon {

    width: 75%;
    height: 75%;
    object-fit: cover;
    transition: transform var(--transition-time) ease;
}

.lv-about-value-icon-wrapper:hover .lv-about-value-icon {
    transform: scale(1.1);
}

/* Value title */
.lv-about-value-title {
    font-size: 1.25rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
}

/* Value text */
.lv-about-value-text {
    font-size: 0.95rem;
    color: var(--txt-secondary);
    line-height: 1.6;
}

/* Responsive: One column on narrower screens */
@media (max-width: 768px) {
    .lv-about-values-grid {
        grid-template-columns: 1fr;
    }

    .lv-about-values-title {
        font-size: 1.75rem;
    }

    .lv-about-values-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .lv-about-value-item {
        padding: 20px;
    }

    .lv-about-value-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .lv-about-value-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .lv-about-value-text {
        font-size: 0.9rem;
    }
}

/* Animation delays for items: cascade */
.lv-about-values-grid .lv-about-value-item:nth-child(1) {
    animation-delay: 0.2s;
}

.lv-about-values-grid .lv-about-value-item:nth-child(2) {
    animation-delay: 0.3s;
}

.lv-about-values-grid .lv-about-value-item:nth-child(3) {
    animation-delay: 0.4s;
}

.lv-about-values-grid .lv-about-value-item:nth-child(4) {
    animation-delay: 0.5s;
}

/* ============================================================
   About Page Final CTA Section - LensVista
   Classes prefixed lv-about-cta
   ============================================================ */

/* Section wrapper with animated gradient background */
.lv-about-cta {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    /* Animated gradient background */
    background: linear-gradient(45deg, #145A32, #0F911E, #145A32);
    background-size: 600% 600%;
    animation: lv-about-cta-gradient 12s ease infinite;
}

/* Gradient shift keyframes */
@keyframes lv-about-cta-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Overlay for contrast */
.lv-about-cta-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Container centering content */
.lv-about-cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Content wrapper */
.lv-about-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Title styling and animation */
.lv-about-cta-title {
    font-size: 2.25rem;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Subtitle styling and animation */
.lv-about-cta-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

/* Buttons wrapper */
.lv-about-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

/* Common button style overrides */
.lv-about-cta-btn {
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color var(--transition-time) ease, transform var(--transition-time) ease;
}

/* Primary button: solid accent */
.lv-about-cta-btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border: none;
}

.lv-about-cta-btn-primary:hover {
    transform: translateY(-2px);
    background-color: #0D7A1A;
}

/* Secondary button: transparent with white border */
.lv-about-cta-btn-secondary {
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid var(--white);
    color: var(--white);
}

.lv-about-cta-btn-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
/* Tablet */
@media (max-width: 768px) {
    .lv-about-cta {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .lv-about-cta-title {
        font-size: 2rem;
    }

    .lv-about-cta-subtitle {
        font-size: 1rem;
    }

    .lv-about-cta-buttons {
        gap: 12px;
    }

    .lv-about-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lv-about-cta {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .lv-about-cta-title {
        font-size: 1.75rem;
    }

    .lv-about-cta-subtitle {
        font-size: 0.95rem;
    }

    .lv-about-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .lv-about-cta-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Why Download Our App Section - LensVista */

.lv-app-features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.lv-app-features-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.lv-app-features-title {
    font-size: 2rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.lv-app-features-subtitle {
    font-size: 1rem;
    color: var(--txt-secondary);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.lv-app-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.lv-app-feature {
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.lv-app-features-grid .lv-app-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.lv-app-features-grid .lv-app-feature:nth-child(2) {
    animation-delay: 0.3s;
}

.lv-app-features-grid .lv-app-feature:nth-child(3) {
    animation-delay: 0.4s;
}

.lv-app-features-grid .lv-app-feature:nth-child(4) {
    animation-delay: 0.5s;
}

.lv-app-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 16px;
    transition: transform var(--transition-time) ease;


}

.lv-app-feature:hover .lv-app-feature-icon {
    transform: scale(1.1);
}

.lv-app-feature-title {
    font-size: 1.25rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
}

.lv-app-feature-text {
    font-size: 0.95rem;
    color: var(--txt-secondary);
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 768px) {
    .lv-app-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lv-app-features-title {
        font-size: 1.75rem;
    }

    .lv-app-features-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .lv-app-feature {
        padding: 20px;
    }

    .lv-app-feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .lv-app-feature-title {
        font-size: 1.1rem;
    }

    .lv-app-feature-text {
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lv-app-features-grid {
        grid-template-columns: 1fr;
    }

    .lv-app-features-title {
        font-size: 1.5rem;
    }

    .lv-app-features-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .lv-app-feature {
        padding: 16px;
    }

    .lv-app-feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .lv-app-feature-title {
        font-size: 1rem;
    }

    .lv-app-feature-text {
        font-size: 0.85rem;
    }
}

/* ============================================================
   App Page: Screenshots Slider Section - LensVista
   Classes prefixed lv-app-screens
   ============================================================ */

.lv-app-screens {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.lv-app-screens-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.lv-app-screens-title {
    font-size: 2rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.lv-app-screens-subtitle {
    font-size: 1rem;
    color: var(--txt-secondary);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

/* Swiper container styling */
.lv-app-screens-swiper {
    position: relative;
    width: 100%;
    padding-bottom: 40px;
    /* space for pagination */
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

/* Each slide */
.lv-app-screen-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slide image */
.lv-app-screen-img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-time) ease;
}

/* Hover effect on image (desktop) */
.lv-app-screen-slide:hover .lv-app-screen-img {
    transform: scale(1.05);
}

/* Swiper pagination bullets styling override */
.lv-app-screens-pagination .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.lv-app-screens-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent);
}

/* Swiper navigation buttons styling override */
.lv-app-screens-prev,
.lv-app-screens-next {
    color: var(--accent);
    /* enlarge clickable area if needed */
}

/* Responsive adjustments */
/* Tablet: fewer slides per view if customizing slidesPerView */
@media (max-width: 768px) {
    .lv-app-screens-title {
        font-size: 1.75rem;
    }

    .lv-app-screens-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .lv-app-screen-img {
        max-width: 250px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lv-app-screens {
        padding: 60px 0;
    }

    .lv-app-screens-title {
        font-size: 1.5rem;
    }

    .lv-app-screens-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .lv-app-screen-img {
        max-width: 200px;
    }
}

/* ============================================================
   App Page Final Support Section - LensVista
   Classes prefixed lv-app-support
   ============================================================ */

.lv-app-support {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.lv-app-support-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.lv-app-support-title {
    font-size: 2rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.lv-app-support-subtitle {
    font-size: 1rem;
    color: var(--txt-secondary);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.lv-app-support-form {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.lv-app-support-row {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Email input */
.lv-app-support-input {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: #fff;
    color: #000;
    transition: border-color var(--transition-time) ease;
}

.lv-app-support-input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Textarea */
.lv-app-support-textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: #fff;
    color: #000;
    resize: vertical;
    transition: border-color var(--transition-time) ease;
}

.lv-app-support-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Checkbox wrapper */
.lv-app-support-checkbox-wrapper {
    justify-content: flex-start;
    text-align: left;
}

.lv-app-support-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--txt-secondary);
    cursor: pointer;
}

.lv-app-support-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Link inside label */
.lv-app-support-checkbox-label .lv-link {
    color: var(--accent);
    text-decoration: underline;
}

.lv-app-support-checkbox-label .lv-link:hover {
    color: darken(var(--accent), 10%);
    /* if supported, otherwise choose a slightly darker color manually */
}

/* Submit button */
.lv-app-support-button {
    padding: 12px 32px;
    font-size: 1rem;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color var(--transition-time) ease, transform var(--transition-time) ease;
}

.lv-app-support-button:hover {
    transform: translateY(-2px);
    background-color: #0D7A1A;
}

/* Error message styling */
.lv-error {
    color: #FFCCCC;
    margin-top: 8px;
    font-size: 0.9rem;
    text-align: left;
}

/* Responsive adjustments */
/* Tablet */
@media (max-width: 768px) {
    .lv-app-support {
        padding: 60px 0;
    }

    .lv-app-support-title {
        font-size: 1.75rem;
    }

    .lv-app-support-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .lv-app-support-row {
        margin-bottom: 16px;
    }

    .lv-app-support-input,
    .lv-app-support-textarea {
        font-size: 0.95rem;
        padding: 10px 14px;
    }

    .lv-app-support-button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .lv-app-support-checkbox-label {
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lv-app-support {
        padding: 40px 0;
    }

    .lv-app-support-title {
        font-size: 1.5rem;
    }

    .lv-app-support-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .lv-app-support-row {
        margin-bottom: 12px;
    }

    .lv-app-support-input,
    .lv-app-support-textarea {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .lv-app-support-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .lv-app-support-checkbox-label {
        font-size: 0.85rem;
    }
}

/* ============================================================
   Contacts Page Form Section - LensVista
   Classes prefixed lv-contacts-form
   ============================================================ */

.lv-contacts-form {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.lv-contacts-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.lv-contacts-form-title {
    font-size: 2rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.lv-contacts-form-subtitle {
    font-size: 1rem;
    color: var(--txt-secondary);
    margin-bottom: 32px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.lv-contacts-form-form {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.lv-contacts-form-row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.lv-contacts-form-label {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--txt-primary);
}

.lv-contacts-form-input,
.lv-contacts-form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: #fff;
    color: #000;
    transition: border-color var(--transition-time) ease;
}

.lv-contacts-form-input:focus,
.lv-contacts-form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.lv-contacts-form-textarea {
    resize: vertical;
    line-height: 1.6;
}

.lv-contacts-form-checkbox-wrapper {
    flex-direction: row;
    align-items: center;
}

.lv-contacts-form-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--txt-secondary);
    cursor: pointer;
}

.lv-contacts-form-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.lv-contacts-form-checkbox-label .lv-link {
    color: var(--accent);
    text-decoration: underline;
}

.lv-contacts-form-checkbox-label .lv-link:hover {
    color: #0D7A1A;
}

.lv-contacts-form-button {
    padding: 12px 32px;
    font-size: 1rem;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: center;
    transition: background-color var(--transition-time) ease, transform var(--transition-time) ease;
}

.lv-contacts-form-button:hover {
    transform: translateY(-2px);
    background-color: #0D7A1A;
}

.lv-error {
    color: #FFCCCC;
    margin-top: 8px;
    font-size: 0.9rem;
    text-align: left;
}

/* Responsive adjustments */
/* Tablet */
@media (max-width: 768px) {
    .lv-contacts-form {
        padding: 60px 0;
    }

    .lv-contacts-form-title {
        font-size: 1.75rem;
    }

    .lv-contacts-form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .lv-contacts-form-row {
        margin-bottom: 16px;
    }

    .lv-contacts-form-input,
    .lv-contacts-form-textarea {
        font-size: 0.95rem;
        padding: 10px 14px;
    }

    .lv-contacts-form-button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .lv-contacts-form-checkbox-label {
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lv-contacts-form {
        padding: 40px 0;
    }

    .lv-contacts-form-title {
        font-size: 1.5rem;
    }

    .lv-contacts-form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .lv-contacts-form-row {
        margin-bottom: 12px;
    }

    .lv-contacts-form-input,
    .lv-contacts-form-textarea {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .lv-contacts-form-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .lv-contacts-form-checkbox-label {
        font-size: 0.85rem;
    }
}

/* ============================================================
   Contacts Page: Location & Hours Section - LensVista
   Classes prefixed lv-contacts-loc
   ============================================================ */

.lv-contacts-loc {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.lv-contacts-loc-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.lv-contacts-loc-title {
    font-size: 2rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.lv-contacts-loc-subtitle {
    font-size: 1rem;
    color: var(--txt-secondary);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.lv-contacts-loc-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

/* Map wrapper */
.lv-contacts-loc-map-wrapper {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Embedded map */
.lv-contacts-loc-map {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Info column */
.lv-contacts-loc-info {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

/* Info titles */
.lv-contacts-loc-info-title {
    font-size: 1.25rem;
    color: var(--txt-primary);
    margin-bottom: 12px;
}

/* Hours list */
.lv-contacts-loc-hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.lv-contacts-loc-hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--txt-secondary);
}

.lv-contacts-loc-day {
    font-weight: 600;
    color: var(--txt-primary);
}

.lv-contacts-loc-time {
    font-weight: 400;
}

/* Additional contact */
.lv-contacts-loc-contact-title {
    margin-top: 16px;
    margin-bottom: 8px;
}

.lv-contacts-loc-contact-item {
    font-size: 1rem;
    color: var(--txt-secondary);
}

.lv-contacts-loc-link {
    color: var(--accent);
    text-decoration: underline;
    transition: color var(--transition-time) ease;
}

.lv-contacts-loc-link:hover {
    color: #0D7A1A;
}

/* Responsive adjustments */
/* Tablet */
@media (max-width: 768px) {
    .lv-contacts-loc {
        padding: 60px 0;
    }

    .lv-contacts-loc-title {
        font-size: 1.75rem;
    }

    .lv-contacts-loc-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .lv-contacts-loc-content {
        flex-direction: column;
        align-items: center;
    }

    .lv-contacts-loc-map-wrapper {
        width: 100%;
        height: 250px;
        margin-bottom: 24px;
    }

    .lv-contacts-loc-info {
        width: 100%;
    }

    .lv-contacts-loc-info-title {
        font-size: 1.15rem;
    }

    .lv-contacts-loc-hours-item {
        font-size: 0.95rem;
    }

    .lv-contacts-loc-contact-item {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lv-contacts-loc {
        padding: 40px 0;
    }

    .lv-contacts-loc-title {
        font-size: 1.5rem;
    }

    .lv-contacts-loc-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .lv-contacts-loc-map-wrapper {
        height: 200px;
        margin-bottom: 20px;
    }

    .lv-contacts-loc-info-title {
        font-size: 1.1rem;
    }

    .lv-contacts-loc-hours-item {
        font-size: 0.9rem;
    }

    .lv-contacts-loc-contact-item {
        font-size: 0.9rem;
    }
}

/* Стили для Thank-You Page LiftArena */

.lv-thanks-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background-color: var(--bg-light);
}

.lv-thanks-section {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 40px 20px;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease forwards;
}

.lv-thanks-title {
    font-size: 1.75rem;
    color: var(--txt-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.lv-thanks-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color var(--transition-time) ease, transform var(--transition-time) ease;
}

.lv-thanks-button:hover {
    transform: translateY(-2px);
    background-color: #0D7A1A;
}

/* Планшет */
@media (max-width: 768px) {
    .lv-thanks-section {
        padding: 30px 15px;
    }

    .lv-thanks-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .lv-thanks-button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* Мобильные */
@media (max-width: 480px) {
    .lv-thanks-section {
        padding: 20px 10px;
    }

    .lv-thanks-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .lv-thanks-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}