@import 'navigation.css';
@import 'media-queries.css';

:root {
    /* Colors */
    --color-primary: #000;
    --color-secondary: #666;
    --color-text: #333;
    --color-light-text: #666;
    --color-white: #fff;
    --color-light-bg: #e1e1e1;
    --color-border: #e5e5e5;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.85rem;
    --font-size-md: 0.9rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.2rem;
    --font-size-xxl: 2rem;
    
    /* Layout */
    --max-width: 1200px;
    --transition-speed: 0.3s;
    
    /* Breakpoints */
    --breakpoint-xs: 480px;
    --breakpoint-sm: 600px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1440px;
}


.site-footer {
    background-color: var(--color-white);
    padding: var(--spacing-xl) var(--spacing-md);
    font-size: var(--font-size-md);
    color: var(--color-text);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-size: var(--font-size-md);
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section ul li a,
.footer-legal ul li a {
    color: var(--color-light-text);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    font-size: var(--font-size-sm);
    padding: var(--spacing-xs) 0;
    display: block;
}

.footer-section ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--color-primary);
}

.footer-divider {
    height: 1px;
    background-color: var(--color-border);
    margin: var(--spacing-lg) 0;
    width: 100%;
}

.footer-divider.vertical {
    width: 1px;
    height: auto;
    margin: 0 40px;
}

.footer-bottom-sections {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.footer-legal h3,
.footer-social h3 {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal ul li {
    margin: 0;
}

.footer-legal ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal ul li a:hover {
    color: #000;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #666;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #000;
}

.footer-country {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 auto;
    min-width: 250px;
}

.country-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selected-country {
    font-size: 0.9rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
}

.country-flag {
    width: 20px;
    height: auto;
}

.group-sites {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.group-sites span {
    font-size: 0.9rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.group-sites select {
    padding: 8px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
    background-color: white;
    cursor: pointer;
}

/* ==================== ACCOUNT PAGE ==================== */
.account-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.account-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.account-header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #111;
}

.account-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.account-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
}

.account-sidebar {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    position: sticky;
    top: 120px;
    align-self: start;
}

.account-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #444;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.account-nav .nav-link i {
    width: 22px;
    text-align: center;
}

.account-nav .nav-link:hover,
.account-nav .nav-link.active {
    background: #111;
    color: #fff;
}

.account-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.profile-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 1.25rem;
    background: #fafafa;
}

.info-card h3 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.05em;
}

.info-card p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
}

.profile-reviews {
    margin-top: 2.5rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-reviews-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #111;
}

.profile-reviews-header p {
    margin: 0.25rem 0 0;
    color: #666;
}

.user-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.user-review-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.user-review-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.user-review-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.user-review-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.user-review-info .product-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.user-review-info .product-link:hover {
    text-decoration: underline;
}

.user-review-info .brand {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #999;
}

.user-review-info .price {
    font-size: 0.95rem;
    color: #333;
}

.user-review-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #333;
}

.user-review-body .rating-stars {
    color: #ffb400;
}

.user-review-meta {
    font-size: 0.85rem;
    color: #777;
}

.user-review-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    font-size: 0.85rem;
    color: #666;
}

.user-review-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    text-transform: capitalize;
}

.user-review-status.approved {
    background: #ecfdf3;
    color: #06603d;
}

.user-review-status.pending {
    background: #fff8e6;
    color: #8a5a00;
}

.user-review-status.rejected {
    background: #ffecec;
    color: #a32020;
}

.user-review-actions a {
    color: #111;
    text-decoration: underline;
    font-weight: 500;
}

.user-review-actions a:hover {
    color: #444;
}

@media (max-width: 768px) {
    .user-review-card {
        grid-template-columns: 1fr;
    }

    .user-review-image {
        width: 100%;
        height: 200px;
    }

    .user-review-actions {
        align-items: flex-start;
    }
}
.section {
    display: none;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.section.active {
    display: block;
}

.section-title {
    font-size: 1.75rem;
    margin: 0 0 1.5rem;
    color: #111;
}

.section-subtitle {
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.empty-state {
    border: 1px dashed #d0d0d0;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #666;
    text-align: center;
    background: #fafafa;
}

.empty-state i {
    font-size: 2.2rem;
    color: #999;
}

.empty-state .btn {
    margin-top: 0.5rem;
}

.loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
}

.loading i {
    font-size: 1.1rem;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.favorite-card {
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.favorite-image {
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.favorite-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.favorite-image:hover img {
    transform: scale(1.04);
}

.favorite-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.favorite-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.06em;
}

.favorite-name {
    font-size: 1rem;
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.favorite-name:hover {
    text-decoration: underline;
}

.favorite-price {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.favorite-date {
    font-size: 0.85rem;
    color: #777;
}

.favorite-remove {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fce8e6;
    color: #b22222;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.favorite-remove:hover {
    background: #b22222;
    color: #fff;
}

.favorite-remove.loading {
    opacity: 0.6;
    pointer-events: none;
}

.error-state {
    padding: 1rem;
    border-radius: 12px;
    background: #fff2f1;
    color: #c0392b;
    text-align: center;
}

@media (max-width: 1024px) {
    .account-container {
        padding: 0 20px;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        overflow-x: auto;
        padding: 1rem;
    }

    .account-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .account-nav .nav-link {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .account-container {
        margin: 60px auto;
    }

    .section {
        padding: 1.5rem;
    }

    .favorites-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    min-width: 250px;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.copyright {
    text-align: center;
}

.copyright p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.julio-experience-section {
    width: calc(100% - calc(var(--spacing-md) * 2));
    margin: 0 auto;
    background-color: var(--color-light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.julio-experience-content {
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.julio-experience-section h1 {
    font-size: var(--font-size-xxl);
    font-weight: normal;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.julio-experience-section p {
    font-size: var(--font-size-lg);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.julio-subscribe-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    padding: 12px 24px;
    font-size: var(--font-size-md);
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
}

.julio-subscribe-button:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.features-header {
    width: 100%;
    padding: 0px 20px 0;
    background-color: white;
    display: flex;
    justify-content: left;
}

.features-title {
    font-size: 2rem;
    font-weight: normal;
    text-align: left;
    max-width: 1200px;
    width: 100%;
}

.three-features-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
    margin: 0 auto;
    background-color: white;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 100%;
    background-color: #e1e1e1;
    position: relative;
}

.feature-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: cover;
}

.feature-card-content {
    padding: 20px;
}

.feature-label {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #666;
}

.feature-card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: normal;
    width: 100%;
    text-align: left;
}

.feature-card p {
    margin-bottom: 20px;
    line-height: 1.5;
    color: #666;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
}

.feature-link {
    text-decoration: underline;
    color: black;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    margin-top: auto;
}

.features-navigation {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-top: -10px;
}

.nav-arrow {
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-arrow:hover {
    color: #000;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.scroll-indicator i {
    font-size: 16px;
    animation: slideLeftRight 2s infinite;
}

@keyframes slideLeftRight {
    0%, 100% {
        transform: translateX(-3px);
    }
    50% {
        transform: translateX(3px);
    }
}

.toggle-icon {
    display: none; /* Hide by default on desktop */
}

/* Media queries moved to media-queries.css */

.two-column-section {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.column {
    flex: 1;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.column-content {
    color: white;
    padding: 0 5%;
    margin-bottom: 10vh;
    max-width: 500px;
}

.column-content p {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: normal;
}

.column-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.column-button {
    text-decoration: none;
    color: white;
    border: 2px solid white;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 0;
    font-weight: normal;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.column-button:hover {
    background-color: white;
    color: #4a5a4f;
    transform: none;
}

.hero-lentes {
    position: relative;
    width: 100%;
    height: 100vh; 
    min-height: 600px; 
    max-height: 900px; 
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.hero-lentes .hero-content {
    color: black;
    padding: 0 5%;
    margin-bottom: 10vh;
    max-width: 800px;
}

.hero-lentes .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-lentes .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-lentes .hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-lentes .hero-button {
    text-decoration: none;
    color: black;
    border: 2px solid black;
    background-color: rgba(255, 255, 255, 0.65);
    padding: 10px 20px;
    border-radius: 0;
    font-weight: normal;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-lentes .hero-button:hover {
    background-color: black;
    color: white;
}

.hero-senna {
    position: relative;
    width: 100%;
    height: 100vh; 
    min-height: 600px; 
    max-height: 900px; 
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.hero-senna .hero-content {
    color: white;
    padding: 0 5%;
    margin-bottom: 10vh;
    max-width: 800px;
}

.hero-senna .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-senna .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-senna .hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-senna .hero-button {
    text-decoration: none;
    color: white;
    border: 2px solid white;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 0;
    font-weight: normal;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-senna .hero-button:hover {
    background-color: white;
    color: #4a5a4f;
}

.hero-slideshow {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-slide:first-child::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.hero-content {
    color: white;
    padding: 0 5%;
    margin-bottom: 10vh;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid white;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-button:hover {
    background-color: white;
    color: #4a5a4f;
}

.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.hero-prev,
.hero-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.hero-dots {
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.hero-slide:nth-child(4) .hero-content,
.hero-slide:nth-child(5) .hero-content {
    color: black;
    text-shadow: none;
}

.hero-slide:nth-child(4) .hero-content h1,
.hero-slide:nth-child(5) .hero-content h1 {
    color: black;
}

.hero-slide:nth-child(4) .hero-content p,
.hero-slide:nth-child(5) .hero-content p {
    color: #333;
}

.hero-slide:nth-child(4) .hero-button,
.hero-slide:nth-child(5) .hero-button {
    border-color: black;
    background-color: rgba(255, 255, 255, 0.65);
    color: black;
}

.hero-slide:nth-child(4) .hero-button:hover,
.hero-slide:nth-child(5) .hero-button:hover {
    background-color: black;
    color: white;
}

/* Video Hero Section */
.hero {
    position: relative;
    width: 100%;
    margin-top: 0;
    background: #000;
    overflow: visible;
}

.hero-video-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    overflow: visible;
}

.hero-video {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    background-color: #000;
    z-index: 1;
}

.hero-video-container .hero-content {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    padding: 12px 16px;
    pointer-events: none;
    box-sizing: border-box;
    gap: 0.75rem;
}

.hero-video-container .hero-content * {
    pointer-events: auto;
}

.hero-video-container .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 520px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.55);
}

/* Hero Content Image - Hidden by default */
.hero-video-container .hero-content img[alt="Ray-Ban Logo"] {
    display: none;
}

.hero-video-container .hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.hero-video-container .hero-button {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    transition: all 0.3s ease;
}

.hero-video-container .hero-button:hover {
    background: white;
    color: black;
}

/* Responsive adjustments */
@media (min-width: 2560px) {
    .hero-content {
        bottom: 10%;
        max-width: 1600px;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
        max-width: 900px;
    }
    
    .hero-button {
        padding: 18px 45px;
        font-size: 1.3rem;
    }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .hero-content {
        bottom: 10%;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
        max-width: 800px;
    }
    
    .hero-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: -98px; /* Negative margin to offset body padding */
        padding-top: 98px; /* Add padding back to maintain spacing */
    }
    
    /* Show Ray-Ban logo only on mobile */
    .hero-video-container .hero-content img[alt="Ray-Ban Logo"] {
        display: block;
        width: 150px;
        max-width: 60%;
        height: auto;
        margin: 0.5rem auto 1rem;
        object-fit: contain;
    }
    
    .hero-video-container .hero-content {
        bottom: 8px;
        padding: 8px 12px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        gap: 0.5rem;
    }

    .hero-video-container .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-video-container .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding: 0;
        width: 100%;
    }

    .hero-video-container .hero-buttons {
        width: 100%;
        padding: 0;
    }

    .hero-video-container .hero-button {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        display: block;
        text-align: center;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Hero Video Slide */
.hero-video-slide {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video-slide .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-slide .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-video-slide h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.hero-video-slide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-video-slide .hero-button {
    background: rgba(0,0,0,0.7);
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-video-slide .hero-button:hover {
    background: white;
    color: black;
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    padding-top: 102px; /* 64px menu + 38px ribbon */
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.cart-icon {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    position: relative;
}

.cart-icon .cart-count {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #000;
    min-width: auto;
    height: auto;
    padding: 0;
    line-height: 1;
    text-align: left;
    display: none;
}

.cart-icon i {
    font-size: 16px;
}

.cart-icon:hover {
    color: #666;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 70px; /* Added left padding for hamburger */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 60px;
    text-transform: uppercase;
    font-weight: bold;
}

.menu-logo-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-logo {
    height: 40px;
    width: auto;
}

.menu-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-weight: bolder;
    width: 100%;
    align-items: center;
}

.menu-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;

}


.menu-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    height: 100%;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.menu-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #333;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.menu-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.hamburger-menu {
    display: none; /* Hidden by default */
    position: fixed;
    left: 15px;
    top: 15px;
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001; /* Above the header */
    padding: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

/* Hide on desktop by default */
.hamburger-menu {
    display: none;
}

/* Show only on mobile */
@media screen and (max-width: 1024px) {
    .menu-links {
        display: none;
    }

    .menu-container {
        padding-left: 60px; /* Space for hamburger icon */
        justify-content: center;
    }
    
    .hamburger-menu {
        display: flex; /* Show hamburger */
        left: 15px;
        top: 15px;
    }
    
    .menu-logo-link {
        position: static;
        transform: none;
        margin: 0 auto;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    background-color: white;
}

.mobile-menu-logo {
    height: 40px;
    width: auto;
}

.close-menu {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu i {
    font-size: 24px;
    color: #333;
}

.mobile-menu-nav {
    padding: 20px;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav ul li {
    border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-nav ul li:last-child {
    border-bottom: none;
}

.mobile-menu-nav ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-nav ul li a:hover {
    color: #000;
}

/* Subscribe Popout Styles */
.subscribe-popout {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: white;
    z-index: 1000;
    transition: right 0.5s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.subscribe-popout.active {
    right: 0;
}

.subscribe-popout-content {
    padding: 40px 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.subscribe-popout-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.subscribe-popout-close:hover {
    color: #000;
}

.subscribe-popout-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.subscribe-image {
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.subscribe-popout-inner h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.subscribe-popout-inner p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.privacy-link {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #666;
}

.subscribe-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.subscribe-form input {
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 0.9rem;
}

.subscribe-form button {
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #333;
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 640px);
    background: rgba(17, 25, 40, 0.92);
    color: #f9fafb;
    border-radius: 18px;
    box-shadow: 0 20px 45px -20px rgba(15, 23, 42, 0.6);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent.show {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.cookie-consent__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.cookie-consent__message {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent__message a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-consent__button {
    flex: 1;
    min-width: 140px;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-consent__button.accept {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 14px 30px -18px rgba(37, 99, 235, 0.9);
}

.cookie-consent__button.accept:hover,
.cookie-consent__button.preferences:hover {
    transform: translateY(-1px);
}

.cookie-consent__button.preferences {
    background: rgba(255, 255, 255, 0.12);
    color: #e5e7eb;
}

.cookie-consent__button:focus {
    outline: 2px solid rgba(96, 165, 250, 0.8);
    outline-offset: 2px;
}

@media (max-width: 520px) {
    .cookie-consent {
        bottom: 1rem;
        padding: 1.25rem;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

    .cookie-consent__button {
        width: 100%;
    }
}

.subscribe-popout-bottom-text {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    padding: 0 20px;
    line-height: 1.4;
}