/* OMEGA Website Inspired Styles - Clean White Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a2332;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Typography System */
h1, h2, h3, h4, h5, h6,
.slide-title,
.heritage-title,
.tech-title,
.section-title,
.card-title,
.feature-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

a {
    text-decoration: none;
}

/* Header Navigation - OMEGA Style */
.omega-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 100000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Mobile Only Logo Header */
.mobile-logo-header {
    display: none; /* Hidden by default on desktop */
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 100000;
}

.mobile-header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-header-logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
}

.mobile-header-logo:hover .mobile-header-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}

/* New OMEGA-style Navigation */
.omega-nav-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    height: 70px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.3rem;
}

.menu-line {
    width: 20px;
    height: 1px;
    background: #255E26;
    transition: all 0.3s ease;
    display: block;
}

.menu-text {
    font-weight: 600;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a2332;
    margin-top: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.menu-toggle:hover .menu-line {
    background: #255E26;
    transform: scale(1.1);
}

.menu-toggle:hover .menu-text {
    font-weight: 600;
    color: #000000;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.language-selector i {
    font-size: 1.2rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.language-selector:hover i {
    color: #000000;
    transform: scale(1.1);
}

.currency-selector {
    position: relative;
    margin-left: 1rem;
    min-width: 120px;
}

.currency-select-nav {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid rgba(26, 35, 50, 0.1);
    border-radius: 25px;
    background: rgba(26, 35, 50, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.currency-select-nav:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.currency-select-nav:focus {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.currency-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.currency-icon i {
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-icon i {
    font-weight: 600;
    color: #000000;
}

/* Custom dropdown arrow */
.currency-select-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #000000;
    pointer-events: none;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-select-nav::after {
    border-top-color: #000000;
}

/* Enhanced option styling */
.currency-select-nav option {
    padding: 0.8rem 1rem;
    background: #ffffff;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    border: none;
}

.currency-select-nav option:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.currency-select-nav option:checked {
    background: #255E26;
    color: #255E26;
    font-weight: 600;
}

/* Mobile responsive adjustments for currency selector */
@media (max-width: 768px) {
    .nav-left {
        gap: 0.5rem;
    }
    
    .currency-selector {
        min-width: 100px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.8rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .currency-selector {
        min-width: 90px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
}

/* Centered Logo */
.omega-logo-center {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image-center {
    height: 50px;
    width: auto;
    
    transition: all 0.3s ease;
}

.omega-logo-center:hover .logo-image-center {
    
    transform: scale(1.05);
}

/* Right Side Icon Buttons */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem;
    border-radius: 50%;
    position: relative;
    width: 42px;
    height: 42px;
}

.nav-icon-btn i {
    color: #000000;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon-btn:hover i {
    color: #000000;
}

/* Cart Count */
.cart-count-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #255E26;
    color: #255E26;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.cart-count-new[data-count]:not([data-count="0"]) {
    display: flex;
}

/* Main Navigation Menu */
.main-nav-menu {
    background: #ffffff;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.main-nav-links li {
    position: relative;
}

.nav-link {
    display: block;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #255E26;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #000000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #000000;
}

/* Mobile Menu Header with Logo */
.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover .mobile-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
}

.mobile-nav-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.3s ease forwards;
    animation-delay: calc(0.1s * var(--item-index, 0));
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2.5rem;
    color: #000000;
    transform: translateX(10px);
}

.mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    margin: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav-links {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    /* Show mobile logo header only on mobile devices */
    .mobile-logo-header {
        display: block;
    }
    
    /* Hide the center logo in the nav on mobile */
    .nav-center {
        display: none;
    }
    
    /* Adjust navigation bar spacing */
    .omega-nav-new {
        justify-content: space-between;
    }
    
    .main-nav-menu {
        display: none;
    }
    
    .omega-nav-new {
        padding: 1rem;
        height: 60px;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .currency-selector {
        margin-left: 0.5rem;
        min-width: 100px;
    }
    
    .currency-select-nav {
        padding: 0.5rem 2rem 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 30px;
    }
    
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.8rem;
        height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
}

/* Revolutionary Full Width Slider */
.revolutionary-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: #ffffff;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.next {
    transform: translateX(100%);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    transform: scale(1);
}

.slide.active .slide-bg-image {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6rem 0 4rem;
}

.slide-text-wrapper {
    color: #1a2332;
    max-width: 500px;
    text-align: left;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #1a2332;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #6c757d;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    max-width: 450px;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.slide-btn.primary {
    background: #255E26;
    color: #255E26;
    border-color: #1a2332;
}

.slide-btn.primary:hover {
    background: #255E26;
    border-color: #000000;
    transform: translateY(-2px);
}

.slide-btn.secondary {
    background: transparent;
    color: #1a2332;
    border-color: #1a2332;
}

.slide-btn.secondary:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

/* Slide Watch Container */
.slide-watch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-watch {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-watch {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
}

.indicator.active {
    background: #255E26;
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.1);
}

/* Auto-play Controls */
.slider-controls {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
}

.control-btn {
    background: rgba(26, 35, 50, 0.1);
    border: 1px solid rgba(26, 35, 50, 0.2);
    color: #1a2332;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #255E26;
    border-color: #1a2332;
    color: #255E26;
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1rem;
}

/* Slider Animations */
@keyframes rippleIndicator {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-controls {
        top: 2rem;
        right: 2rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Collections Section - Clean & Classy Styling */
.collections-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent);
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #255E26;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.collection-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 35, 50, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover::before {
    background: rgba(26, 35, 50, 0.02);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 35, 50, 0.1);
}

.card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-watch-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

.collection-card:hover .collection-watch-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.card-overlay:hover {
    background: rgba(26, 35, 50, 0.05);
}

.time-display {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.card-overlay:hover .time-display {
    opacity: 1;
}

.card-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.card-description-container {
    position: relative;
    margin-bottom: 2rem;
}

.read-more-btn {
    background: none;
    border: none;
    color: #255E26;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    text-decoration: underline;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.read-more-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.read-more-btn:hover::after {
    width: 100%;
}

.read-more-btn:hover {
    color: #1a2332;
}

/* Mobile responsive styles for read more */
@media (max-width: 768px) {
    .card-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .read-more-btn {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }
}

.product-price {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(26, 35, 50, 0.05);
    border-bottom: 1px solid rgba(26, 35, 50, 0.05);
}

.price {
    font-family: 'Montserrat', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 1px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 0.5rem;
    border: none;
    background: none;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.card-link:hover::after {
    width: 100%;
}

.card-link:hover {
    color: #1a2332;
}

.add-to-cart-btn {
    background: transparent;
    color: #255E26;
    border: 1px solid #255E26;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;

/* Product Link Styles for Collection Cards */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-link .card-title {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.product-link:hover .card-title {
    color: #255E26;
    text-decoration: none;
}

.product-link:hover .collection-watch-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

/* Ensure card-link also has no text decoration */
.card-link {
    text-decoration: none;
}

.card-content > .product-link {
    text-decoration: none;
}

.card-link:hover {
    text-decoration: none;
}

/* Read More Functionality Styles */
.collection-subtitle-container,
.info-description-container {
    position: relative;
    margin-bottom: 1rem;
}

.read-more-btn,
.read-less-btn {
    background: none;
    border: none;
    color: #255E26;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.read-more-btn:hover,
.read-less-btn:hover {
    color: #1a2332;
    text-decoration: none;
}

.collection-subtitle-full,
.info-description-full {
    margin-top: 1rem;
}

.collection-subtitle-full p,
.info-description-full p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Mobile-first layout for product details */
@media (max-width: 768px) {
    .product-details-section {
        padding: 1rem 0;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .product-image-section {
        order: -1; /* This makes the image appear first */
        margin-bottom: 1rem;
    }
    
    .product-info-section {
        padding-left: 0;
        padding-top: 0;
        order: 1;
    }
    
    .product-header {
        margin-bottom: 1.5rem;
    }
    
    .product-title {
        font-size: 2.2rem;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .product-price-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .product-description {
        margin-bottom: 2rem;
    }
    
    .product-specifications {
        margin-bottom: 2rem;
    }
    
    .stock-status {
        margin-bottom: 2rem;
    }
    
    .add-to-cart-section {
        margin-bottom: 2rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .product-details-grid {
        gap: 1rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 1.6rem;
    }
    
    .product-price-section {
        padding: 1rem;
    }
}

/* Force image to appear first on mobile */
@media (max-width: 768px) {
    .product-details-section .product-details-grid .product-image-section {
        order: -1 !important;
        display: block !important;
    }
    
    .product-details-section .product-details-grid .product-info-section {
        order: 1 !important;
    }
}
    width: 100%;
    height: 100%;
    background: #255E26;
    transition: left 0.3s ease;
    z-index: -1;
}

.add-to-cart-btn:hover::before {
    left: 0;
}

.add-to-cart-btn:hover {
    color: #255E26;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: translateX(2px);
}

/* Innovation Lab Section */
.innovation-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}

.innovation-content {
    position: relative;
    z-index: 2;
}

.innovation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.innovation-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.innovation-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #255E26;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.3);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
    border-color: #000000;
}

.innovation-icon i {
    font-size: 2rem;
    color: #000000;
}

.innovation-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.innovation-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
}

.metric-unit {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Technology Section */
.technology-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-visual {
    position: relative;
}

.movement-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.movement-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-pulse {
    width: 100px;
    height: 100px;
    border: 2px solid #255E26;
    border-radius: 50%;
    animation: techPulse 3s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.tech-title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.tech-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-features {
    margin-bottom: 3rem;
}

.tech-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a2332;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.feature-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.tech-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.tech-cta:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Global Presence Section */
.global-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #1a2332 0%, #0f1729 50%, #1a2332 100%);
    text-align: center;
    position: relative;
}

.global-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    display: block;
    margin-bottom: 0.5rem;
    
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.global-map {
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
}

.map-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: mapGlow 4s ease-in-out infinite;
}

@keyframes mapGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* World Map SVG Styling */
.world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.world-map-svg:hover {
    filter: brightness(0.9) contrast(1.3);
    opacity: 1;
}

/* Style individual countries in the SVG */
.world-map-svg path {
    fill: rgba(16, 185, 129, 0.15);
    stroke: rgba(16, 185, 129, 0.3);
    stroke-width: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.world-map-svg path:hover {
    fill: rgba(16, 185, 129, 0.25);
    stroke: rgba(16, 185, 129, 0.6);
    stroke-width: 1;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

/* Special styling for specific countries/regions */
.world-map-svg path[id="US"],
.world-map-svg path[id="GB"],
.world-map-svg path[id="CH"],
.world-map-svg path[id="JP"],
.world-map-svg path[id="AU"],
.world-map-svg path[id="AE"],
.world-map-svg path[id="SG"],
.world-map-svg path[id="BR"] {
    fill: rgba(16, 185, 129, 0.2);
    stroke: rgba(16, 185, 129, 0.5);
    stroke-width: 0.8;
}

.world-map-svg path[id="US"]:hover,
.world-map-svg path[id="GB"]:hover,
.world-map-svg path[id="CH"]:hover,
.world-map-svg path[id="JP"]:hover,
.world-map-svg path[id="AU"]:hover,
.world-map-svg path[id="AE"]:hover,
.world-map-svg path[id="SG"]:hover,
.world-map-svg path[id="BR"]:hover {
    fill: rgba(16, 185, 129, 0.35);
    stroke: rgba(16, 185, 129, 0.8);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connection-line {
    animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 50 50;
        stroke-dashoffset: -25;
    }
}

/* Enhanced Map Points */
.map-point {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.point-pulse {
    width: 100%;
    height: 100%;
    background: #255E26;
    border-radius: 50%;
    animation: pointPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    position: relative;
}

.point-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.map-point:hover .point-pulse {
    animation-duration: 1s;
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
}

/* Enhanced Point Info */
.point-info {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 41, 0.95);
    color: #255E26;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    text-align: center;
}

.point-info::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(15, 23, 41, 0.95);
}

.map-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.city-name {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.city-details {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

/* Regional Statistics */
.regional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.region-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.region-item:hover::before {
    transform: scaleX(1);
}

.region-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.region-item h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.region-item p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.craftsmanship-header {
    text-align: center;
    margin-bottom: 4rem;
}

.craftsmanship-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.craft-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.step-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.craft-step:hover .step-image {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.craft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.craft-step:hover .craft-img {
    transform: scale(1.05);
}

.craft-step h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.craft-step p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
.omega-footer {
    background: linear-gradient(180deg, #0f1729 0%, #0a1220 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    color: #255E26;
}

.omega-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #255E26, transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top Section - Newsletter and Social */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    margin-bottom: 4rem;
}

.newsletter-section,
.social-section {
    text-align: left;
}

.newsletter-title,
.social-title {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0;
    color: #255E26;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6b7a8f;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input:focus {
    border-color: #000000;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.newsletter-submit {
    background: #255E26;
    border: none;
    color: #255E26;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.newsletter-submit:hover {
    background: #801422;
    transform: translateX(3px);
}

.newsletter-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.newsletter-submit:hover i {
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-link:hover {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding-bottom: 0.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.footer-links-list a:hover::before {
    width: 100%;
}

.footer-links-list a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* Contact Column Special Styling */
.contact-column {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.contact-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    border-radius: 10px 10px 0 0;
}

.contact-info p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: #255E26;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    color: #6b7a8f;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
}

.legal-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.legal-links a:hover::before {
    width: 100%;
}

.legal-links a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* OMEGA Website Inspired Styles - Clean White Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a2332;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Typography System */
h1, h2, h3, h4, h5, h6,
.slide-title,
.heritage-title,
.tech-title,
.section-title,
.card-title,
.feature-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

/* Header Navigation - OMEGA Style */
.omega-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 100000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Mobile Only Logo Header */
.mobile-logo-header {
    display: none; /* Hidden by default on desktop */
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 100000;
}

.mobile-header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-header-logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
}

.mobile-header-logo:hover .mobile-header-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}

/* New OMEGA-style Navigation */
.omega-nav-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    height: 70px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.3rem;
}

.menu-line {
    width: 20px;
    height: 1px;
    background: #255E26;
    transition: all 0.3s ease;
    display: block;
}

.menu-text {
    font-weight: 600;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a2332;
    margin-top: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.menu-toggle:hover .menu-line {
    background: #255E26;
    transform: scale(1.1);
}

.menu-toggle:hover .menu-text {
    font-weight: 600;
    color: #000000;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.language-selector i {
    font-size: 1.2rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.language-selector:hover i {
    color: #000000;
    transform: scale(1.1);
}

.currency-selector {
    position: relative;
    margin-left: 1rem;
    min-width: 120px;
}

.currency-select-nav {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid rgba(26, 35, 50, 0.1);
    border-radius: 25px;
    background: rgba(26, 35, 50, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.currency-select-nav:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.currency-select-nav:focus {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.currency-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.currency-icon i {
    font-weight: 600;
    font-size: 1rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-icon i {
    font-weight: 600;
    color: #000000;
}

/* Custom dropdown arrow */
.currency-select-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #1a2332;
    pointer-events: none;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-select-nav::after {
    border-top-color: #000000;
}

/* Enhanced option styling */
.currency-select-nav option {
    padding: 0.8rem 1rem;
    background: #ffffff;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    border: none;
}

.currency-select-nav option:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.currency-select-nav option:checked {
    background: #255E26;
    color: #255E26;
    font-weight: 600;
}

/* Mobile responsive adjustments for currency selector */
@media (max-width: 768px) {
    .nav-left {
        gap: 0.5rem;
    }
    
    .currency-selector {
        min-width: 100px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.8rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .currency-selector {
        min-width: 90px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
}

/* Centered Logo */
.omega-logo-center {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image-center {
    height: 50px;
    width: auto;
    
    transition: all 0.3s ease;
}

.omega-logo-center:hover .logo-image-center {
    
    transform: scale(1.05);
}

/* Right Side Icon Buttons */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem;
    border-radius: 50%;
    position: relative;
    width: 42px;
    height: 42px;
}

.nav-icon-btn i {
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon-btn:hover i {
    color: #000000;
}

/* Cart Count */
.cart-count-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #255E26;
    color: #255E26;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.cart-count-new[data-count]:not([data-count="0"]) {
    display: flex;
}

/* Main Navigation Menu */
.main-nav-menu {
    background: #ffffff;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.main-nav-links li {
    position: relative;
}

.nav-link {
    display: block;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #255E26;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #000000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #000000;
}

/* Mobile Menu Header with Logo */
.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover .mobile-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
}

.mobile-nav-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.3s ease forwards;
    animation-delay: calc(0.1s * var(--item-index, 0));
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2.5rem;
    color: #000000;
    transform: translateX(10px);
}

.mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    margin: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav-links {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    /* Show mobile logo header only on mobile devices */
    .mobile-logo-header {
        display: block;
    }
    
    /* Hide the center logo in the nav on mobile */
    .nav-center {
        display: none;
    }
    
    /* Adjust navigation bar spacing */
    .omega-nav-new {
        justify-content: space-between;
    }
    
    .main-nav-menu {
        display: none;
    }
    
    .omega-nav-new {
        padding: 1rem;
        height: 60px;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .currency-selector {
        margin-left: 0.5rem;
        min-width: 100px;
    }
    
    .currency-select-nav {
        padding: 0.5rem 2rem 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 30px;
    }
    
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.8rem;
        height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
}

/* Revolutionary Full Width Slider */
.revolutionary-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: #ffffff;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.next {
    transform: translateX(100%);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    transform: scale(1);
}

.slide.active .slide-bg-image {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6rem 0 4rem;
}

.slide-text-wrapper {
    color: #1a2332;
    max-width: 500px;
    text-align: left;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #1a2332;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #6c757d;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    max-width: 450px;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.slide-btn.primary {
    background: #255E26;
    color: #255E26;
    border-color: #1a2332;
}

.slide-btn.primary:hover {
    background: #255E26;
    border-color: #000000;
    transform: translateY(-2px);
}

.slide-btn.secondary {
    background: transparent;
    color: #1a2332;
    border-color: #1a2332;
}

.slide-btn.secondary:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

/* Slide Watch Container */
.slide-watch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-watch {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-watch {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
}

.indicator.active {
    background: #255E26;
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.1);
}

/* Auto-play Controls */
.slider-controls {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
}

.control-btn {
    background: rgba(26, 35, 50, 0.1);
    border: 1px solid rgba(26, 35, 50, 0.2);
    color: #1a2332;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #255E26;
    border-color: #1a2332;
    color: #255E26;
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1rem;
}

/* Slider Animations */
@keyframes rippleIndicator {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-controls {
        top: 2rem;
        right: 2rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Collections Section - Clean & Classy Styling */
.collections-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent);
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #255E26;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.collection-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 35, 50, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover::before {
    background: rgba(26, 35, 50, 0.02);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 35, 50, 0.1);
}

.card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-watch-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

.collection-card:hover .collection-watch-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.card-overlay:hover {
    background: rgba(26, 35, 50, 0.05);
}

.time-display {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.card-overlay:hover .time-display {
    opacity: 1;
}

.card-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}
/* OMEGA Website Inspired Styles - Clean White Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a2332;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Typography System */
h1, h2, h3, h4, h5, h6,
.slide-title,
.heritage-title,
.tech-title,
.section-title,
.card-title,
.feature-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

/* Header Navigation - OMEGA Style */
.omega-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 100000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Mobile Only Logo Header */
.mobile-logo-header {
    display: none; /* Hidden by default on desktop */
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 100000;
}

.mobile-header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-header-logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
}

.mobile-header-logo:hover .mobile-header-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}

/* New OMEGA-style Navigation */
.omega-nav-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    height: 70px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.3rem;
}

.menu-line {
    width: 20px;
    height: 1px;
    background: #255E26;
    transition: all 0.3s ease;
    display: block;
}

.menu-text {
    font-weight: 600;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a2332;
    margin-top: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.menu-toggle:hover .menu-line {
    background: #255E26;
    transform: scale(1.1);
}

.menu-toggle:hover .menu-text {
    font-weight: 600;
    color: #000000;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.language-selector i {
    font-size: 1.2rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.language-selector:hover i {
    color: #000000;
    transform: scale(1.1);
}

.currency-selector {
    position: relative;
    margin-left: 1rem;
    min-width: 120px;
}

.currency-select-nav {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid rgba(26, 35, 50, 0.1);
    border-radius: 25px;
    background: rgba(26, 35, 50, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.currency-select-nav:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.currency-select-nav:focus {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.currency-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.currency-icon i {
    font-weight: 600;
    font-size: 1rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-icon i {
    font-weight: 600;
    color: #000000;
}

/* Custom dropdown arrow */
.currency-select-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #1a2332;
    pointer-events: none;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-select-nav::after {
    border-top-color: #000000;
}

/* Enhanced option styling */
.currency-select-nav option {
    padding: 0.8rem 1rem;
    background: #ffffff;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    border: none;
}

.currency-select-nav option:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.currency-select-nav option:checked {
    background: #255E26;
    color: #255E26;
    font-weight: 600;
}

/* Mobile responsive adjustments for currency selector */
@media (max-width: 768px) {
    .nav-left {
        gap: 0.5rem;
    }
    
    .currency-selector {
        min-width: 100px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.8rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .currency-selector {
        min-width: 90px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
}

/* Centered Logo */
.omega-logo-center {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image-center {
    height: 50px;
    width: auto;
    
    transition: all 0.3s ease;
}

.omega-logo-center:hover .logo-image-center {
    
    transform: scale(1.05);
}

/* Right Side Icon Buttons */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem;
    border-radius: 50%;
    position: relative;
    width: 42px;
    height: 42px;
}

.nav-icon-btn i {
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon-btn:hover i {
    color: #000000;
}

/* Cart Count */
.cart-count-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #255E26;
    color: #255E26;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.cart-count-new[data-count]:not([data-count="0"]) {
    display: flex;
}

/* Main Navigation Menu */
.main-nav-menu {
    background: #ffffff;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.main-nav-links li {
    position: relative;
}

.nav-link {
    display: block;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #255E26;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #000000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #000000;
}

/* Mobile Menu Header with Logo */
.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover .mobile-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
}

.mobile-nav-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.3s ease forwards;
    animation-delay: calc(0.1s * var(--item-index, 0));
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2.5rem;
    color: #000000;
    transform: translateX(10px);
}

.mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    margin: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav-links {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    /* Show mobile logo header only on mobile devices */
    .mobile-logo-header {
        display: block;
    }
    
    /* Hide the center logo in the nav on mobile */
    .nav-center {
        display: none;
    }
    
    /* Adjust navigation bar spacing */
    .omega-nav-new {
        justify-content: space-between;
    }
    
    .main-nav-menu {
        display: none;
    }
    
    .omega-nav-new {
        padding: 1rem;
        height: 60px;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .currency-selector {
        margin-left: 0.5rem;
        min-width: 100px;
    }
    
    .currency-select-nav {
        padding: 0.5rem 2rem 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 30px;
    }
    
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.8rem;
        height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
}

/* Revolutionary Full Width Slider */
.revolutionary-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: #ffffff;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.next {
    transform: translateX(100%);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    transform: scale(1);
}

.slide.active .slide-bg-image {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6rem 0 4rem;
}

.slide-text-wrapper {
    color: #1a2332;
    max-width: 500px;
    text-align: left;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #1a2332;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #6c757d;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    max-width: 450px;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.slide-btn.primary {
    background: #255E26;
    color: #255E26;
    border-color: #1a2332;
}

.slide-btn.primary:hover {
    background: #255E26;
    border-color: #000000;
    transform: translateY(-2px);
}

.slide-btn.secondary {
    background: transparent;
    color: #1a2332;
    border-color: #1a2332;
}

.slide-btn.secondary:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

/* Slide Watch Container */
.slide-watch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-watch {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-watch {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
}

.indicator.active {
    background: #255E26;
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.1);
}

/* Auto-play Controls */
.slider-controls {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
}

.control-btn {
    background: rgba(26, 35, 50, 0.1);
    border: 1px solid rgba(26, 35, 50, 0.2);
    color: #1a2332;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #255E26;
    border-color: #1a2332;
    color: #255E26;
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1rem;
}

/* Slider Animations */
@keyframes rippleIndicator {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-controls {
        top: 2rem;
        right: 2rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Collections Section - Clean & Classy Styling */
.collections-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent);
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #255E26;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.collection-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 35, 50, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover::before {
    background: rgba(26, 35, 50, 0.02);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 35, 50, 0.1);
}

.card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-watch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

.collection-card:hover .collection-watch-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.card-overlay:hover {
    background: rgba(26, 35, 50, 0.05);
}

.time-display {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.card-overlay:hover .time-display {
    opacity: 1;
}

.card-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.product-price {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(26, 35, 50, 0.05);
    border-bottom: 1px solid rgba(26, 35, 50, 0.05);
}

.price {
    font-family: 'Montserrat', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 1px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 0.5rem;
    border: none;
    background: none;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.card-link:hover::after {
    width: 100%;
}

.card-link:hover {
    color: #1a2332;
}

.add-to-cart-btn {
    background: transparent;
    color: #1a2332;
    border: 1px solid #1a2332;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #255E26;
    transition: left 0.3s ease;
    z-index: -1;
}

.add-to-cart-btn:hover::before {
    left: 0;
}

.add-to-cart-btn:hover {
    color: #255E26;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: translateX(2px);
}

/* Innovation Lab Section */
.innovation-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}

.innovation-content {
    position: relative;
    z-index: 2;
}

.innovation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.innovation-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.innovation-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #255E26;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.3);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
    border-color: #000000;
}

.innovation-icon i {
    font-size: 2rem;
    color: #000000;
}

.innovation-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.innovation-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
}

.metric-unit {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Technology Section */
.technology-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-visual {
    position: relative;
}

.movement-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.movement-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-pulse {
    width: 100px;
    height: 100px;
    border: 2px solid #255E26;
    border-radius: 50%;
    animation: techPulse 3s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.tech-title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.tech-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-features {
    margin-bottom: 3rem;
}

.tech-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a2332;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.feature-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.tech-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.tech-cta:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Global Presence Section */
.global-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #1a2332 0%, #0f1729 50%, #1a2332 100%);
    text-align: center;
    position: relative;
}

.global-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    display: block;
    margin-bottom: 0.5rem;
    
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.global-map {
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
}

.map-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: mapGlow 4s ease-in-out infinite;
}

@keyframes mapGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* World Map SVG Styling */
.world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.world-map-svg:hover {
    filter: brightness(0.9) contrast(1.3);
    opacity: 1;
}

/* Style individual countries in the SVG */
.world-map-svg path {
    fill: rgba(16, 185, 129, 0.15);
    stroke: rgba(16, 185, 129, 0.3);
    stroke-width: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.world-map-svg path:hover {
    fill: rgba(16, 185, 129, 0.25);
    stroke: rgba(16, 185, 129, 0.6);
    stroke-width: 1;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

/* Special styling for specific countries/regions */
.world-map-svg path[id="US"],
.world-map-svg path[id="GB"],
.world-map-svg path[id="CH"],
.world-map-svg path[id="JP"],
.world-map-svg path[id="AU"],
.world-map-svg path[id="AE"],
.world-map-svg path[id="SG"],
.world-map-svg path[id="BR"] {
    fill: rgba(16, 185, 129, 0.2);
    stroke: rgba(16, 185, 129, 0.5);
    stroke-width: 0.8;
}

.world-map-svg path[id="US"]:hover,
.world-map-svg path[id="GB"]:hover,
.world-map-svg path[id="CH"]:hover,
.world-map-svg path[id="JP"]:hover,
.world-map-svg path[id="AU"]:hover,
.world-map-svg path[id="AE"]:hover,
.world-map-svg path[id="SG"]:hover,
.world-map-svg path[id="BR"]:hover {
    fill: rgba(16, 185, 129, 0.35);
    stroke: rgba(16, 185, 129, 0.8);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connection-line {
    animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 50 50;
        stroke-dashoffset: -25;
    }
}

/* Enhanced Map Points */
.map-point {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.point-pulse {
    width: 100%;
    height: 100%;
    background: #255E26;
    border-radius: 50%;
    animation: pointPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    position: relative;
}

.point-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.map-point:hover .point-pulse {
    animation-duration: 1s;
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
}

/* Enhanced Point Info */
.point-info {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 41, 0.95);
    color: #255E26;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    text-align: center;
}

.point-info::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(15, 23, 41, 0.95);
}

.map-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.city-name {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.city-details {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

/* Regional Statistics */
.regional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.region-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.region-item:hover::before {
    transform: scaleX(1);
}

.region-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.region-item h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.region-item p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.craftsmanship-header {
    text-align: center;
    margin-bottom: 4rem;
}

.craftsmanship-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.craft-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.step-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.craft-step:hover .step-image {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.craft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.craft-step:hover .craft-img {
    transform: scale(1.05);
}

.craft-step h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.craft-step p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
.omega-footer {
    background: linear-gradient(180deg, #0f1729 0%, #0a1220 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    color: #255E26;
}

.omega-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #255E26, transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top Section - Newsletter and Social */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    margin-bottom: 4rem;
}

.newsletter-section,
.social-section {
    text-align: left;
}

.newsletter-title,
.social-title {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0;
    color: #255E26;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6b7a8f;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input:focus {
    border-color: #000000;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.newsletter-submit {
    background: #255E26;
    border: none;
    color: #255E26;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.newsletter-submit:hover {
    background: #801422;
    transform: translateX(3px);
}

.newsletter-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.newsletter-submit:hover i {
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-link:hover {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding-bottom: 0.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.footer-links-list a:hover::before {
    width: 100%;
}

.footer-links-list a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* Contact Column Special Styling */
.contact-column {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.contact-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    border-radius: 10px 10px 0 0;
}

.contact-info p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: #255E26;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    color: #6b7a8f;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
}

.legal-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.legal-links a:hover::before {
    width: 100%;
}

.legal-links a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* OMEGA Website Inspired Styles - Clean White Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a2332;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Typography System */
h1, h2, h3, h4, h5, h6,
.slide-title,
.heritage-title,
.tech-title,
.section-title,
.card-title,
.feature-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

/* Header Navigation - OMEGA Style */
.omega-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 100000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Mobile Only Logo Header */
.mobile-logo-header {
    display: none; /* Hidden by default on desktop */
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 100000;
}

.mobile-header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-header-logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
}

.mobile-header-logo:hover .mobile-header-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}

/* New OMEGA-style Navigation */
.omega-nav-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    height: 70px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.3rem;
}

.menu-line {
    width: 20px;
    height: 1px;
    background: #255E26;
    transition: all 0.3s ease;
    display: block;
}

.menu-text {
    font-weight: 600;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a2332;
    margin-top: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.menu-toggle:hover .menu-line {
    background: #255E26;
    transform: scale(1.1);
}

.menu-toggle:hover .menu-text {
    font-weight: 600;
    color: #000000;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.language-selector i {
    font-size: 1.2rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.language-selector:hover i {
    color: #000000;
    transform: scale(1.1);
}

.currency-selector {
    position: relative;
    margin-left: 1rem;
    min-width: 120px;
}

.currency-select-nav {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 1px solid rgba(26, 35, 50, 0.1);
    border-radius: 25px;
    background: rgba(26, 35, 50, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.currency-select-nav:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.currency-select-nav:focus {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.currency-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.currency-icon i {
    font-weight: 600;
    font-size: 1rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-icon i {
    font-weight: 600;
    color: #000000;
}

/* Custom dropdown arrow */
.currency-select-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #1a2332;
    pointer-events: none;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-select-nav::after {
    border-top-color: #000000;
}

/* Enhanced option styling */
.currency-select-nav option {
    padding: 0.8rem 1rem;
    background: #ffffff;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    border: none;
}

.currency-select-nav option:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.currency-select-nav option:checked {
    background: #255E26;
    color: #255E26;
    font-weight: 600;
}

/* Mobile responsive adjustments for currency selector */
@media (max-width: 768px) {
    .nav-left {
        gap: 0.5rem;
    }
    
    .currency-selector {
        min-width: 100px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.8rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .currency-selector {
        min-width: 90px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
}

/* Centered Logo */
.omega-logo-center {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image-center {
    height: 50px;
    width: auto;
    
    transition: all 0.3s ease;
}

.omega-logo-center:hover .logo-image-center {
    
    transform: scale(1.05);
}

/* Right Side Icon Buttons */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem;
    border-radius: 50%;
    position: relative;
    width: 42px;
    height: 42px;
}

.nav-icon-btn i {
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon-btn:hover i {
    color: #000000;
}

/* Cart Count */
.cart-count-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #255E26;
    color: #255E26;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.cart-count-new[data-count]:not([data-count="0"]) {
    display: flex;
}

/* Main Navigation Menu */
.main-nav-menu {
    background: #ffffff;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.main-nav-links li {
    position: relative;
}

.nav-link {
    display: block;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #255E26;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #000000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #000000;
}

/* Mobile Menu Header with Logo */
.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover .mobile-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
}

.mobile-nav-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.3s ease forwards;
    animation-delay: calc(0.1s * var(--item-index, 0));
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2.5rem;
    color: #000000;
    transform: translateX(10px);
}

.mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    margin: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav-links {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    /* Show mobile logo header only on mobile devices */
    .mobile-logo-header {
        display: block;
    }
    
    /* Hide the center logo in the nav on mobile */
    .nav-center {
        display: none;
    }
    
    /* Adjust navigation bar spacing */
    .omega-nav-new {
        justify-content: space-between;
    }
    
    .main-nav-menu {
        display: none;
    }
    
    .omega-nav-new {
        padding: 1rem;
        height: 60px;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .currency-selector {
        margin-left: 0.5rem;
        min-width: 100px;
    }
    
    .currency-select-nav {
        padding: 0.5rem 2rem 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 30px;
    }
    
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.8rem;
        height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
}

/* Revolutionary Full Width Slider */
.revolutionary-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: #ffffff;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.next {
    transform: translateX(100%);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    transform: scale(1);
}

.slide.active .slide-bg-image {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6rem 0 4rem;
}

.slide-text-wrapper {
    color: #1a2332;
    max-width: 500px;
    text-align: left;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #1a2332;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #6c757d;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    max-width: 450px;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.slide-btn.primary {
    background: #255E26;
    color: #255E26;
    border-color: #1a2332;
}

.slide-btn.primary:hover {
    background: #255E26;
    border-color: #000000;
    transform: translateY(-2px);
}

.slide-btn.secondary {
    background: transparent;
    color: #1a2332;
    border-color: #1a2332;
}

.slide-btn.secondary:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

/* Slide Watch Container */
.slide-watch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-watch {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-watch {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
}

.indicator.active {
    background: #255E26;
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.1);
}

/* Auto-play Controls */
.slider-controls {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
}

.control-btn {
    background: rgba(26, 35, 50, 0.1);
    border: 1px solid rgba(26, 35, 50, 0.2);
    color: #1a2332;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #255E26;
    border-color: #1a2332;
    color: #255E26;
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1rem;
}

/* Slider Animations */
@keyframes rippleIndicator {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-controls {
        top: 2rem;
        right: 2rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Collections Section - Clean & Classy Styling */
.collections-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent);
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #255E26;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.collection-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 35, 50, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover::before {
    background: rgba(26, 35, 50, 0.02);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 35, 50, 0.1);
}

.card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-watch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

.collection-card:hover .collection-watch-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.card-overlay:hover {
    background: rgba(26, 35, 50, 0.05);
}

.time-display {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.card-overlay:hover .time-display {
    opacity: 1;
}

.card-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.product-price {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(26, 35, 50, 0.05);
    border-bottom: 1px solid rgba(26, 35, 50, 0.05);
}

.price {
    font-family: 'Montserrat', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 1px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 0.5rem;
    border: none;
    background: none;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.card-link:hover::after {
    width: 100%;
}

.card-link:hover {
    color: #1a2332;
}

.add-to-cart-btn {
    background: transparent;
    color: #1a2332;
    border: 1px solid #1a2332;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #255E26;
    transition: left 0.3s ease;
    z-index: -1;
}

.add-to-cart-btn:hover::before {
    left: 0;
}

.add-to-cart-btn:hover {
    color: #255E26;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: translateX(2px);
}

/* Innovation Lab Section */
.innovation-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}

.innovation-content {
    position: relative;
    z-index: 2;
}

.innovation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.innovation-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.innovation-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #255E26;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.3);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
    border-color: #000000;
}

.innovation-icon i {
    font-size: 2rem;
    color: #000000;
}

.innovation-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.innovation-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
}

.metric-unit {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Technology Section */
.technology-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-visual {
    position: relative;
}

.movement-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.movement-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-pulse {
    width: 100px;
    height: 100px;
    border: 2px solid #255E26;
    border-radius: 50%;
    animation: techPulse 3s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.tech-title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.tech-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-features {
    margin-bottom: 3rem;
}

.tech-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a2332;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.feature-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.tech-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.tech-cta:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Global Presence Section */
.global-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #1a2332 0%, #0f1729 50%, #1a2332 100%);
    text-align: center;
    position: relative;
}

.global-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    display: block;
    margin-bottom: 0.5rem;
    
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.global-map {
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
}

.map-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: mapGlow 4s ease-in-out infinite;
}

@keyframes mapGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* World Map SVG Styling */
.world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.world-map-svg:hover {
    filter: brightness(0.9) contrast(1.3);
    opacity: 1;
}

/* Style individual countries in the SVG */
.world-map-svg path {
    fill: rgba(16, 185, 129, 0.15);
    stroke: rgba(16, 185, 129, 0.3);
    stroke-width: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.world-map-svg path:hover {
    fill: rgba(16, 185, 129, 0.25);
    stroke: rgba(16, 185, 129, 0.6);
    stroke-width: 1;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

/* Special styling for specific countries/regions */
.world-map-svg path[id="US"],
.world-map-svg path[id="GB"],
.world-map-svg path[id="CH"],
.world-map-svg path[id="JP"],
.world-map-svg path[id="AU"],
.world-map-svg path[id="AE"],
.world-map-svg path[id="SG"],
.world-map-svg path[id="BR"] {
    fill: rgba(16, 185, 129, 0.2);
    stroke: rgba(16, 185, 129, 0.5);
    stroke-width: 0.8;
}

.world-map-svg path[id="US"]:hover,
.world-map-svg path[id="GB"]:hover,
.world-map-svg path[id="CH"]:hover,
.world-map-svg path[id="JP"]:hover,
.world-map-svg path[id="AU"]:hover,
.world-map-svg path[id="AE"]:hover,
.world-map-svg path[id="SG"]:hover,
.world-map-svg path[id="BR"]:hover {
    fill: rgba(16, 185, 129, 0.35);
    stroke: rgba(16, 185, 129, 0.8);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connection-line {
    animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 50 50;
        stroke-dashoffset: -25;
    }
}

/* Enhanced Map Points */
.map-point {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.point-pulse {
    width: 100%;
    height: 100%;
    background: #255E26;
    border-radius: 50%;
    animation: pointPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    position: relative;
}

.point-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.map-point:hover .point-pulse {
    animation-duration: 1s;
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
}

/* Enhanced Point Info */
.point-info {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 41, 0.95);
    color: #255E26;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    text-align: center;
}

.point-info::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(15, 23, 41, 0.95);
}

.map-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.city-name {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.city-details {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

/* Regional Statistics */
.regional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.region-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.region-item:hover::before {
    transform: scaleX(1);
}

.region-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.region-item h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.region-item p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.craftsmanship-header {
    text-align: center;
    margin-bottom: 4rem;
}

.craftsmanship-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.craft-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    z-index: 10;
    border: 1px solid #255E26;
}

.step-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.craft-step:hover .step-image {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
}

.craft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.craft-step:hover .craft-img {
    transform: scale(1.05);
}

.craft-step h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.craft-step p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
.omega-footer {
    background: linear-gradient(180deg, #0f1729 0%, #0a1220 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    color: #255E26;
}

.omega-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #255E26, transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top Section - Newsletter and Social */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    margin-bottom: 4rem;
}

.newsletter-section,
.social-section {
    text-align: left;
}

.newsletter-title,
.social-title {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0;
    color: #255E26;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6b7a8f;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input:focus {
    border-color: #000000;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.newsletter-submit {
    background: #255E26;
    border: none;
    color: #255E26;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    border: 1px solid #255E26;
}

.newsletter-submit:hover {
    background: #801422;
    transform: translateX(3px);
}

.newsletter-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.newsletter-submit:hover i {
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-link:hover {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding-bottom: 0.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.footer-links-list a:hover::before {
    width: 100%;
}

.footer-links-list a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* Contact Column Special Styling */
.contact-column {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.contact-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    border-radius: 10px 10px 0 0;
}

.contact-info p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: #255E26;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    color: #6b7a8f;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
}

.legal-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.legal-links a:hover::before {
    width: 100%;
}

.legal-links a:hover {
    color: #000000;
}

.footer-language {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-selector:hover {
    color: #000000;
}

.language-selector i {
    font-size: 2rem;
}

.framework-info {
    color: #6b7a8f;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    margin: 0;
    text-align: right;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .newsletter-form {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .omega-footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        align-items: center;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-language {
        align-items: center;
    }
    
    .framework-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-submit {
        align-self: flex-start;
        min-width: auto;
        padding: 1rem 2rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-column {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.4s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.6s; opacity: 0; }
.fade-in-delay-4 { animation-delay: 0.8s; opacity: 0; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .watch-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
    }
    
    .technology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .innovation-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .craftsmanship-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .global-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .omega-nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .watch-showcase {
        height: 60vh;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    /* Innovation Section Responsive */
    .innovation-section {
        padding: 4rem 1rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .innovation-card {
        padding: 2rem 1.5rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    /* Technology Section Responsive */
    .technology-section {
        padding: 4rem 1rem;
    }
    
    .movement-image {
        height: 300px;
    }
    
    .tech-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .tech-feature {
        gap: 1rem;
    }
    
    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Global Section Responsive - Fixed to maintain horizontal layout */
    .global-section {
        padding: 4rem 1rem;
    }
    
    .global-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* Craftsmanship Section Responsive */
    .craftsmanship-section {
        padding: 4rem 1rem;
    }
    
    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-image {
        height: 200px;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        align-items: center;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-language {
        align-items: center;
    }
    
    .framework-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .watch-info {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    /* Innovation Section Mobile */
    .innovation-section {
        padding: 3rem 1rem;
    }
    
    .innovation-card {
        padding: 2rem 1rem;
    }
    
    .innovation-icon {
        width: 60px;
        height: 60px;
    }
    
    .innovation-icon i {
        font-size: 1.5rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    /* Technology Section Mobile */
    .technology-section {
        padding: 3rem 1rem;
    }
    
    .movement-image {
        height: 250px;
    }
    
    .tech-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .tech-subtitle {
        font-size: 1rem;
    }
    
    .tech-feature {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-number {
        margin: 0 auto;
    }
    
    /* Global Section Mobile */
    .global-section {
        padding: 3rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .map-container {
        height: 280px;
    }
    
    .map-point {
        width: 18px;
        height: 18px;
    }
    
    .point-info {
        font-size: 0.7rem;
        padding: 0.6rem 0.8rem;
        min-width: 120px;
        bottom: 30px;
    }
    
    .city-name {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .city-details {
        font-size: 0.65rem;
    }
    
    .regional-stats {
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .region-item {
        padding: 1.2rem 0.8rem;
    }
    
    .region-item h4 {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .region-item p {
        font-size: 0.8rem;
    }
    
    /* Craftsmanship Section Mobile */
    .craftsmanship-section {
        padding: 3rem 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 50px;
        font-size: 0.9rem;
        top: -8px;
        left: 15px;
    }
    
    .step-image {
        height: 180px;
    }
    
    .craft-step h3 {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .craft-step p {
        font-size: 0.85rem;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-submit {
        align-self: flex-start;
        min-width: auto;
        padding: 1rem 2rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-column {
        padding: 1.5rem;
    }
}

/* Heritage Section - NASA Story */
.heritage-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    color: #255E26;
}

.heritage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.heritage-header {
    padding: 2rem 0;
}

.heritage-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.heritage-title {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #255E26;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.heritage-description {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    max-width: 500px;
}

.heritage-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.heritage-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.heritage-cta:hover::before {
    left: 100%;
}

.heritage-cta:hover {
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.heritage-media {
    position: relative;
}

.heritage-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    height: 500px;
}

.heritage-image-left,
.heritage-image-right {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.heritage-image-left:hover,
.heritage-image-right:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(16, 185, 129, 0.2);
}

.heritage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.heritage-image-left:hover .heritage-img,
.heritage-image-right:hover .heritage-img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(15, 23, 41, 0.9);
    border: 1px solid #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(16, 185, 129, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
}

.play-button i {
    font-size: 1.5rem;
    color: #000000;
    margin-left: 3px; /* Optical alignment for play icon */
    transition: color 0.3s ease;
}

.play-button:hover i {
    color: #255E26;
}

/* Responsive Design for Heritage Section */
@media (max-width: 1024px) {
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .heritage-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .heritage-section {
        padding: 4rem 1rem;
    }
    
    .heritage-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .heritage-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .heritage-image-left,
    .heritage-image-right {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .heritage-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .heritage-description {
        font-size: 1rem;
    }
    
    .heritage-cta {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: #ffffff;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.feature-item:hover .feature-icon {
    border-color: #000000;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #255E26;
    stroke-width: 1;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.3));
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #255E26;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Global Section Responsive */
.global-section {
    padding: 4rem 1rem;
}

.global-stats {

    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-number {
    font-size: 2.5rem;
}

.map-container {
    height: 350px;
}

.regional-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.region-item {
    padding: 1.5rem 1rem;
}

.point-info {
    min-width: 150px;
    padding: 0.8rem 1rem;
    font-size: 0.75rem;
}

.city-name {
    font-size: 0.9rem;
}

.city-details {
    font-size: 0.7rem;
}

/* Cart Modal Styles */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.cart-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background: #ffffff;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cart-modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cart-modal-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #1a2332;
    margin: 0;
    text-transform: uppercase;
}

.cart-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.cart-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    transform: scale(1.1);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 2rem;
    max-height: 400px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.cart-item-collection {
    font-size: 0.8rem;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2332;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #255E26;
    color: #255E26;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quantity-btn:hover {
    background: #255E26;
    transform: scale(1.1);
}

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.remove-item-btn {
    background: transparent;
    color: #255E26;
    border: 1px solid #255E26;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0;
}

.remove-item-btn:hover {
    background: #255E26;
    color: #255E26;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.remove-item-btn i {
    transition: transform 0.3s ease;
}

.remove-item-btn:hover i {
    transform: scale(1.1);
}

.cart-modal-footer {
    padding: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cart-total {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cart-total strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #1a2332;
    letter-spacing: 1px;
    font-weight: 600;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-clear-cart,
.btn-checkout {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-clear-cart {
    background: transparent;
    color: #255E26;
    border: 1px solid #255E26;
}

.btn-clear-cart:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

.btn-checkout {
    background: #255E26;
    color: #255E26;
    border: 1px solid #255E26;
}

.btn-checkout:hover {
    background: #255E26;
    border-color: #255E26;
    transform: translateY(-2px);
    text-decoration: none;
    color: #255E26;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(16, 185, 129, 0.01) 100%);
    border-radius: 15px;
    margin: 1rem 0;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.empty-cart-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.empty-cart-icon i {
    font-size: 4rem;
    color: rgba(16, 185, 129, 0.3);
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.1));
    animation: gentleBounce 3s ease-in-out infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.empty-cart h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a2332;
    letter-spacing: 1px;
}

.empty-cart p {
    font-size: 0.95rem;
    color: #6c757d;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.empty-cart-suggestion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    display: inline-flex;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.empty-cart-suggestion:hover {
    background: rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.empty-cart-suggestion i {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.1) rotate(90deg); opacity: 1; }
}

/* Enhanced Toast Notification Responsiveness */
.toast {
    position: fixed;
    top: 120px;
    right: 20px;
    background: #255E26;
    color: #255E26;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99999; /* Much higher z-index to ensure it's above navbar */
    max-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.toast.success {
    background: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.toast.error {
    background: #255E26;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.toast.info {
    background: #17a2b8;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
}

/* Mobile toast responsiveness */
@media (max-width: 768px) {
    .toast {
        top: 90px; /* Position below navbar with more clearance */
        right: 15px;
        left: 15px;
        max-width: none;
        text-align: center;
        font-size: 0.85rem;
        padding: 1rem 1.2rem;
        border-radius: 12px;
        transform: translateY(-100px); /* Start position above viewport */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        z-index: 99999; /* Consistent high z-index for mobile */
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        opacity: 0;
        pointer-events: none;
    }
    
    .toast.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Ensure toast disappears completely when not showing */
    .toast:not(.show) {
        transform: translateY(-100px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden;
    }
}

@media (max-width: 480px) {
    .toast {
        top: 15px;
        font-size: 0.8rem;
        padding: 0.9rem 1rem;
        border-radius: 10px;
        margin: 0 10px;
        left: 10px;
        right: 10px;
        /* Ensure clean transitions on small screens */
        transform: translateY(-120px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
    
    .toast:not(.show) {
        transform: translateY(-120px) !important;
        opacity: 0 !important;
        visibility: hidden;
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .omega-nav-new {
        padding: 0.8rem 1rem;
        height: auto;
        min-height: 60px;
        flex-wrap: wrap;
    }
    
    .nav-left {
        gap: 0.8rem;
        flex: 0 0 auto;
        order: 1;
    }
    
    .nav-center {
        flex: 1;
        order: 2;
        justify-content: center;
    }
    
    .nav-right {
        gap: 0.8rem;
        flex: 0 0 auto;
        order: 3;
    }
    
    .currency-selector {
        min-width: 85px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.7rem;
        border-radius: 20px;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 32px;
    }
    
    .nav-icon-btn {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 18px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
        margin-top: 0.2rem;
    }
    
    /* Mobile menu improvements */
    .mobile-menu-overlay {
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu-content {
        padding: 3rem 2rem;
    }
    
    .mobile-nav-links a {
        font-size: 1.3rem;
        padding: 0.5rem;
        display: block;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-links a:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.6rem 0.8rem;
        min-height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.6rem;
    }
    
    .currency-selector {
        min-width: 75px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
        border-radius: 18px;
    }
    
    .currency-icon {
        right: 0.5rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
    
    .cart-count-new {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
}

@media (max-width: 360px) {
    .mobile-logo-header {
        padding: 0.75rem 0;
    }
    
    .mobile-header-logo-image {
        height: 50px;
        max-width: 160px;
    }
}

/* Enhanced Responsive Design for Hero Slider */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3.2rem;
        letter-spacing: 0.05em;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .slide-actions {
        justify-content: center;
    }
    
    .slide-watch {
        max-height: 60vh;
    }
}

@media (max-width: 768px) {
    .revolutionary-slider {
        height: 90vh; /* Slightly shorter on mobile */
        margin-top: 120px; /* Account for mobile logo header + navigation */
        height: calc(100vh - 120px); /* Adjust height to account for header */
    }
    
    .slide-content {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .slide-title {
        font-size: 2.8rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.8rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        max-width: 500px;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .slide-btn {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        min-width: 200px;
    }
    
    .slide-watch {
        max-height: 50vh;
        max-width: 80%;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .slider-controls {
        top: 2rem;
        right: 1.5rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
    
    .control-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .revolutionary-slider {
        height: 85vh;
        margin-top: 110px; /* Account for smaller mobile header */
        height: calc(100vh - 110px);
    }
    
    .slide-content {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .slide-title {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
        margin-bottom: 0.6rem;
        line-height: 1.1;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .slide-btn {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
        min-width: 180px;
    }
    
    .slide-watch {
        max-height: 40vh;
        max-width: 90%;
    }
    
    .slider-navigation {
        bottom: 1.5rem;
    }
    
    .slider-indicators {
        gap: 0.6rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .slider-controls {
        top: 1.5rem;
        right: 1rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .control-btn i {
        font-size: 1rem;
    }
}

/* Enhanced Collections Section Responsiveness */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .collections-section {
        padding: 4rem 2rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        letter-spacing: 1.5px;
    }
    
    .collection-card {
        border-radius: 12px;
    }
    
    .card-image {
        height: 280px;
    }
    
    .card-content {
        padding: 1.8rem;
    }
    
    .card-title {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .card-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .collections-section {
        padding: 3rem 1.5rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        letter-spacing: 1px;
    }
    
    .collection-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .card-image {
        height: 250px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-actions {
        gap: 0.8rem;
        margin-top: 1.2rem;
    }
    
    .add-to-cart-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    
    .card-link {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        padding: 0.4rem 0;
    }
    
    /* Product price styling improvements */
    .product-price {
        margin: 1.2rem 0;
        text-align: center;
    }
    
    .price {
        font-size: 1.3rem;
        font-weight: 600;
        color: #000000;
        letter-spacing: 0.5px;
        font-family: 'Montserrat', sans-serif;
    }
}

@media (max-width: 480px) {
    .collections-section {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        letter-spacing: 0.5px;
    }
    
    .collections-grid {
        max-width: 100%;
    }
    
    .card-image {
        height: 220px;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .card-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .product-price {
        margin: 1rem 0;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .card-actions {
        gap: 0.6rem;
        margin-top: 1rem;
    }
    
    .add-to-cart-btn {
        padding: 0.8rem 1rem;
        font-size: 0.7rem;
        border-radius: 20px;
    }
    
    .add-to-cart-btn i {
        font-size: 0.9rem;
    }
    
    .card-link {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
} 

/* Enhanced Cart Modal Responsiveness */
@media (max-width: 1024px) {
    .cart-modal-content {
        width: 85%;
        max-width: 550px;
    }
    
    .cart-modal-header h3 {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }
    
    .cart-item {
        gap: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .cart-modal {
        align-items: flex-end;
        padding: 0;
    }
    
    .cart-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        margin: 0;
    }
    
    .cart-modal-header {
        padding: 1.5rem;
        position: sticky;
        top: 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        z-index: 10;
        border-radius: 20px 20px 0 0;
    }
    
    .cart-modal-header h3 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .cart-modal-close {
        padding: 0.6rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }
    
    .cart-modal-close:hover {
        transform: scale(1.05);
    }
    
    .cart-modal-body {
        padding: 1rem 1.5rem;
        max-height: 50vh;
    }
    
    .cart-item {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 0;
        align-items: flex-start;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .cart-item-details {
        flex: 1;
        min-width: 0;
    }
    
    .cart-item-name {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0.3px;
    }
    
    .cart-item-collection {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .cart-item-price {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .cart-item-controls {
        flex: 0 0 100%;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .quantity-btn {
        width: 35px;
        height: 50px;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .quantity-display {
        min-width: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(16, 185, 129, 0.1);
    }
    
    .remove-item-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        touch-action: manipulation;
    }
    
    .cart-modal-footer {
        padding: 1.5rem;
        position: sticky;
        bottom: 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        z-index: 10;
    }
    
    .cart-total strong {
        font-size: 1.3rem;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-clear-cart,
    .btn-checkout {
        width: 100%;
        padding: 1rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
        touch-action: manipulation;
    }
    
    /* Empty cart mobile styling */
    .empty-cart {
        padding: 3rem 1.5rem;
        margin: 0.5rem 0;
    }
    
    .empty-cart-icon i {
        font-size: 3.5rem;
    }
    
    .empty-cart h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .empty-cart p {
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .empty-cart-suggestion {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
}

/* OMEGA Website Inspired Styles - Clean White Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a2332;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Typography System */
h1, h2, h3, h4, h5, h6,
.slide-title,
.heritage-title,
.tech-title,
.section-title,
.card-title,
.feature-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

/* Header Navigation - OMEGA Style */
.omega-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 100000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Mobile Only Logo Header */
.mobile-logo-header {
    display: none; /* Hidden by default on desktop */
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 100000;
}

.mobile-header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-header-logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
}

.mobile-header-logo:hover .mobile-header-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}

/* New OMEGA-style Navigation */
.omega-nav-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    height: 70px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.3rem;
}

.menu-line {
    width: 20px;
    height: 1px;
    background: #255E26;
    transition: all 0.3s ease;
    display: block;
}

.menu-text {
    font-weight: 600;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a2332;
    margin-top: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.menu-toggle:hover .menu-line {
    background: #255E26;
    transform: scale(1.1);
}

.menu-toggle:hover .menu-text {
    font-weight: 600;
    color: #000000;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.language-selector i {
    font-size: 1.2rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.language-selector:hover i {
    color: #000000;
    transform: scale(1.1);
}

.currency-selector {
    position: relative;
    margin-left: 1rem;
    min-width: 120px;
}

.currency-select-nav {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid rgba(26, 35, 50, 0.1);
    border-radius: 25px;
    background: rgba(26, 35, 50, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.currency-select-nav:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.currency-select-nav:focus {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.currency-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.currency-icon i {
    font-weight: 600;
    font-size: 1rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-icon i {
    font-weight: 600;
    color: #000000;
}

/* Custom dropdown arrow */
.currency-select-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #1a2332;
    pointer-events: none;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-select-nav::after {
    border-top-color: #000000;
}

/* Enhanced option styling */
.currency-select-nav option {
    padding: 0.8rem 1rem;
    background: #ffffff;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    border: none;
}

.currency-select-nav option:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.currency-select-nav option:checked {
    background: #255E26;
    color: #255E26;
    font-weight: 600;
}

/* Mobile responsive adjustments for currency selector */
@media (max-width: 768px) {
    .nav-left {
        gap: 0.5rem;
    }
    
    .currency-selector {
        min-width: 100px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.8rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .currency-selector {
        min-width: 90px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
}

/* Centered Logo */
.omega-logo-center {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image-center {
    height: 50px;
    width: auto;
    
    transition: all 0.3s ease;
}

.omega-logo-center:hover .logo-image-center {
    
    transform: scale(1.05);
}

/* Right Side Icon Buttons */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem;
    border-radius: 50%;
    position: relative;
    width: 42px;
    height: 42px;
}

.nav-icon-btn i {
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon-btn:hover i {
    color: #000000;
}

/* Cart Count */
.cart-count-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #255E26;
    color: #255E26;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.cart-count-new[data-count]:not([data-count="0"]) {
    display: flex;
}

/* Main Navigation Menu */
.main-nav-menu {
    background: #ffffff;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.main-nav-links li {
    position: relative;
}

.nav-link {
    display: block;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #255E26;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #000000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #000000;
}

/* Mobile Menu Header with Logo */
.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover .mobile-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
}

.mobile-nav-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.3s ease forwards;
    animation-delay: calc(0.1s * var(--item-index, 0));
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2.5rem;
    color: #000000;
    transform: translateX(10px);
}

.mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    margin: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav-links {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    /* Show mobile logo header only on mobile devices */
    .mobile-logo-header {
        display: block;
    }
    
    /* Hide the center logo in the nav on mobile */
    .nav-center {
        display: none;
    }
    
    /* Adjust navigation bar spacing */
    .omega-nav-new {
        justify-content: space-between;
    }
    
    .main-nav-menu {
        display: none;
    }
    
    .omega-nav-new {
        padding: 1rem;
        height: 60px;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .currency-selector {
        margin-left: 0.5rem;
        min-width: 100px;
    }
    
    .currency-select-nav {
        padding: 0.5rem 2rem 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 30px;
    }
    
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.8rem;
        height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
}

/* Revolutionary Full Width Slider */
.revolutionary-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: #ffffff;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.next {
    transform: translateX(100%);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    transform: scale(1);
}

.slide.active .slide-bg-image {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6rem 0 4rem;
}

.slide-text-wrapper {
    color: #1a2332;
    max-width: 500px;
    text-align: left;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #1a2332;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #6c757d;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    max-width: 450px;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.slide-btn.primary {
    background: #255E26;
    color: #255E26;
    border-color: #1a2332;
}

.slide-btn.primary:hover {
    background: #255E26;
    border-color: #000000;
    transform: translateY(-2px);
}

.slide-btn.secondary {
    background: transparent;
    color: #1a2332;
    border-color: #1a2332;
}

.slide-btn.secondary:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

/* Slide Watch Container */
.slide-watch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-watch {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-watch {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
}

.indicator.active {
    background: #255E26;
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.1);
}

/* Auto-play Controls */
.slider-controls {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
}

.control-btn {
    background: rgba(26, 35, 50, 0.1);
    border: 1px solid rgba(26, 35, 50, 0.2);
    color: #1a2332;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #255E26;
    border-color: #1a2332;
    color: #255E26;
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1rem;
}

/* Slider Animations */
@keyframes rippleIndicator {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-controls {
        top: 2rem;
        right: 2rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Collections Section - Clean & Classy Styling */
.collections-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent);
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #255E26;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.collection-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 35, 50, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover::before {
    background: rgba(26, 35, 50, 0.02);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 35, 50, 0.1);
}

.card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-watch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

.collection-card:hover .collection-watch-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.card-overlay:hover {
    background: rgba(26, 35, 50, 0.05);
}

.time-display {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.card-overlay:hover .time-display {
    opacity: 1;
}

.card-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.product-price {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(26, 35, 50, 0.05);
    border-bottom: 1px solid rgba(26, 35, 50, 0.05);
}

.price {
    font-family: 'Montserrat', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 1px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 0.5rem;
    border: none;
    background: none;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.card-link:hover::after {
    width: 100%;
}

.card-link:hover {
    color: #1a2332;
}

.add-to-cart-btn {
    background: transparent;
    color: #1a2332;
    border: 1px solid #1a2332;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #255E26;
    transition: left 0.3s ease;
    z-index: -1;
}

.add-to-cart-btn:hover::before {
    left: 0;
}

.add-to-cart-btn:hover {
    color: #255E26;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: translateX(2px);
}

/* Innovation Lab Section */
.innovation-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}

.innovation-content {
    position: relative;
    z-index: 2;
}

.innovation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.innovation-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.innovation-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #255E26;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.3);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
    border-color: #000000;
}

.innovation-icon i {
    font-size: 2rem;
    color: #000000;
}

.innovation-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.innovation-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
}

.metric-unit {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Technology Section */
.technology-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-visual {
    position: relative;
}

.movement-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.movement-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-pulse {
    width: 100px;
    height: 100px;
    border: 2px solid #255E26;
    border-radius: 50%;
    animation: techPulse 3s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.tech-title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.tech-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-features {
    margin-bottom: 3rem;
}

.tech-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a2332;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.feature-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.tech-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.tech-cta:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Global Presence Section */
.global-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #1a2332 0%, #0f1729 50%, #1a2332 100%);
    text-align: center;
    position: relative;
}

.global-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    display: block;
    margin-bottom: 0.5rem;
    
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.global-map {
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
}

.map-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: mapGlow 4s ease-in-out infinite;
}

@keyframes mapGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* World Map SVG Styling */
.world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.world-map-svg:hover {
    filter: brightness(0.9) contrast(1.3);
    opacity: 1;
}

/* Style individual countries in the SVG */
.world-map-svg path {
    fill: rgba(16, 185, 129, 0.15);
    stroke: rgba(16, 185, 129, 0.3);
    stroke-width: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.world-map-svg path:hover {
    fill: rgba(16, 185, 129, 0.25);
    stroke: rgba(16, 185, 129, 0.6);
    stroke-width: 1;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

/* Special styling for specific countries/regions */
.world-map-svg path[id="US"],
.world-map-svg path[id="GB"],
.world-map-svg path[id="CH"],
.world-map-svg path[id="JP"],
.world-map-svg path[id="AU"],
.world-map-svg path[id="AE"],
.world-map-svg path[id="SG"],
.world-map-svg path[id="BR"] {
    fill: rgba(16, 185, 129, 0.2);
    stroke: rgba(16, 185, 129, 0.5);
    stroke-width: 0.8;
}

.world-map-svg path[id="US"]:hover,
.world-map-svg path[id="GB"]:hover,
.world-map-svg path[id="CH"]:hover,
.world-map-svg path[id="JP"]:hover,
.world-map-svg path[id="AU"]:hover,
.world-map-svg path[id="AE"]:hover,
.world-map-svg path[id="SG"]:hover,
.world-map-svg path[id="BR"]:hover {
    fill: rgba(16, 185, 129, 0.35);
    stroke: rgba(16, 185, 129, 0.8);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connection-line {
    animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 50 50;
        stroke-dashoffset: -25;
    }
}

/* Enhanced Map Points */
.map-point {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.point-pulse {
    width: 100%;
    height: 100%;
    background: #255E26;
    border-radius: 50%;
    animation: pointPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    position: relative;
}

.point-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.map-point:hover .point-pulse {
    animation-duration: 1s;
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
}

/* Enhanced Point Info */
.point-info {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 41, 0.95);
    color: #255E26;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    text-align: center;
}

.point-info::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(15, 23, 41, 0.95);
}

.map-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.city-name {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.city-details {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

/* Regional Statistics */
.regional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.region-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.region-item:hover::before {
    transform: scaleX(1);
}

.region-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.region-item h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.region-item p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.craftsmanship-header {
    text-align: center;
    margin-bottom: 4rem;
}

.craftsmanship-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.craft-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.step-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.craft-step:hover .step-image {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.craft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.craft-step:hover .craft-img {
    transform: scale(1.05);
}

.craft-step h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.craft-step p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
.omega-footer {
    background: linear-gradient(180deg, #0f1729 0%, #0a1220 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    color: #255E26;
}

.omega-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #255E26, transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top Section - Newsletter and Social */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    margin-bottom: 4rem;
}

.newsletter-section,
.social-section {
    text-align: left;
}

.newsletter-title,
.social-title {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0;
    color: #255E26;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6b7a8f;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input:focus {
    border-color: #000000;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.newsletter-submit {
    background: #255E26;
    border: none;
    color: #255E26;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.newsletter-submit:hover {
    background: #801422;
    transform: translateX(3px);
}

.newsletter-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.newsletter-submit:hover i {
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-link:hover {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding-bottom: 0.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.footer-links-list a:hover::before {
    width: 100%;
}

.footer-links-list a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* Contact Column Special Styling */
.contact-column {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.contact-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    border-radius: 10px 10px 0 0;
}

.contact-info p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: #255E26;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    color: #6b7a8f;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
}

.legal-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.legal-links a:hover::before {
    width: 100%;
}

.legal-links a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* OMEGA Website Inspired Styles - Clean White Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a2332;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Typography System */
h1, h2, h3, h4, h5, h6,
.slide-title,
.heritage-title,
.tech-title,
.section-title,
.card-title,
.feature-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

/* Header Navigation - OMEGA Style */
.omega-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 100000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Mobile Only Logo Header */
.mobile-logo-header {
    display: none; /* Hidden by default on desktop */
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 100000;
}

.mobile-header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-header-logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
}

.mobile-header-logo:hover .mobile-header-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}

/* New OMEGA-style Navigation */
.omega-nav-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    height: 70px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.3rem;
}

.menu-line {
    width: 20px;
    height: 1px;
    background: #255E26;
    transition: all 0.3s ease;
    display: block;
}

.menu-text {
    font-weight: 600;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a2332;
    margin-top: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.menu-toggle:hover .menu-line {
    background: #255E26;
    transform: scale(1.1);
}

.menu-toggle:hover .menu-text {
    font-weight: 600;
    color: #000000;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.language-selector i {
    font-size: 1.2rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.language-selector:hover i {
    color: #000000;
    transform: scale(1.1);
}

.currency-selector {
    position: relative;
    margin-left: 1rem;
    min-width: 120px;
}

.currency-select-nav {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid rgba(26, 35, 50, 0.1);
    border-radius: 25px;
    background: rgba(26, 35, 50, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.currency-select-nav:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.currency-select-nav:focus {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.currency-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.currency-icon i {
    font-weight: 600;
    font-size: 1rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-icon i {
    font-weight: 600;
    color: #000000;
}

/* Custom dropdown arrow */
.currency-select-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #1a2332;
    pointer-events: none;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-select-nav::after {
    border-top-color: #000000;
}

/* Enhanced option styling */
.currency-select-nav option {
    padding: 0.8rem 1rem;
    background: #ffffff;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    border: none;
}

.currency-select-nav option:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.currency-select-nav option:checked {
    background: #255E26;
    color: #255E26;
    font-weight: 600;
}

/* Mobile responsive adjustments for currency selector */
@media (max-width: 768px) {
    .nav-left {
        gap: 0.5rem;
    }
    
    .currency-selector {
        min-width: 100px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.8rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .currency-selector {
        min-width: 90px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
}

/* Centered Logo */
.omega-logo-center {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image-center {
    height: 50px;
    width: auto;
    
    transition: all 0.3s ease;
}

.omega-logo-center:hover .logo-image-center {
    
    transform: scale(1.05);
}

/* Right Side Icon Buttons */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem;
    border-radius: 50%;
    position: relative;
    width: 42px;
    height: 42px;
}

.nav-icon-btn i {
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon-btn:hover i {
    color: #000000;
}

/* Cart Count */
.cart-count-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #255E26;
    color: #255E26;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.cart-count-new[data-count]:not([data-count="0"]) {
    display: flex;
}

/* Main Navigation Menu */
.main-nav-menu {
    background: #ffffff;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.main-nav-links li {
    position: relative;
}

.nav-link {
    display: block;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #255E26;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #000000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #000000;
}

/* Mobile Menu Header with Logo */
.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover .mobile-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
}

.mobile-nav-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.3s ease forwards;
    animation-delay: calc(0.1s * var(--item-index, 0));
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2.5rem;
    color: #000000;
    transform: translateX(10px);
}

.mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    margin: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav-links {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    /* Show mobile logo header only on mobile devices */
    .mobile-logo-header {
        display: block;
    }
    
    /* Hide the center logo in the nav on mobile */
    .nav-center {
        display: none;
    }
    
    /* Adjust navigation bar spacing */
    .omega-nav-new {
        justify-content: space-between;
    }
    
    .main-nav-menu {
        display: none;
    }
    
    .omega-nav-new {
        padding: 1rem;
        height: 60px;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .currency-selector {
        margin-left: 0.5rem;
        min-width: 100px;
    }
    
    .currency-select-nav {
        padding: 0.5rem 2rem 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 30px;
    }
    
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.8rem;
        height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
}

/* Revolutionary Full Width Slider */
.revolutionary-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: #ffffff;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.next {
    transform: translateX(100%);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    transform: scale(1);
}

.slide.active .slide-bg-image {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6rem 0 4rem;
}

.slide-text-wrapper {
    color: #1a2332;
    max-width: 500px;
    text-align: left;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #1a2332;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #6c757d;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    max-width: 450px;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.slide-btn.primary {
    background: #255E26;
    color: #255E26;
    border-color: #1a2332;
}

.slide-btn.primary:hover {
    background: #255E26;
    border-color: #000000;
    transform: translateY(-2px);
}

.slide-btn.secondary {
    background: transparent;
    color: #1a2332;
    border-color: #1a2332;
}

.slide-btn.secondary:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

/* Slide Watch Container */
.slide-watch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-watch {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-watch {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
}

.indicator.active {
    background: #255E26;
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.1);
}

/* Auto-play Controls */
.slider-controls {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
}

.control-btn {
    background: rgba(26, 35, 50, 0.1);
    border: 1px solid rgba(26, 35, 50, 0.2);
    color: #1a2332;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #255E26;
    border-color: #1a2332;
    color: #255E26;
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1rem;
}

/* Slider Animations */
@keyframes rippleIndicator {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-controls {
        top: 2rem;
        right: 2rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Collections Section - Clean & Classy Styling */
.collections-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent);
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #255E26;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.collection-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 35, 50, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover::before {
    background: rgba(26, 35, 50, 0.02);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 35, 50, 0.1);
}

.card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-watch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

.collection-card:hover .collection-watch-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.card-overlay:hover {
    background: rgba(26, 35, 50, 0.05);
}

.time-display {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.card-overlay:hover .time-display {
    opacity: 1;
}

.card-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}
/* OMEGA Website Inspired Styles - Clean White Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a2332;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Typography System */
h1, h2, h3, h4, h5, h6,
.slide-title,
.heritage-title,
.tech-title,
.section-title,
.card-title,
.feature-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

/* Header Navigation - OMEGA Style */
.omega-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 100000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Mobile Only Logo Header */
.mobile-logo-header {
    display: none; /* Hidden by default on desktop */
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 100000;
}

.mobile-header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-header-logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
}

.mobile-header-logo:hover .mobile-header-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}

/* New OMEGA-style Navigation */
.omega-nav-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    height: 70px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.3rem;
}

.menu-line {
    width: 20px;
    height: 1px;
    background: #255E26;
    transition: all 0.3s ease;
    display: block;
}

.menu-text {
    font-weight: 600;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a2332;
    margin-top: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.menu-toggle:hover .menu-line {
    background: #255E26;
    transform: scale(1.1);
}

.menu-toggle:hover .menu-text {
    font-weight: 600;
    color: #000000;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.language-selector i {
    font-size: 1.2rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.language-selector:hover i {
    color: #000000;
    transform: scale(1.1);
}

.currency-selector {
    position: relative;
    margin-left: 1rem;
    min-width: 120px;
}

.currency-select-nav {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid rgba(26, 35, 50, 0.1);
    border-radius: 25px;
    background: rgba(26, 35, 50, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.currency-select-nav:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.currency-select-nav:focus {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.currency-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.currency-icon i {
    font-weight: 600;
    font-size: 1rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-icon i {
    font-weight: 600;
    color: #000000;
}

/* Custom dropdown arrow */
.currency-select-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #1a2332;
    pointer-events: none;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-select-nav::after {
    border-top-color: #000000;
}

/* Enhanced option styling */
.currency-select-nav option {
    padding: 0.8rem 1rem;
    background: #ffffff;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    border: none;
}

.currency-select-nav option:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.currency-select-nav option:checked {
    background: #255E26;
    color: #255E26;
    font-weight: 600;
}

/* Mobile responsive adjustments for currency selector */
@media (max-width: 768px) {
    .nav-left {
        gap: 0.5rem;
    }
    
    .currency-selector {
        min-width: 100px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.8rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .currency-selector {
        min-width: 90px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
}

/* Centered Logo */
.omega-logo-center {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image-center {
    height: 50px;
    width: auto;
    
    transition: all 0.3s ease;
}

.omega-logo-center:hover .logo-image-center {
    
    transform: scale(1.05);
}

/* Right Side Icon Buttons */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem;
    border-radius: 50%;
    position: relative;
    width: 42px;
    height: 42px;
}

.nav-icon-btn i {
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon-btn:hover i {
    color: #000000;
}

/* Cart Count */
.cart-count-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #255E26;
    color: #255E26;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.cart-count-new[data-count]:not([data-count="0"]) {
    display: flex;
}

/* Main Navigation Menu */
.main-nav-menu {
    background: #ffffff;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.main-nav-links li {
    position: relative;
}

.nav-link {
    display: block;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #255E26;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #000000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #000000;
}

/* Mobile Menu Header with Logo */
.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover .mobile-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
}

.mobile-nav-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.3s ease forwards;
    animation-delay: calc(0.1s * var(--item-index, 0));
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2.5rem;
    color: #000000;
    transform: translateX(10px);
}

.mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    margin: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav-links {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    /* Show mobile logo header only on mobile devices */
    .mobile-logo-header {
        display: block;
    }
    
    /* Hide the center logo in the nav on mobile */
    .nav-center {
        display: none;
    }
    
    /* Adjust navigation bar spacing */
    .omega-nav-new {
        justify-content: space-between;
    }
    
    .main-nav-menu {
        display: none;
    }
    
    .omega-nav-new {
        padding: 1rem;
        height: 60px;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .currency-selector {
        margin-left: 0.5rem;
        min-width: 100px;
    }
    
    .currency-select-nav {
        padding: 0.5rem 2rem 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 30px;
    }
    
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.8rem;
        height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
}

/* Revolutionary Full Width Slider */
.revolutionary-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: #ffffff;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.next {
    transform: translateX(100%);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    transform: scale(1);
}

.slide.active .slide-bg-image {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6rem 0 4rem;
}

.slide-text-wrapper {
    color: #1a2332;
    max-width: 500px;
    text-align: left;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #1a2332;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #6c757d;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    max-width: 450px;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.slide-btn.primary {
    background: #255E26;
    color: #255E26;
    border-color: #1a2332;
}

.slide-btn.primary:hover {
    background: #255E26;
    border-color: #000000;
    transform: translateY(-2px);
}

.slide-btn.secondary {
    background: transparent;
    color: #1a2332;
    border-color: #1a2332;
}

.slide-btn.secondary:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

/* Slide Watch Container */
.slide-watch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-watch {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-watch {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
}

.indicator.active {
    background: #255E26;
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.1);
}

/* Auto-play Controls */
.slider-controls {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
}

.control-btn {
    background: rgba(26, 35, 50, 0.1);
    border: 1px solid rgba(26, 35, 50, 0.2);
    color: #1a2332;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #255E26;
    border-color: #1a2332;
    color: #255E26;
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1rem;
}

/* Slider Animations */
@keyframes rippleIndicator {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-controls {
        top: 2rem;
        right: 2rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Collections Section - Clean & Classy Styling */
.collections-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent);
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #255E26;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.collection-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 35, 50, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover::before {
    background: rgba(26, 35, 50, 0.02);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 35, 50, 0.1);
}

.card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-watch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

.collection-card:hover .collection-watch-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.card-overlay:hover {
    background: rgba(26, 35, 50, 0.05);
}

.time-display {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.card-overlay:hover .time-display {
    opacity: 1;
}

.card-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.product-price {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(26, 35, 50, 0.05);
    border-bottom: 1px solid rgba(26, 35, 50, 0.05);
}

.price {
    font-family: 'Montserrat', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 1px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 0.5rem;
    border: none;
    background: none;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.card-link:hover::after {
    width: 100%;
}

.card-link:hover {
    color: #1a2332;
}

.add-to-cart-btn {
    background: transparent;
    color: #1a2332;
    border: 1px solid #1a2332;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #255E26;
    transition: left 0.3s ease;
    z-index: -1;
}

.add-to-cart-btn:hover::before {
    left: 0;
}

.add-to-cart-btn:hover {
    color: #255E26;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: translateX(2px);
}

/* Innovation Lab Section */
.innovation-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}

.innovation-content {
    position: relative;
    z-index: 2;
}

.innovation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.innovation-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.innovation-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #255E26;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.3);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
    border-color: #000000;
}

.innovation-icon i {
    font-size: 2rem;
    color: #000000;
}

.innovation-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.innovation-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
}

.metric-unit {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Technology Section */
.technology-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-visual {
    position: relative;
}

.movement-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.movement-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-pulse {
    width: 100px;
    height: 100px;
    border: 2px solid #255E26;
    border-radius: 50%;
    animation: techPulse 3s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.tech-title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.tech-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-features {
    margin-bottom: 3rem;
}

.tech-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a2332;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.feature-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.tech-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.tech-cta:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Global Presence Section */
.global-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #1a2332 0%, #0f1729 50%, #1a2332 100%);
    text-align: center;
    position: relative;
}

.global-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    display: block;
    margin-bottom: 0.5rem;
    
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.global-map {
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
}

.map-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: mapGlow 4s ease-in-out infinite;
}

@keyframes mapGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* World Map SVG Styling */
.world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.world-map-svg:hover {
    filter: brightness(0.9) contrast(1.3);
    opacity: 1;
}

/* Style individual countries in the SVG */
.world-map-svg path {
    fill: rgba(16, 185, 129, 0.15);
    stroke: rgba(16, 185, 129, 0.3);
    stroke-width: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.world-map-svg path:hover {
    fill: rgba(16, 185, 129, 0.25);
    stroke: rgba(16, 185, 129, 0.6);
    stroke-width: 1;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

/* Special styling for specific countries/regions */
.world-map-svg path[id="US"],
.world-map-svg path[id="GB"],
.world-map-svg path[id="CH"],
.world-map-svg path[id="JP"],
.world-map-svg path[id="AU"],
.world-map-svg path[id="AE"],
.world-map-svg path[id="SG"],
.world-map-svg path[id="BR"] {
    fill: rgba(16, 185, 129, 0.2);
    stroke: rgba(16, 185, 129, 0.5);
    stroke-width: 0.8;
}

.world-map-svg path[id="US"]:hover,
.world-map-svg path[id="GB"]:hover,
.world-map-svg path[id="CH"]:hover,
.world-map-svg path[id="JP"]:hover,
.world-map-svg path[id="AU"]:hover,
.world-map-svg path[id="AE"]:hover,
.world-map-svg path[id="SG"]:hover,
.world-map-svg path[id="BR"]:hover {
    fill: rgba(16, 185, 129, 0.35);
    stroke: rgba(16, 185, 129, 0.8);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connection-line {
    animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 50 50;
        stroke-dashoffset: -25;
    }
}

/* Enhanced Map Points */
.map-point {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.point-pulse {
    width: 100%;
    height: 100%;
    background: #255E26;
    border-radius: 50%;
    animation: pointPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    position: relative;
}

.point-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.map-point:hover .point-pulse {
    animation-duration: 1s;
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
}

/* Enhanced Point Info */
.point-info {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 41, 0.95);
    color: #255E26;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    text-align: center;
}

.point-info::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(15, 23, 41, 0.95);
}

.map-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.city-name {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.city-details {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

/* Regional Statistics */
.regional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.region-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.region-item:hover::before {
    transform: scaleX(1);
}

.region-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.region-item h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.region-item p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.craftsmanship-header {
    text-align: center;
    margin-bottom: 4rem;
}

.craftsmanship-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.craft-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.step-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.craft-step:hover .step-image {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.craft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.craft-step:hover .craft-img {
    transform: scale(1.05);
}

.craft-step h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.craft-step p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
.omega-footer {
    background: linear-gradient(180deg, #0f1729 0%, #0a1220 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    color: #255E26;
}

.omega-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #255E26, transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top Section - Newsletter and Social */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    margin-bottom: 4rem;
}

.newsletter-section,
.social-section {
    text-align: left;
}

.newsletter-title,
.social-title {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0;
    color: #255E26;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6b7a8f;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input:focus {
    border-color: #000000;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.newsletter-submit {
    background: #255E26;
    border: none;
    color: #255E26;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.newsletter-submit:hover {
    background: #801422;
    transform: translateX(3px);
}

.newsletter-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.newsletter-submit:hover i {
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-link:hover {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding-bottom: 0.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.footer-links-list a:hover::before {
    width: 100%;
}

.footer-links-list a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* Contact Column Special Styling */
.contact-column {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.contact-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    border-radius: 10px 10px 0 0;
}

.contact-info p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: #255E26;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    color: #6b7a8f;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
}

.legal-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.legal-links a:hover::before {
    width: 100%;
}

.legal-links a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* OMEGA Website Inspired Styles - Clean White Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a2332;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Typography System */
h1, h2, h3, h4, h5, h6,
.slide-title,
.heritage-title,
.tech-title,
.section-title,
.card-title,
.feature-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

/* Header Navigation - OMEGA Style */
.omega-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 100000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Mobile Only Logo Header */
.mobile-logo-header {
    display: none; /* Hidden by default on desktop */
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 100000;
}

.mobile-header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-header-logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
}

.mobile-header-logo:hover .mobile-header-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}

/* New OMEGA-style Navigation */
.omega-nav-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    height: 70px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.3rem;
}

.menu-line {
    width: 20px;
    height: 1px;
    background: #255E26;
    transition: all 0.3s ease;
    display: block;
}

.menu-text {
    font-weight: 600;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a2332;
    margin-top: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.menu-toggle:hover .menu-line {
    background: #255E26;
    transform: scale(1.1);
}

.menu-toggle:hover .menu-text {
    font-weight: 600;
    color: #000000;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.language-selector i {
    font-size: 1.2rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.language-selector:hover i {
    color: #000000;
    transform: scale(1.1);
}

.currency-selector {
    position: relative;
    margin-left: 1rem;
    min-width: 120px;
}

.currency-select-nav {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid rgba(26, 35, 50, 0.1);
    border-radius: 25px;
    background: rgba(26, 35, 50, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.currency-select-nav:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.currency-select-nav:focus {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.currency-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.currency-icon i {
    font-weight: 600;
    font-size: 1rem;
    color: #1a2332;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-icon i {
    font-weight: 600;
    color: #000000;
}

/* Custom dropdown arrow */
.currency-select-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #1a2332;
    pointer-events: none;
    transition: all 0.3s ease;
}

.currency-selector:hover .currency-select-nav::after {
    border-top-color: #000000;
}

/* Enhanced option styling */
.currency-select-nav option {
    padding: 0.8rem 1rem;
    background: #ffffff;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    border: none;
}

.currency-select-nav option:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.currency-select-nav option:checked {
    background: #255E26;
    color: #255E26;
    font-weight: 600;
}

/* Mobile responsive adjustments for currency selector */
@media (max-width: 768px) {
    .nav-left {
        gap: 0.5rem;
    }
    
    .currency-selector {
        min-width: 100px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.8rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .currency-selector {
        min-width: 90px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
}

/* Centered Logo */
.omega-logo-center {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image-center {
    height: 50px;
    width: auto;
    
    transition: all 0.3s ease;
}

.omega-logo-center:hover .logo-image-center {
    
    transform: scale(1.05);
}

/* Right Side Icon Buttons */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem;
    border-radius: 50%;
    position: relative;
    width: 42px;
    height: 42px;
}

.nav-icon-btn i {
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.nav-icon-btn:hover i {
    color: #000000;
}

/* Cart Count */
.cart-count-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #255E26;
    color: #255E26;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.cart-count-new[data-count]:not([data-count="0"]) {
    display: flex;
}

/* Main Navigation Menu */
.main-nav-menu {
    background: #ffffff;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.main-nav-links li {
    position: relative;
}

.nav-link {
    display: block;
    color: #1a2332;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #255E26;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #000000;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #000000;
}

/* Mobile Menu Header with Logo */
.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover .mobile-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
}

.mobile-nav-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.3s ease forwards;
    animation-delay: calc(0.1s * var(--item-index, 0));
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2.5rem;
    color: #000000;
    transform: translateX(10px);
}

.mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    margin: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav-links {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    /* Show mobile logo header only on mobile devices */
    .mobile-logo-header {
        display: block;
    }
    
    /* Hide the center logo in the nav on mobile */
    .nav-center {
        display: none;
    }
    
    /* Adjust navigation bar spacing */
    .omega-nav-new {
        justify-content: space-between;
    }
    
    .main-nav-menu {
        display: none;
    }
    
    .omega-nav-new {
        padding: 1rem;
        height: 60px;
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .currency-selector {
        margin-left: 0.5rem;
        min-width: 100px;
    }
    
    .currency-select-nav {
        padding: 0.5rem 2rem 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 30px;
    }
    
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.8rem;
        height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
}

/* Revolutionary Full Width Slider */
.revolutionary-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: #ffffff;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.next {
    transform: translateX(100%);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    transform: scale(1);
}

.slide.active .slide-bg-image {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6rem 0 4rem;
}

.slide-text-wrapper {
    color: #1a2332;
    max-width: 500px;
    text-align: left;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #1a2332;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #6c757d;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    max-width: 450px;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.slide-btn.primary {
    background: #255E26;
    color: #255E26;
    border-color: #1a2332;
}

.slide-btn.primary:hover {
    background: #255E26;
    border-color: #000000;
    transform: translateY(-2px);
}

.slide-btn.secondary {
    background: transparent;
    color: #1a2332;
    border-color: #1a2332;
}

.slide-btn.secondary:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

/* Slide Watch Container */
.slide-watch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-watch {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-watch {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 0rem;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
}

.indicator.active {
    background: #255E26;
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.1);
}

/* Auto-play Controls */
.slider-controls {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
}

.control-btn {
    background: rgba(26, 35, 50, 0.1);
    border: 1px solid rgba(26, 35, 50, 0.2);
    color: #1a2332;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #255E26;
    border-color: #1a2332;
    color: #255E26;
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1rem;
}

/* Slider Animations */
@keyframes rippleIndicator {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-controls {
        top: 2rem;
        right: 2rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Collections Section - Clean & Classy Styling */
.collections-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent);
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #255E26;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.collection-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 35, 50, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover::before {
    background: rgba(26, 35, 50, 0.02);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 35, 50, 0.1);
}

.card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-watch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

.collection-card:hover .collection-watch-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.card-overlay:hover {
    background: rgba(26, 35, 50, 0.05);
}

.time-display {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.card-overlay:hover .time-display {
    opacity: 1;
}

.card-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.product-price {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(26, 35, 50, 0.05);
    border-bottom: 1px solid rgba(26, 35, 50, 0.05);
}

.price {
    font-family: 'Montserrat', serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #000000;
    letter-spacing: 1px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 0.5rem;
    border: none;
    background: none;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.card-link:hover::after {
    width: 100%;
}

.card-link:hover {
    color: #1a2332;
}

.add-to-cart-btn {
    background: transparent;
    color: #1a2332;
    border: 1px solid #1a2332;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #255E26;
    transition: left 0.3s ease;
    z-index: -1;
}

.add-to-cart-btn:hover::before {
    left: 0;
}

.add-to-cart-btn:hover {
    color: #255E26;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: translateX(2px);
}

/* Innovation Lab Section */
.innovation-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}

.innovation-content {
    position: relative;
    z-index: 2;
}

.innovation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.innovation-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.innovation-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #255E26;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.3);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
    border-color: #000000;
}

.innovation-icon i {
    font-size: 2rem;
    color: #000000;
}

.innovation-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.innovation-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.innovation-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
}

.metric-unit {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Technology Section */
.technology-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-visual {
    position: relative;
}

.movement-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.movement-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-pulse {
    width: 100px;
    height: 100px;
    border: 2px solid #255E26;
    border-radius: 50%;
    animation: techPulse 3s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.tech-title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.tech-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-features {
    margin-bottom: 3rem;
}

.tech-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a2332;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.feature-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.tech-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.tech-cta:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Global Presence Section */
.global-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #1a2332 0%, #0f1729 50%, #1a2332 100%);
    text-align: center;
    position: relative;
}

.global-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    display: block;
    margin-bottom: 0.5rem;
    
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.global-map {
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
}

.map-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: mapGlow 4s ease-in-out infinite;
}

@keyframes mapGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* World Map SVG Styling */
.world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.world-map-svg:hover {
    filter: brightness(0.9) contrast(1.3);
    opacity: 1;
}

/* Style individual countries in the SVG */
.world-map-svg path {
    fill: rgba(16, 185, 129, 0.15);
    stroke: rgba(16, 185, 129, 0.3);
    stroke-width: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.world-map-svg path:hover {
    fill: rgba(16, 185, 129, 0.25);
    stroke: rgba(16, 185, 129, 0.6);
    stroke-width: 1;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

/* Special styling for specific countries/regions */
.world-map-svg path[id="US"],
.world-map-svg path[id="GB"],
.world-map-svg path[id="CH"],
.world-map-svg path[id="JP"],
.world-map-svg path[id="AU"],
.world-map-svg path[id="AE"],
.world-map-svg path[id="SG"],
.world-map-svg path[id="BR"] {
    fill: rgba(16, 185, 129, 0.2);
    stroke: rgba(16, 185, 129, 0.5);
    stroke-width: 0.8;
}

.world-map-svg path[id="US"]:hover,
.world-map-svg path[id="GB"]:hover,
.world-map-svg path[id="CH"]:hover,
.world-map-svg path[id="JP"]:hover,
.world-map-svg path[id="AU"]:hover,
.world-map-svg path[id="AE"]:hover,
.world-map-svg path[id="SG"]:hover,
.world-map-svg path[id="BR"]:hover {
    fill: rgba(16, 185, 129, 0.35);
    stroke: rgba(16, 185, 129, 0.8);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connection-line {
    animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 50 50;
        stroke-dashoffset: -25;
    }
}

/* Enhanced Map Points */
.map-point {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.point-pulse {
    width: 100%;
    height: 100%;
    background: #255E26;
    border-radius: 50%;
    animation: pointPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    position: relative;
}

.point-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.map-point:hover .point-pulse {
    animation-duration: 1s;
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
}

/* Enhanced Point Info */
.point-info {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 41, 0.95);
    color: #255E26;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    text-align: center;
}

.point-info::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(15, 23, 41, 0.95);
}

.map-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.city-name {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.city-details {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

/* Regional Statistics */
.regional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.region-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.region-item:hover::before {
    transform: scaleX(1);
}

.region-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.2);
}

.region-item h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.region-item p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.craftsmanship-header {
    text-align: center;
    margin-bottom: 4rem;
}

.craftsmanship-subtitle {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.craft-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    z-index: 10;
    border: 1px solid #255E26;
}

.step-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.craft-step:hover .step-image {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
}

.craft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.craft-step:hover .craft-img {
    transform: scale(1.05);
}

.craft-step h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #255E26;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.craft-step p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
.omega-footer {
    background: linear-gradient(180deg, #0f1729 0%, #0a1220 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    color: #255E26;
}

.omega-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #255E26, transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top Section - Newsletter and Social */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    margin-bottom: 4rem;
}

.newsletter-section,
.social-section {
    text-align: left;
}

.newsletter-title,
.social-title {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0;
    color: #255E26;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6b7a8f;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input:focus {
    border-color: #000000;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.newsletter-submit {
    background: #255E26;
    border: none;
    color: #ffffff;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    border: 1px solid #255E26;
}

.newsletter-submit:hover {
    background: #801422;
    transform: translateX(3px);
}

.newsletter-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.newsletter-submit:hover i {
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-link:hover {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding-bottom: 0.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.footer-links-list a:hover::before {
    width: 100%;
}

.footer-links-list a:hover {
    color: #000000;
    transform: translateX(3px);
}

/* Contact Column Special Styling */
.contact-column {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.contact-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #255E26, #255E26);
    border-radius: 10px 10px 0 0;
}

.contact-info p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: #255E26;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    color: #6b7a8f;
    font-size: 0.8rem;
    font-weight: 400;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #6b7a8f;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    position: relative;
}

.legal-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.legal-links a:hover::before {
    width: 100%;
}

.legal-links a:hover {
    color: #000000;
}

.footer-language {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-selector:hover {
    color: #000000;
}

.language-selector i {
    font-size: 2rem;
}

.framework-info {
    color: #6b7a8f;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Montserrat', 'Avenir Next', sans-serif;
    margin: 0;
    text-align: right;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .newsletter-form {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .omega-footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        align-items: center;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-language {
        align-items: center;
    }
    
    .framework-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-submit {
        align-self: flex-start;
        min-width: auto;
        padding: 1rem 2rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-column {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.4s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.6s; opacity: 0; }
.fade-in-delay-4 { animation-delay: 0.8s; opacity: 0; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .watch-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
    }
    
    .technology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .innovation-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .craftsmanship-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .global-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .omega-nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .watch-showcase {
        height: 60vh;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    /* Innovation Section Responsive */
    .innovation-section {
        padding: 4rem 1rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .innovation-card {
        padding: 2rem 1.5rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    /* Technology Section Responsive */
    .technology-section {
        padding: 4rem 1rem;
    }
    
    .movement-image {
        height: 300px;
    }
    
    .tech-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .tech-feature {
        gap: 1rem;
    }
    
    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Global Section Responsive - Fixed to maintain horizontal layout */
    .global-section {
        padding: 4rem 1rem;
    }
    
    .global-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* Craftsmanship Section Responsive */
    .craftsmanship-section {
        padding: 4rem 1rem;
    }
    
    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-image {
        height: 200px;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        align-items: center;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-language {
        align-items: center;
    }
    
    .framework-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .watch-info {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    /* Innovation Section Mobile */
    .innovation-section {
        padding: 3rem 1rem;
    }
    
    .innovation-card {
        padding: 2rem 1rem;
    }
    
    .innovation-icon {
        width: 60px;
        height: 60px;
    }
    
    .innovation-icon i {
        font-size: 1.5rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    /* Technology Section Mobile */
    .technology-section {
        padding: 3rem 1rem;
    }
    
    .movement-image {
        height: 250px;
    }
    
    .tech-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .tech-subtitle {
        font-size: 1rem;
    }
    
    .tech-feature {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-number {
        margin: 0 auto;
    }
    
    /* Global Section Mobile */
    .global-section {
        padding: 3rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .map-container {
        height: 280px;
    }
    
    .map-point {
        width: 18px;
        height: 18px;
    }
    
    .point-info {
        font-size: 0.7rem;
        padding: 0.6rem 0.8rem;
        min-width: 120px;
        bottom: 30px;
    }
    
    .city-name {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .city-details {
        font-size: 0.65rem;
    }
    
    .regional-stats {
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .region-item {
        padding: 1.2rem 0.8rem;
    }
    
    .region-item h4 {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .region-item p {
        font-size: 0.8rem;
    }
    
    /* Craftsmanship Section Mobile */
    .craftsmanship-section {
        padding: 3rem 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 50px;
        font-size: 0.9rem;
        top: -8px;
        left: 15px;
    }
    
    .step-image {
        height: 180px;
    }
    
    .craft-step h3 {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .craft-step p {
        font-size: 0.85rem;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-submit {
        align-self: flex-start;
        min-width: auto;
        padding: 1rem 2rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-column {
        padding: 1.5rem;
    }
}

/* Heritage Section - NASA Story */
.heritage-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    color: #255E26;
}

.heritage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.heritage-header {
    padding: 2rem 0;
}

.heritage-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.heritage-title {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #255E26;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.heritage-description {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    max-width: 500px;
}

.heritage-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #255E26;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.heritage-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.heritage-cta:hover::before {
    left: 100%;
}

.heritage-cta:hover {
    background: linear-gradient(45deg, #255E26, #255E26);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.heritage-media {
    position: relative;
}

.heritage-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    height: 500px;
}

.heritage-image-left,
.heritage-image-right {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.heritage-image-left:hover,
.heritage-image-right:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(16, 185, 129, 0.2);
}

.heritage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.heritage-image-left:hover .heritage-img,
.heritage-image-right:hover .heritage-img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(15, 23, 41, 0.9);
    border: 2px solid #255E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(16, 185, 129, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
}

.play-button i {
    font-size: 1.5rem;
    color: #000000;
    margin-left: 3px; /* Optical alignment for play icon */
    transition: color 0.3s ease;
}

.play-button:hover i {
    color: #255E26;
}

/* Responsive Design for Heritage Section */
@media (max-width: 1024px) {
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .heritage-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .heritage-section {
        padding: 4rem 1rem;
    }
    
    .heritage-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .heritage-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .heritage-image-left,
    .heritage-image-right {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .heritage-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .heritage-description {
        font-size: 1rem;
    }
    
    .heritage-cta {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: #ffffff;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.feature-item:hover .feature-icon {
    border-color: #000000;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #255E26;
    stroke-width: 1;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.3));
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #255E26;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Global Section Responsive */
.global-section {
    padding: 4rem 1rem;
}

.global-stats {

    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-number {
    font-size: 2.5rem;
}

.map-container {
    height: 350px;
}

.regional-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.region-item {
    padding: 1.5rem 1rem;
}

.point-info {
    min-width: 150px;
    padding: 0.8rem 1rem;
    font-size: 0.75rem;
}

.city-name {
    font-size: 0.9rem;
}

.city-details {
    font-size: 0.7rem;
}

/* Cart Modal Styles */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.cart-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background: #ffffff;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cart-modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cart-modal-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a2332;
    margin: 0;
    text-transform: uppercase;
}

.cart-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.cart-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    transform: scale(1.1);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 2rem;
    max-height: 400px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.cart-item-collection {
    font-size: 0.8rem;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2332;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #255E26;
    color: #255E26;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quantity-btn:hover {
    background: #255E26;
    transform: scale(1.1);
}

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    color: #1a2332;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.remove-item-btn {
    background: transparent;
    color: #255E26;
    border: 2px solid #255E26;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0;
}

.remove-item-btn:hover {
    background: #255E26;
    color: #255E26;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.remove-item-btn i {
    transition: transform 0.3s ease;
}

.remove-item-btn:hover i {
    transform: scale(1.1);
}

.cart-modal-footer {
    padding: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cart-total {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cart-total strong {
    font-family: 'Montserrat', serif;
    font-size: 1.4rem;
    color: #1a2332;
    letter-spacing: 1px;
    font-weight: bold;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-clear-cart,
.btn-checkout {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-clear-cart {
    background: transparent;
    color: #255E26;
    border: 2px solid #255E26;
}

.btn-clear-cart:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
}

.btn-checkout {
    background: #255E26;
    color: #fff;
    border: 2px solid #255E26;
}

.btn-checkout:hover {
    background: #255E26;
    border-color: #255E26;
    transform: translateY(-2px);
    text-decoration: none;
    color: #255E26;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(16, 185, 129, 0.01) 100%);
    border-radius: 15px;
    margin: 1rem 0;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.empty-cart-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.empty-cart-icon i {
    font-size: 4rem;
    color: rgba(16, 185, 129, 0.3);
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.1));
    animation: gentleBounce 3s ease-in-out infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.empty-cart h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a2332;
    letter-spacing: 1px;
}

.empty-cart p {
    font-size: 0.95rem;
    color: #6c757d;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.empty-cart-suggestion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    display: inline-flex;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.empty-cart-suggestion:hover {
    background: rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.empty-cart-suggestion i {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.1) rotate(90deg); opacity: 1; }
}

/* Enhanced Toast Notification Responsiveness */
.toast {
    position: fixed;
    top: 120px;
    right: 20px;
    background: #255E26;
    color: #255E26;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99999; /* Much higher z-index to ensure it's above navbar */
    max-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.toast.success {
    background: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.toast.error {
    background: #255E26;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.toast.info {
    background: #17a2b8;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
}

/* Mobile toast responsiveness */
@media (max-width: 768px) {
    .toast {
        top: 90px; /* Position below navbar with more clearance */
        right: 15px;
        left: 15px;
        max-width: none;
        text-align: center;
        font-size: 0.85rem;
        padding: 1rem 1.2rem;
        border-radius: 12px;
        transform: translateY(-100px); /* Start position above viewport */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        z-index: 99999; /* Consistent high z-index for mobile */
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        opacity: 0;
        pointer-events: none;
    }
    
    .toast.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Ensure toast disappears completely when not showing */
    .toast:not(.show) {
        transform: translateY(-100px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden;
    }
}

@media (max-width: 480px) {
    .toast {
        top: 15px;
        font-size: 0.8rem;
        padding: 0.9rem 1rem;
        border-radius: 10px;
        margin: 0 10px;
        left: 10px;
        right: 10px;
        /* Ensure clean transitions on small screens */
        transform: translateY(-120px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
    
    .toast:not(.show) {
        transform: translateY(-120px) !important;
        opacity: 0 !important;
        visibility: hidden;
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .omega-nav-new {
        padding: 0.8rem 1rem;
        height: auto;
        min-height: 60px;
        flex-wrap: wrap;
    }
    
    .nav-left {
        gap: 0.8rem;
        flex: 0 0 auto;
        order: 1;
    }
    
    .nav-center {
        flex: 1;
        order: 2;
        justify-content: center;
    }
    
    .nav-right {
        gap: 0.8rem;
        flex: 0 0 auto;
        order: 3;
    }
    
    .currency-selector {
        min-width: 85px;
        margin-left: 0.5rem;
    }
    
    .currency-select-nav {
        font-size: 0.7rem;
        padding: 0.5rem 2rem 0.5rem 0.7rem;
        border-radius: 20px;
    }
    
    .currency-icon {
        right: 0.6rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .logo-image-center {
        height: 32px;
    }
    
    .nav-icon-btn {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .menu-line {
        width: 18px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
        margin-top: 0.2rem;
    }
    
    /* Mobile menu improvements */
    .mobile-menu-overlay {
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu-content {
        padding: 3rem 2rem;
    }
    
    .mobile-nav-links a {
        font-size: 1.3rem;
        padding: 0.5rem;
        display: block;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-links a:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .omega-nav-new {
        padding: 0.6rem 0.8rem;
        min-height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.6rem;
    }
    
    .currency-selector {
        min-width: 75px;
        margin-left: 0.3rem;
    }
    
    .currency-select-nav {
        font-size: 0.65rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
        border-radius: 18px;
    }
    
    .currency-icon {
        right: 0.5rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
    
    .cart-count-new {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
}

@media (max-width: 360px) {
    .mobile-logo-header {
        padding: 0.75rem 0;
    }
    
    .mobile-header-logo-image {
        height: 50px;
        max-width: 160px;
    }
}

/* Enhanced Responsive Design for Hero Slider */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .slide-title {
        font-size: 3.2rem;
        letter-spacing: 0.05em;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .slide-actions {
        justify-content: center;
    }
    
    .slide-watch {
        max-height: 60vh;
    }
}

@media (max-width: 768px) {
    .revolutionary-slider {
        height: 90vh; /* Slightly shorter on mobile */
        margin-top: 120px; /* Account for mobile logo header + navigation */
        height: calc(100vh - 120px); /* Adjust height to account for header */
    }
    
    .slide-content {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .slide-title {
        font-size: 2.8rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.8rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        max-width: 500px;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .slide-btn {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        min-width: 200px;
    }
    
    .slide-watch {
        max-height: 50vh;
        max-width: 80%;
    }
    
    .slider-navigation {
        bottom: 2rem;
    }
    
    .slider-indicators {
        gap: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .slider-controls {
        top: 2rem;
        right: 1.5rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
    
    .control-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .revolutionary-slider {
        height: 85vh;
        margin-top: 110px; /* Account for smaller mobile header */
        height: calc(100vh - 110px);
    }
    
    .slide-content {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .slide-title {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
        margin-bottom: 0.6rem;
        line-height: 1.1;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .slide-btn {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
        min-width: 180px;
    }
    
    .slide-watch {
        max-height: 40vh;
        max-width: 90%;
    }
    
    .slider-navigation {
        bottom: 1.5rem;
    }
    
    .slider-indicators {
        gap: 0.6rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .slider-controls {
        top: 1.5rem;
        right: 1rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .control-btn i {
        font-size: 1rem;
    }
}

/* Enhanced Collections Section Responsiveness */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .collections-section {
        padding: 4rem 2rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        letter-spacing: 1.5px;
    }
    
    .collection-card {
        border-radius: 12px;
    }
    
    .card-image {
        height: 280px;
    }
    
    .card-content {
        padding: 1.8rem;
    }
    
    .card-title {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .card-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .collections-section {
        padding: 3rem 1.5rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        letter-spacing: 1px;
    }
    
    .collection-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .card-image {
        height: 320px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-actions {
        gap: 0.8rem;
        margin-top: 1.2rem;
    }
    
    .add-to-cart-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    
    .card-link {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        padding: 0.4rem 0;
    }
    
    /* Product price styling improvements */
    .product-price {
        margin: 1.2rem 0;
        text-align: center;
    }
    
    .price {
        font-size: 1.3rem;
        font-weight: 600;
        color: #000000;
        letter-spacing: 0.5px;
        font-family: 'Montserrat', sans-serif;
    }
}

@media (max-width: 480px) {
    .collections-section {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        letter-spacing: 0.5px;
    }
    
    .collections-grid {
        max-width: 100%;
    }
    
    .card-image {
        height: 320px;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .card-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .product-price {
        margin: 1rem 0;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .card-actions {
        gap: 0.6rem;
        margin-top: 1rem;
    }
    
    .add-to-cart-btn {
        padding: 0.8rem 1rem;
        font-size: 0.7rem;
        border-radius: 20px;
    }
    
    .add-to-cart-btn i {
        font-size: 0.9rem;
    }
    
    .card-link {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
} 

/* Enhanced Cart Modal Responsiveness */
@media (max-width: 1024px) {
    .cart-modal-content {
        width: 85%;
        max-width: 550px;
    }
    
    .cart-modal-header h3 {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }
    
    .cart-item {
        gap: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .cart-modal {
        align-items: flex-end;
        padding: 0;
    }
    
    .cart-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        margin: 0;
    }
    
    .cart-modal-header {
        padding: 1.5rem;
        position: sticky;
        top: 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        z-index: 10;
        border-radius: 20px 20px 0 0;
    }
    
    .cart-modal-header h3 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .cart-modal-close {
        padding: 0.6rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }
    
    .cart-modal-close:hover {
        transform: scale(1.05);
    }
    
    .cart-modal-body {
        padding: 1rem 1.5rem;
        max-height: 50vh;
    }
    
    .cart-item {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 0;
        align-items: flex-start;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .cart-item-details {
        flex: 1;
        min-width: 0;
    }
    
    .cart-item-name {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0.3px;
    }
    
    .cart-item-collection {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .cart-item-price {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .cart-item-controls {
        flex: 0 0 100%;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .quantity-btn {
        width: 35px;
        height: 50px;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .quantity-display {
        min-width: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(16, 185, 129, 0.1);
    }
    
    .remove-item-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        touch-action: manipulation;
    }
    
    .cart-modal-footer {
        padding: 1.5rem;
        position: sticky;
        bottom: 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        z-index: 10;
    }
    
    .cart-total strong {
        font-size: 1.3rem;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-clear-cart,
    .btn-checkout {
        width: 100%;
        padding: 1rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
        touch-action: manipulation;
    }
    
    /* Empty cart mobile styling */
    .empty-cart {
        padding: 3rem 1.5rem;
        margin: 0.5rem 0;
    }
    
    .empty-cart-icon i {
        font-size: 3.5rem;
    }
    
    .empty-cart h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .empty-cart p {
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .empty-cart-suggestion {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .cart-modal-content {
        max-height: 95vh;
    }
    
    .cart-modal-header {
        padding: 1.2rem;
    }
    
    .cart-modal-header h3 {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .cart-modal-body {
        padding: 0.8rem 1.2rem;
        max-height: 45vh;
    }
    
    .cart-item {
        padding: 0.8rem 0;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-name {
        font-size: 0.9rem;
    }
    
    .cart-item-collection {
        font-size: 0.7rem;
    }
    
    .cart-item-price {
        font-size: 0.95rem;
    }
    
    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .quantity-display {
        min-width: 45px;
        font-size: 0.9rem;
        padding: 0.4rem;
    }
    
    .remove-item-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .cart-modal-footer {
        padding: 1.2rem;
    }
    
    .cart-total strong {
        font-size: 1.2rem;
    }
    
    .cart-actions {
        gap: 0.6rem;
    }
    
    .btn-clear-cart,
    .btn-checkout {
        padding: 0.9rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    /* Empty cart small mobile */
    .empty-cart {
        padding: 2.5rem 1rem;
    }
    
    .empty-cart-icon i {
        font-size: 3rem;
    }
    
    .empty-cart h4 {
        font-size: 1.1rem;
    }
    
    .empty-cart p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .empty-cart-suggestion {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
} 

/* Tablet Portrait and Landscape Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet-specific adjustments */
    .omega-nav-new {
        padding: 1rem 1.5rem;
    }
    
    .currency-selector {
        min-width: 110px;
    }
    
    .currency-select-nav {
        font-size: 0.75rem;
        padding: 0.6rem 2.2rem 0.6rem 0.9rem;
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.25rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .card-image {
        height: 300px;
    }
}

/* Landscape Mobile Responsive Design */
@media (max-width: 768px) and (orientation: landscape) {
    .revolutionary-slider {
        height: 100vh;
    }
    
    .slide-content {
        grid-template-columns: 1fr 1fr;
        padding: 0 2rem;
        gap: 2rem;
        text-align: left;
    }
    
    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        max-width: 400px;
    }
    
    .slide-actions {
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
        min-width: auto;
    }
    
    .slide-watch {
        max-height: 70vh;
        max-width: 90%;
    }
    
    .slider-navigation {
        bottom: 1rem;
    }
    
    .collections-section {
        padding: 3rem 2rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .card-image {
        height: 200px;
    }
}

/* Small Mobile Portrait Adjustments */
@media (max-width: 360px) {
    .omega-nav-new {
        padding: 0.5rem 0.6rem;
        min-height: 50px;
    }
    
    .currency-selector {
        min-width: 70px;
        margin-left: 0.2rem;
    }
    
    .currency-select-nav {
        font-size: 0.6rem;
        padding: 0.3rem 1.5rem 0.3rem 0.5rem;
    }
    
    .logo-image-center {
        height: 25px;
    }
    
    .nav-icon-btn {
        width: 32px;
        height: 32px;
        padding: 0.3rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
        letter-spacing: 0.02em;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .slide-description {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.7rem;
        min-width: 160px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .add-to-cart-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.65rem;
    }
    
    .revolutionary-slider {
        margin-top: 100px; /* Account for smallest mobile header */
        height: calc(100vh - 100px);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Touch-specific optimizations */
    .nav-icon-btn,
    .quantity-btn,
    .remove-item-btn,
    .add-to-cart-btn,
    .slide-btn,
    .btn-checkout,
    .btn-clear-cart {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .currency-select-nav {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .cart-modal-close {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Slightly larger touch targets for mobile */
    .indicator {
        width: 12px;
        height: 12px;
        margin: 0.5rem;
    }
    
    .control-btn {
        min-width: 48px;
        min-height: 48px;
    }
}

/* High DPI Display Adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image-center,
    .collection-watch-image,
    .cart-item-image,
    .slide-bg-image,
    .slide-watch {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    .slide,
    .slide-title,
    .slide-subtitle,
    .slide-description,
    .slide-actions,
    .slide-watch,
    .collection-card,
    .cart-modal,
    .toast,
    .nav-icon-btn,
    .currency-select-nav {
        transition: none !important;
        animation: none !important;
    }
    
    .point-pulse,
    .tech-pulse,
    .gentleBounce,
    .sparkle {
        animation: none !important;
    }
}

/* Mobile Menu Responsive Improvements */
@media (max-width: 768px) {
    .mobile-menu-overlay {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }
    
    .mobile-menu-content {
        width: min(280px, 80vw);
        max-width: 80vw;
    }
    
    .mobile-nav-links a {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(16, 185, 129, 0.1);
        display: block;
        transition: all 0.3s ease;
    }

    .mobile-nav-links a:hover {
        background: rgba(0, 0, 0, 0.1);
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: min(260px, 75vw);
        max-width: 75vw;
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
    }
    
    .mobile-nav-links a {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }
}

@media (max-width: 360px) {
    .mobile-menu-content {
        width: min(240px, 70vw);
        max-width: 70vw;
    }
    
    .mobile-nav-links a {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Ensure no horizontal overflow on mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .omega-header,
    .omega-nav-new,
    .main-nav-menu {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

/* Additional mobile menu animations */
.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

/* Desktop Mobile Menu - 1/3 Width */
@media (min-width: 769px) {
    .mobile-menu-content {
        width: 33.333% !important;
        max-width: 33.333% !important;
    }
    
    .mobile-menu-overlay.active .mobile-menu-content {
        width: 33.333% !important;
        max-width: 33.333% !important;
    }
    
    /* Make overlay transparent on desktop so webpage content shows through */
    .mobile-menu-overlay {
        background: transparent !important;
        backdrop-filter: none !important;
    }
    
    .mobile-menu-overlay.active {
        background: transparent !important;
        backdrop-filter: none !important;
    }
}

.mobile-nav-links {
    padding-top: 4rem;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.3s ease forwards;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    animation-delay: calc(0.1s * var(--item-index, 0));
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Set CSS custom properties for staggered animation */
.mobile-nav-links li:nth-child(1) { --item-index: 1; }
.mobile-nav-links li:nth-child(2) { --item-index: 2; }
.mobile-nav-links li:nth-child(3) { --item-index: 3; }
.mobile-nav-links li:nth-child(4) { --item-index: 4; }
.mobile-nav-links li:nth-child(5) { --item-index: 5; }
.mobile-nav-links li:nth-child(6) { --item-index: 6; }
.mobile-nav-links li:nth-child(7) { --item-index: 7; }
.mobile-nav-links li:nth-child(8) { --item-index: 8; }

/* Global mobile viewport fixes */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Prevent all elements from causing horizontal overflow */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Ensure containers don't overflow viewport */
.section-container,
.omega-header,
.revolutionary-slider,
.collections-section,
.heritage-section,
.innovation-section,
.technology-section,
.global-section,
.craftsmanship-section,
.features-section,
.omega-footer {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Mobile specific viewport constraints */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    /* Constrain all major containers */
    .omega-header,
    .omega-nav-new,
    .revolutionary-slider,
    .slide-content,
    .collections-grid,
    .section-container {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix any potential text overflow */
    h1, h2, h3, h4, h5, h6, p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Additional mobile menu improvements */
@media (max-width: 480px) {
    .mobile-menu-content {
        width: min(260px, 75vw);
        max-width: 75vw;
        padding: 0;
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .mobile-nav-links {
        padding-top: 4rem;
    }
    
    .mobile-nav-links a {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 360px) {
    .mobile-menu-content {
        width: min(240px, 70vw);
        max-width: 70vw;
    }
    
    .mobile-nav-links a {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-overlay {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }
    
    .mobile-menu-content {
        width: min(280px, 80vw);
        max-width: 80vw;
    }
    
    .mobile-menu-header {
        padding: 1.5rem 1rem 1.25rem;
    }
    
    .mobile-logo-image {
        height: 55px;
        max-width: 180px;
    }
    
    .mobile-nav-links a {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(16, 185, 129, 0.1);
        display: block;
        transition: all 0.3s ease;
    }

    .mobile-nav-links a:hover {
        background: rgba(0, 0, 0, 0.1);
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: min(260px, 75vw);
        max-width: 75vw;
        padding: 0;
    }
    
    .mobile-menu-header {
        padding: 1.25rem 0.75rem 1rem;
    }
    
    .mobile-logo-image {
        height: 50px;
        max-width: 160px;
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .mobile-menu-close i {
    font-weight: 600;
        font-size: 1.1rem;
    }
    
    .mobile-nav-links {
        padding-top: 1rem;
    }
    
    .mobile-nav-links a {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 360px) {
    .mobile-menu-content {
        width: min(240px, 70vw);
        max-width: 70vw;
    }
    
    .mobile-menu-header {
        padding: 1rem 0.5rem 0.75rem;
    }
    
    .mobile-logo-image {
        height: 45px;
        max-width: 140px;
    }
    
    .mobile-menu-close {
        width: 36px;
        height: 36px;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .mobile-menu-close i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .mobile-nav-links a {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .mobile-logo-header {
        padding: 0.875rem 0;
    }
    
    .mobile-header-logo-image {
        height: 40px;
        max-width: 180px;
    }
    
    .omega-nav-new {
        padding: 0.8rem;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }
    
    .logo-image-center {
        height: 28px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1rem;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
    
    /* Revolutionary Slider Positioning Fix for Mobile Header */
    .revolutionary-slider {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background: #000;
        margin-top: 0; /* Default for desktop */
    }

    /* Mobile Header Spacing Adjustments */
    @media (max-width: 768px) {
        .revolutionary-slider {
           
            height: calc(100vh - 120px); /* Adjust height accordingly */
        }
    }

    @media (max-width: 480px) {
        .revolutionary-slider {
          
            height: calc(100vh - 110px);
        }
    }

    @media (max-width: 360px) {
        .revolutionary-slider {
            height: calc(100vh - 100px);
        }
    }
}

/* Revolutionary Split Layout Slider */
.revolutionary-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

/* Main Content Area (2/3) */
.slider-main-content {
    width: 66.67%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Product Showcase Sidebar (1/3) */
.product-showcase-sidebar {
    width: 33.33%;
    height: 100%;
    background: #ffffff;
    padding: 6rem 3rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.showcase-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Single Active Product Display */
.active-product-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}

.active-product-image {
    width: 100%;
    max-width: 350px;
    height: 350px;
    border-radius: 0;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
    transition: all 0.3s ease;
    border: none;
}

.active-product-image:hover {
    transform: scale(1.02);
}

.active-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.active-product-info {
    text-align: center;
    padding: 0;
    max-width: 320px;
}

.active-product-collection {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.active-product-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.active-product-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.showcase-acquire-btn {
    background: transparent;
    color: #1a2332;
    border: none;
    border-bottom: 2px solid #1a2332;
    padding: 1.2rem 3rem;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.showcase-acquire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #255E26;
    transition: left 0.3s ease;
    z-index: -1;
}

.showcase-acquire-btn:hover::before {
    left: 0;
}

.showcase-acquire-btn:hover {
    color: #255E26;
    transform: translateY(-1px);
}

/* Showcase Navigation Dots */
.showcase-navigation {
    padding: 3rem 0 0 0;
    display: flex;
    justify-content: center;
}

.showcase-dots {
    display: flex;
    gap: 1.2rem;
}

.showcase-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.showcase-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.showcase-dot.active {
    background: #255E26;
}

.showcase-dot.active::before {
    border-color: rgba(26, 35, 50, 0.2);
}

.showcase-dot:hover:not(.active) {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.3);
}

/* Mega Menu Styles */
.nav-item-with-mega {
    position: relative;
}

.mega-menu {
    position: fixed;
    top: 125px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    transform: translateY(20px);
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999999;
    border-bottom: 1px solid rgba(26, 35, 50, 0.08);
    overflow: hidden;
}

.nav-item-with-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    padding: 3rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.mega-menu-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.mega-menu-item {
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 35, 50, 0.05);
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 280px;
}

.mega-item-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #f8f9fa;
}

.mega-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mega-menu-item:hover .mega-item-image img {
    transform: scale(1.05);
}

.mega-item-content {
    padding: 1.5rem;
}

.mega-item-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.mega-item-price {
    font-family: 'Montserrat', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.mega-item-link {
    color: #1a2332;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(26, 35, 50, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mega-item-link:hover {
    background: #255E26;
    color: white;
}

.mega-menu-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.mega-view-all {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #1a2332;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: 2px solid #1a2332;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.mega-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #255E26;
    transition: left 0.3s ease;
    z-index: -1;
}

.mega-view-all:hover::before {
    left: 0;
}

.mega-view-all:hover {
    color: white;
}

@media (max-width: 1024px) {
    .mega-menu {
        width: 600px;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .mega-menu-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        width: 90vw;
        left: 5vw;
        transform: translateX(0) translateY(20px);
    }
    
    .nav-item-with-mega:hover .mega-menu {
        transform: translateX(0) translateY(0);
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mega-menu-content {
        padding: 1.5rem;
    }
}

/* Animation delays for staggered menu item appearance */
.nav-item-with-mega:hover .mega-menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-item-with-mega:hover .mega-menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-item-with-mega:hover .mega-menu-item:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-item-with-mega:hover .mega-menu-item:nth-child(4) {
    animation-delay: 0.4s;
}

.mega-menu-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}

.mega-menu-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.mega-menu-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    letter-spacing: 0.5px;
}

.mega-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 35, 50, 0.1);
}

@media (max-width: 1024px) {
    .mega-menu-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .mega-menu-item {
        min-width: 200px;
        max-width: 250px;
    }
    
    .mega-menu-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .mega-menu-grid {
        justify-content: flex-start;
        gap: 1rem;
        padding: 0 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .mega-menu-item {
        min-width: 180px;
        max-width: 200px;
        scroll-snap-align: start;
    }
    
    .mega-menu-content {
        padding: 1.5rem 1rem;
    }
    
    .mega-menu-header h3 {
        font-size: 1.5rem;
    }
    
    .mega-menu-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
}

/* ===== PRODUCT PAGES STYLES ===== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: rgba(248, 249, 250, 0.8);
    padding: 10rem 0 2rem;
    margin-top: 0;
    border-bottom: 1px solid rgba(26, 35, 50, 0.08);
    backdrop-filter: blur(10px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
}

.breadcrumb-link:hover {
    color: #000000;
    transform: translateY(-1px);
}

.breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #255E26;
    transition: width 0.3s ease;
}

.breadcrumb-link:hover::after {
    width: 100%;
}

.breadcrumb-separator {
    color: #ccc;
    font-weight: 600;
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: #1a2332;
    font-weight: 600;
}

/* Product Details Section */
.product-details-section {
    padding: 3rem 0;
    background: #ffffff;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Product Image Section */
.product-image-section {
    position: relative;
}

.product-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(26, 35, 50, 0.08);
    background: #ffffff;
    cursor: zoom-in;
    transition: all 0.5s ease;
}

.product-main-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 100px rgba(26, 35, 50, 0.12);
}

.main-product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.product-main-image:hover .main-product-image {
    transform: scale(1.03);
}

.image-zoom-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 35, 50, 0.85);
    color: #ffffff;
    padding: 1rem 1.8rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(15px);
    font-size: 0.9rem;
}

.product-main-image:hover .image-zoom-overlay {
    opacity: 1;
}

.image-zoom-overlay i {
    font-size: 1.1rem;
    color: #ffffff;
}

.image-zoom-overlay span {
    color: #ffffff;
}

/* Product Gallery */
.product-gallery {
    margin-top: 2rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.06);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #000000;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

/* Product Info Section */
.product-info-section {
    padding-left: 2rem;
}

.product-header {
    margin-bottom: 2.5rem;
}

.product-collection-badge {
    display: inline-block;
    background: linear-gradient(135deg, #255E26, #255E26);
    color: #255E26;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.product-collection-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.8rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.product-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* Product Price Section */
.product-price-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(248, 249, 250, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(26, 35, 50, 0.06);
    backdrop-filter: blur(10px);
}

.current-price {
    font-family: 'Montserrat', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    display: block;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.price-note i {
    color: #000000;
    font-size: 0.9rem;
}

/* Product Description */
.product-description {
    margin-bottom: 3rem;
}

.product-description h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #1a2332;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.product-description p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Technical Specifications */
.product-specifications {
    margin-bottom: 3rem;
}

.product-specifications h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #1a2332;
    margin-bottom: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(26, 35, 50, 0.04);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(248, 249, 250, 0.8);
    border-color: rgba(16, 185, 129, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 50, 0.06);
}

.spec-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1a2332;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.spec-value {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 0.85rem;
    text-align: right;
    font-weight: 400;
}

/* Product Functions */
.product-functions {
    margin-bottom: 3rem;
}

.product-functions h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #1a2332;
    margin-bottom: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.functions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.function-tag {
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    color: #255E26;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.function-tag:hover {
    background: linear-gradient(135deg, #255E26, #255E26);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Stock Status */
.stock-status {
    margin-bottom: 3rem;
}

.in-stock,
.out-of-stock {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.in-stock {
    background: rgba(34, 197, 94, 0.1);
    color: #255E26;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.in-stock i,
.out-of-stock i {
    font-size: 1.2rem;
}

/* Add to Cart Section */
.add-to-cart-section {
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(145deg, #ffffff, #fafbfc);
    border-radius: 25px;
    border: 1px solid rgba(26, 35, 50, 0.08);
    box-shadow: 0 15px 40px rgba(26, 35, 50, 0.05);
    position: relative;
    overflow: hidden;
}

.add-to-cart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #255E26, transparent);
    opacity: 0.6;
}

.quantity-selector {
    margin-bottom: 2.5rem;
    text-align: center;
}

.quantity-selector label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 0.5rem;
    border: 1px solid rgba(26, 35, 50, 0.06);
}

.quantity-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    color: #1a2332;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quantity-btn:hover {
    background: #255E26;
    color: #255E26;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-controls input {
    width: 80px;
    text-align: center;
    padding: 1rem;
    border: none;
    background: transparent;
    font-family: 'Montserrat', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    outline: none;
    margin: 0 0.5rem;
}

.add-to-cart-btn-large {
    width: 100%;
    padding: 1.8rem 2rem;
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    color: #255E26;
    border: none;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.add-to-cart-btn-large:hover::before {
    left: 100%;
}

.add-to-cart-btn-large:hover:not(:disabled) {
    background: linear-gradient(135deg, #255E26, #255E26);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
}

.add-to-cart-btn-large:active {
    transform: translateY(-1px);
}

.add-to-cart-btn-large:disabled {
    background: linear-gradient(135deg, #ccc, #999);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn-large i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.add-to-cart-btn-large:hover i {
    transform: scale(1.1);
}

.wishlist-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    color: #1a2332;
    border: 2px solid rgba(26, 35, 50, 0.15);
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.wishlist-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
    transition: left 0.5s ease;
}

.wishlist-btn:hover::before {
    left: 100%;
}

.wishlist-btn:hover {
    border-color: #000000;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.1);
}

.wishlist-btn:active {
    transform: translateY(0);
}

.wishlist-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.wishlist-btn:hover i {
    transform: scale(1.1);
    color: #000000;
}

/* ===== SWEETALERT-STYLE MODAL NOTIFICATIONS ===== */

/* Modal Backdrop */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-modal.show {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.notification-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(-50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.notification-modal.show .notification-content {
    transform: scale(1) translateY(0);
}

/* Modal Icon */
.notification-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.notification-icon i {
    font-size: 2.5rem;
    color: #255E26;
    z-index: 2;
    position: relative;
}

.notification-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.9;
    z-index: 1;
}

/* Success Modal */
.notification-modal.success .notification-icon::before {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.notification-modal.success .notification-icon {
    animation: successPulse 0.6s ease-out;
}

/* Error Modal */
.notification-modal.error .notification-icon::before {
    background: linear-gradient(135deg, #255E26, #fd7e14);
}

.notification-modal.error .notification-icon {
    animation: errorShake 0.6s ease-out;
}

/* Info Modal */
.notification-modal.info .notification-icon::before {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
}

.notification-modal.info .notification-icon {
    animation: infoBounce 0.6s ease-out;
}

/* Warning Modal */
.notification-modal.warning .notification-icon::before {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.notification-modal.warning .notification-icon {
    animation: warningWobble 0.6s ease-out;
}

/* Modal Text */
.notification-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.notification-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Modal Button */
.notification-close-btn {
    background: linear-gradient(135deg, #255E26, #255E26);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.notification-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.notification-close-btn:active {
    transform: translateY(0);
}

/* Modal Animations */
@keyframes successPulse {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@keyframes infoBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes warningWobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .notification-content {
        padding: 2rem;
        max-width: 320px;
        border-radius: 15px;
    }
    
    .notification-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .notification-icon i {
        font-size: 2rem;
    }
    
    .notification-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .notification-message {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .notification-close-btn {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
}

/* ===== RELATED PRODUCTS SECTION ===== */

.related-products-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, #fafbfc, #ffffff);
    border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.related-products-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    position: relative;
}

.related-products-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #255E26, #255E26);
    border-radius: 2px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0rem;
}

.related-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    group: hover;
}

.related-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 35, 50, 0.15);
}

.related-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
}

.related-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.related-product-card:hover .related-product-img {
    transform: scale(1.05);
}

.related-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(26, 35, 50, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.related-product-card:hover .related-product-overlay {
    opacity: 1;
}

.view-product-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #1a2332;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-product-btn:hover {
    background: #255E26;
    color: #255E26;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.related-product-info {
    padding: 1.5rem;
    text-align: center;
}

.related-product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.related-product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.related-add-to-cart {
    background: transparent;
    color: #1a2332;
    border: 1px solid #1a2332;
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.related-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent);
    transition: left 0.6s ease;
}

.related-add-to-cart:hover::before {
    left: 100%;
}

.related-add-to-cart:hover {
    background: #255E26;
    color: #255E26;
    border-color: #1a2332;
    transform: translateY(-2px);
}

/* Related Products Responsive Design */
@media (max-width: 1024px) {
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .related-products-section {
        padding: 3rem 0;
    }
    
    .related-products-section h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .related-product-info {
        padding: 1rem;
    }
    
    .related-product-name {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .related-product-price {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .related-add-to-cart {
        padding: 0.7rem 1.2rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .related-product-card {
        border-radius: 15px;
    }
    
    .related-product-name {
        font-size: 1rem;
    }
    
    .related-product-price {
        font-size: 0.9rem;
    }
}

/* Product Features Section - Horizontal Layout */
.product-features {
    width: 100%;
    margin: 2rem 0;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(255, 255, 255, 0.6));
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.product-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.02), rgba(26, 35, 50, 0.02));
    z-index: 1;
}

.product-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
}

.product-features .feature-item:last-child {
    margin-bottom: 0;
}

.product-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.1);
}

.product-features .feature-item i {
    font-size: 2rem;
    color: #000000;
    min-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 12px;
    padding: 0.8rem;
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.product-features .feature-item:hover i {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-color: #000000;
    transform: scale(1.05);
}

.product-features .feature-content {
    flex: 1;
    text-align: left;
}

.product-features .feature-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.product-features .feature-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #5a6c7d;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* Responsive Design for Product Features */
@media (max-width: 768px) {
    .product-features {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
        border-radius: 15px;
    }
    
    .product-features .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .product-features .feature-item:hover {
        transform: translateY(-3px);
    }
    
    .product-features .feature-item i {
        font-size: 1.8rem;
        padding: 0.7rem;
    }
    
    .product-features .feature-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .product-features .feature-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-features {
        margin: 1rem 0;
        padding: 1rem 0;
        border-radius: 12px;
    }
    
    .product-features .feature-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .product-features .feature-item i {
        font-size: 1.6rem;
        padding: 0.6rem;
    }
    
    .product-features .feature-content h4 {
        font-size: 1rem;
    }
    
    .product-features .feature-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Product Features Full-Width Section */
.product-features-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 249, 250, 1) 25%, 
        rgba(252, 252, 252, 1) 50%, 
        rgba(248, 249, 250, 1) 75%, 
        rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.product-features-full-width::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.product-features-full-width::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.5" fill="rgba(196,30,59,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-dots)"/></svg>');
    z-index: 1;
    opacity: 0.6;
}

.product-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.product-features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.features-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #255E26, transparent);
}

.features-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #5a6c7d;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-transform: uppercase;
}

/* Override existing product-features for full-width section */
.product-features-full-width .product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 0;
    padding: 10px 0px 10px 0px;
    background: none;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 3;
}

.product-features-full-width .product-features .feature-item {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(16, 185, 129, 0.15);
    border-radius: 0;
    padding: 3rem 2.5rem;
    margin-bottom: 0;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.product-features-full-width .product-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(16, 185, 129, 0.01) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.product-features-full-width .product-features .feature-item:hover::before {
    opacity: 1;
}

.product-features-full-width .product-features .feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.3);
}

.product-features-full-width .product-features .feature-item i {
    font-size: 3.5rem;
    color: #000000;
    min-width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.product-features-full-width .product-features .feature-item:hover i {
    background: rgba(255, 255, 255, 1);
    border-color: #000000;
    transform: scale(1.05);
    color: #255E26;
}

.product-features-full-width .product-features .feature-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.product-features-full-width .product-features .feature-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a2332;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-features-full-width .product-features .feature-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Luxury Outline Buttons for Product Page */
.add-to-cart-btn-large {
    background: transparent !important;
    color: #1a2332 !important;
    border: 1px solid #1a2332 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 300 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 1rem !important;
}

.add-to-cart-btn-large::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent) !important;
    transition: left 0.6s ease !important;
}

.add-to-cart-btn-large:hover::before {
    left: 100% !important;
}

.add-to-cart-btn-large:hover:not(:disabled) {
    background: #1a2332 !important;
    color: #ffffff !important;
    border-color: #1a2332 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(26, 35, 50, 0.2) !important;
}

.add-to-cart-btn-large:disabled {
    background: transparent !important;
    color: #ccc !important;
    border-color: #ccc !important;
    cursor: not-allowed !important;
}

.wishlist-btn {
    background: transparent !important;
    color: #255E26 !important;
    border: 1px solid #255E26 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 300 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.wishlist-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent) !important;
    transition: left 0.6s ease !important;
}

.wishlist-btn:hover::before {
    left: 100% !important;
}

.wishlist-btn:hover {
    background: #255E26 !important;
    color: #ffffff !important;
    border-color: #255E26 !important;
    transform: translateY(-2px) !important;
}

/* Related Products Outline Buttons */
.related-add-to-cart {
    background: transparent !important;
    color: #1a2332 !important;
    border: 1px solid #1a2332 !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 300 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.related-add-to-cart::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent) !important;
    transition: left 0.6s ease !important;
}

.related-add-to-cart:hover::before {
    left: 100% !important;
}

.related-add-to-cart:hover {
    background: #1a2332 !important;
    color: #ffffff !important;
    border-color: #1a2332 !important;
    transform: translateY(-2px) !important;
}

/* View Product Button Outline Style */
.view-product-btn {
    background: transparent !important;
    color: #1a2332 !important;
    border: 1px solid #1a2332 !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    overflow: hidden !important;
}

.view-product-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent) !important;
    transition: left 0.5s ease !important;
}

.view-product-btn:hover::before {
    left: 100% !important;
}

.view-product-btn:hover {
    background: #1a2332 !important;
    color: #ffffff !important;
    border-color: #1a2332 !important;
    transform: translateY(-2px) !important;
}

/* Responsive Design for Full-Width Product Features */
@media (max-width: 1024px) {
    .product-features-full-width {
        padding: 4rem 0;
    }
    
    .product-features-container {
        padding: 0 1.5rem;
    }
    
    .features-title {
        font-size: 3rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .product-features-full-width .product-features {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .product-features-full-width .product-features .feature-item {
        padding: 2.5rem 2rem;
    }

    .product-features-full-width .product-features .feature-item i {
        font-size: 3rem;
        min-width: 4.5rem;
        height: 4.5rem;
    }
}

@media (max-width: 768px) {
    .product-features-full-width {
        padding: 3rem 0;
    }

    .product-features-container {
        padding: 0 1rem;
    }

    .product-features-header {
        margin-bottom: 3rem;
    }

    .features-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .features-subtitle {
        font-size: 0.95rem;
    }
    
    .product-features-full-width .product-features {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .product-features-full-width .product-features .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
    }

    .product-features-full-width .product-features .feature-item:hover {
        transform: translateY(-6px);
    }
    
    .product-features-full-width .product-features .feature-item i {
        font-size: 3rem;
        min-width: 4rem;
        height: 4rem;
    }
    
    .product-features-full-width .product-features .feature-content h4 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .product-features-full-width .product-features .feature-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .product-features-full-width {
        padding: 2.5rem 0;
    }
    
    .product-features-container {
        padding: 0 1rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-subtitle {
        font-size: 0.9rem;
    }

    .product-features-full-width .product-features .feature-item {
        padding: 1rem 1.5rem;
    }
    
    .product-features-full-width .product-features .feature-item i {
        font-size: 2.5rem;
        min-width: 3.5rem;
        height: 3.5rem;
    }

    .product-features-full-width .product-features .feature-content h4 {
        font-size: 1.4rem;
        font-family: 'Montserrat' !important;
    }

    .product-features-full-width .product-features .feature-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Additional Luxury Styling for Cart and Showcase buttons */
.showcase-acquire-btn {
    background: transparent !important;
    color: #255E26 !important;
    border: none !important;
    border-bottom: 2px solid #255E26 !important;
    border-radius: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.showcase-acquire-btn:hover {
    background: #255E26 !important;
    color: #ffffff !important;
    border-bottom-color: #255E26 !important;
    transform: translateY(-2px) !important;
}

/* Homepage Add to Cart Buttons Outline Style */
.add-to-cart-btn {
    background: transparent !important;
    color: #255E26 !important;
    border: 1px solid #255E26 !important;
    border-radius: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.add-to-cart-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 50, 0.1), transparent) !important;
    transition: left 0.6s ease !important;
}

.add-to-cart-btn:hover::before {
    left: 100% !important;
}

.add-to-cart-btn:hover {
    background: #255E26 !important;
    color: #ffffff !important;
    border-color: #255E26 !important;
    transform: translateY(-2px) !important;
}
/* Collection Page Styles */

/* Collection Hero Section */
.collection-hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 249, 250, 1) 50%, 
        rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.collection-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.03), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(26, 35, 50, 0.03), transparent 50%);
    z-index: 1;
}

.collection-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.collection-hero-text {
    padding-right: 2rem;
}

.collection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.collection-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.collection-stats {
    display: flex;
    gap: 3rem;
}

.collection-stats .stat-item {
    text-align: center;
}

.collection-stats .stat-number {
    display: block;
    font-family: 'Montserrat', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.collection-stats .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collection-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-watch-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Collection Products Section */
.collection-products-section {
    padding: 6rem 0;
    background: #ffffff;
}

.collection-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.collection-filters {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sort-select {
    padding: 0.8rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Collection Products Grid */
.collection-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.collection-product-card {
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.collection-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.product-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.collection-product-card:hover .product-card-overlay {
    opacity: 1;
}

/* Mobile: Always show overlay buttons */
@media (max-width: 768px) {
    .product-card-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.9) 100%);
        padding: 1rem;
    }
    
    .overlay-actions {
        gap: 0.5rem;
    }
    
    .view-details-btn,
    .quick-add-btn {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
        background: rgba(0, 0, 0, 0.7);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.8);
    }
    
    .view-details-btn:active,
    .quick-add-btn:active {
        background: rgba(0, 0, 0, 0.9);
        color: #ffffff;
        transform: scale(0.98);
    }
}

.overlay-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.view-details-btn,
.quick-add-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #ffffff;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.view-details-btn:hover,
.quick-add-btn:hover {
    background: #ffffff;
    color: #1a2332;
}

.product-card-content {
    padding: 2rem;
}

.product-collection-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.product-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a2332;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-card-price {
    margin-bottom: 1.5rem;
}

.product-card-price .price {
    font-family: 'Montserrat', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2332;
}

.product-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.feature-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(248, 249, 250, 1);
    border: 1px solid rgba(229, 231, 235, 1);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* min-width: 150px;
    max-width: 120px; */
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    border-radius: 4px;
    box-sizing: border-box;
}

.feature-tag.in-stock {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #255E26;
    border-radius: 4px;
}

.feature-tag.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #dc2626;
    border-radius: 4px;
}

/* Collection Info Section */
.collection-info-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 1) 0%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(248, 249, 250, 1) 100%);
}

.collection-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.info-text {
    padding-right: 2rem;
}

.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.info-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-feature i {
    font-size: 1.5rem;
    color: #000000;
    margin-top: 0.2rem;
}

.info-feature .feature-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.info-feature .feature-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.5;
}

.info-images {
    position: relative;
}

.info-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.info-image:hover {
    transform: scale(1.02);
}

/* Responsive Design for Collection Page */
@media (max-width: 1024px) {
    .collection-title {
        font-size: 3rem;
    }
    
    .collection-hero-content,
    .collection-info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .collection-hero-text,
    .info-text {
        padding-right: 0;
    }
    
    .collection-stats {
        justify-content: center;
    }
    
    .collection-products-header {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    
    .collection-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .collection-hero-section {
        padding: 6rem 0 4rem;
    }
    
    .collection-title {
        font-size: 2.3rem;
    }
    
    .info-title {
        font-size: 2.5rem;
    }
    
    .collection-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .collection-products-grid {
        grid-template-columns: 1fr;
    }
    
    .info-image-grid {
        grid-template-columns: 1fr;
    }
    
    .overlay-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .collection-products-section {
        padding: 4rem 0;
    }
    
    .collection-info-section {
        padding: 4rem 0;
    }
    
    .product-card-content {
        padding: 1.5rem;
    }
} /* Footer White Background Override */
.omega-footer {
    background: #ffffff !important;
    color: #333333 !important;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.omega-footer .newsletter-title,
.omega-footer .social-title,
.omega-footer .footer-column-title {
    color: #000000 !important;
}

.omega-footer .newsletter-input {
    background: #ffffff !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    color: #333333 !important;
}

.omega-footer .newsletter-input::placeholder {
    color: #999999 !important;
}

.omega-footer .footer-links-list a {
    color: #000000 !important;
}

.omega-footer .footer-links-list a:hover {
    color: #255E26 !important;
}

.omega-footer .social-link {
    color: #000000 !important;
}

.omega-footer .social-link:hover {
    color: #255E26 !important;
    background: rgba(16, 185, 129, 0.1) !important;
}

.omega-footer .copyright {
    color: #666666 !important;
}

.omega-footer .legal-links a {
    color: #666666 !important;
}

.omega-footer .legal-links a:hover {
    color: #255E26 !important;
}

.omega-footer .language-selector {
    color: #666666 !important;
}

.omega-footer .framework-info {
    color: #999999 !important;
}

.omega-footer .contact-info p {
    color: #666666 !important;
}

.omega-footer .contact-button {
    color: #255E26 !important;
    border: 1px solid #255E26 !important;
    background: transparent !important;
}

.omega-footer .contact-button:hover {
    background: #255E26 !important;
    color: #ffffff !important;
} /* User Navigation Dropdown */
.user-menu {
    position: relative;
    cursor: pointer;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, #255E26 0%, #255E26 100%);
    color: #255E26;
    border-radius: 12px 12px 0 0;
}

.user-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.user-email {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #333333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
}

.dropdown-item i {
    font-size: 1rem;
    color: #666666;
}

.dropdown-item:hover i {
    color: #000000;
}

.logout-btn {
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    margin-top: 0.5rem;
}

.nav-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .nav-text {
        display: none;
    }
    
    .user-dropdown {
        right: -1rem;
        min-width: 260px;
    }
} /* Mobile Full-Width Slider Overlay Styles */
@media (max-width: 768px) {
    /* Make slider full width on mobile */
    .slider-container {
        display: block;
    }
    
    .slider-main-content {
        width: 100%;
        height: 100%;
    }
    
    /* Hide sidebar on mobile */
    .product-showcase-sidebar {
        display: none;
    }
    
    /* Add overlay content for mobile */
    .slider-overlay-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
        padding: 2rem 1.5rem 3rem 1.5rem;
        color: #255E26;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    }
    
    .slide-product-info {
        margin-bottom: 2rem;
    }
    
    .slide-product-collection {
        font-family: "Montserrat", sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0.3rem;
    }
    
    .slide-product-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        color: #255E26;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    
    .slide-product-price {
        font-family: "Montserrat", sans-serif;
        font-size: 1.2rem;
        font-weight: 400;
        color: #255E26;
        margin-bottom: 1.5rem;
    }
    
    .slide-acquire-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: linear-gradient(135deg, #255E26, #8B1538);
        color: #255E26;
        padding: 1rem 2rem;
        border: none;
        border-radius: 0;
        font-family: "Montserrat", sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slide-acquire-btn:hover {
        background: linear-gradient(135deg, #8B1538, #255E26);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    }
    
    .slide-acquire-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }
    
    .slide-acquire-btn:hover i {
        transform: translateX(3px);
    }
    
    /* Mobile navigation dots */
    .slider-navigation {
        display: flex;
        justify-content: center;
    }
    
    .slider-dots {
        display: flex;
        gap: 0.8rem;
        align-items: center;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        border: 2px solid transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dot.active {
        background: #ffffff;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }
    
    .slider-dot:hover:not(.active) {
        background: rgba(255, 255, 255, 0.7);
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .slider-overlay-content {
        padding: 1.5rem 1rem 2.5rem 1rem;
    }
    
    .slide-product-collection {
        font-size: 0.7rem;
        letter-spacing: 1.2px;
        margin-bottom: 0.2rem;
    }
    
    .slide-product-name {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .slide-product-price {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-acquire-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
        gap: 0.5rem;
    }
    
    .slide-product-info {
        margin-bottom: 1.5rem;
    }
    
    .slider-dots {
        gap: 0.6rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
} /* Improved Mobile Navigation Layout */
@media (max-width: 768px) {
    /* Mobile Header Structure Improvements */
    .mobile-logo-header {
        padding: 0.8rem 0;
        background: #ffffff;
        border-bottom: 1px solid rgba(26, 35, 50, 0.08);
    }
    
    .mobile-header-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-header-logo-image {
        height: 45px;
        max-width: 200px;
    }
    
    /* Navigation Bar Improvements */
    .omega-nav-new {
        padding: 0.6rem 1rem;
        height: 60px;
        background: #ffffff;
        border-bottom: 1px solid rgba(26, 35, 50, 0.08);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    /* Left Side - Menu and Currency */
    .nav-left {
        gap: 0.8rem;
        flex: 1;
    }
    
    .menu-toggle {
        padding: 0.4rem;
        gap: 0.2rem;
    }
    
    .menu-line {
        width: 18px;
        height: 2px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.6rem;
        margin-top: 0.2rem;
    }
    
    /* Hide language selector on mobile to save space */
    .language-selector {
        display: none;
    }
    
    .currency-selector {
        margin-left: 0.3rem;
        min-width: 85px;
    }
    
    .currency-select-nav {
        padding: 0.4rem 2rem 0.4rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 20px;
    }
    
    .currency-icon {
        right: 0.5rem;
    }
    
    .currency-icon i {
    font-weight: 600;
        font-size: 0.8rem;
    }
    
    /* Right Side - Improved Icon Layout */
    .nav-right {
        gap: 0.4rem;
        flex: 1;
        justify-content: flex-end;
    }
    
    .nav-icon-btn {
        width: 42px;
        height: 42px;
        padding: 0.5rem;
        border-radius: 50%;
        background: transparent;
        border: none;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-icon-btn:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: scale(1.05);
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 1.1rem;
        color: #6c757d;
        transition: all 0.3s ease;
    }
    
    .nav-icon-btn:hover i {
        color: #000000;
    }
    
    /* Cart Count Badge */
    .cart-count-new {
        position: absolute;
        top: -2px;
        right: -2px;
        background: linear-gradient(135deg, #255E26, #8B1538);
        color: #255E26;
        font-size: 0.6rem;
        font-weight: 600;
        min-width: 18px;
        height: 18px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
        border: 2px solid #ffffff;
    }
    
    /* Search Button Special Styling */
    .search-btn {
        background: transparent;
        border: none;
    }
    
    .search-btn:hover {
        background: rgba(16, 185, 129, 0.15);
    }
    
    .search-btn i {
        color: #000000;
        font-weight: 600;
    }
    
    /* Cart Button Special Styling */
    .cart-btn {
        background: transparent;
        border: none;
    }
    
    .cart-btn:hover {
        background: rgba(16, 185, 129, 0.15);
    }
    
    .cart-btn i {
        color: #000000;
        font-weight: 600;
    }
    
    /* Mobile Showcase Acquire Button */
    .showcase-acquire-btn {
        background: #ffffff !important;
        color: #1a2332 !important;
        border: none !important;
        border-bottom: 2px solid #1a2332 !important;
        border-radius: 50% !important;
        width: 60px !important;
        height: 60px !important;
        padding: 0 !important;
        font-size: 0.6rem !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        min-width: auto !important;
    }
    
    .showcase-acquire-btn:hover {
        background: #1a2332 !important;
        color: #ffffff !important;
        border-bottom-color: #1a2332 !important;
        transform: scale(1.05) !important;
    }
}

@media (max-width: 480px) {
    /* Further optimization for smaller screens */
    .omega-nav-new {
        padding: 0.5rem 0.8rem;
        height: 55px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.3rem;
    }
    
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.4rem;
    }
    
    .nav-icon-btn i {
        color: #000000;
        font-weight: 600;
        font-size: 1rem;
    }
    
    .currency-selector {
        min-width: 75px;
    }
    
    .currency-select-nav {
        padding: 0.3rem 1.5rem 0.3rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .cart-count-new {
        min-width: 16px;
        height: 16px;
        font-size: 0.55rem;
        top: -1px;
        right: -1px;
    }
    
    .menu-line {
        width: 16px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
    }
}

@media (max-width: 360px) {
    /* Ultra small screen optimization */
    .omega-nav-new {
        padding: 0.4rem 0.6rem;
        height: 50px;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
        padding: 0.3rem;
    }
    
    .nav-icon-btn i {
        color: #000000;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .currency-selector {
        min-width: 70px;
    }
    
    .currency-select-nav {
        padding: 0.25rem 1.3rem 0.25rem 0.4rem;
        font-size: 0.6rem;
    }
    
    .cart-count-new {
        min-width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }
} /* Compact Mobile Navigation - Remove Extra Space */
@media (max-width: 768px) {
    /* Reduce mobile logo header space */
    .mobile-logo-header {
        padding: 0.5rem 0;
        background: #ffffff;
        border-bottom: 1px solid rgba(26, 35, 50, 0.08);
    }
    
    .mobile-header-logo-image {
        height: 40px;
        max-width: 180px;
    }
    
    /* Compact navigation bar */
    .omega-nav-new {
        padding: 0.4rem 1rem;
        height: 50px;
        background: #ffffff;
        border-bottom: 1px solid rgba(26, 35, 50, 0.08);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    /* Compact navigation icons */
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        padding: 0.4rem;
    }
    
    .nav-icon-btn i {
        color: #000000;
        font-weight: 600;
        font-size: 1rem;
    }
    
    /* Adjust menu toggle for compact design */
    .menu-toggle {
        padding: 0.3rem;
        gap: 0.15rem;
    }
    
    .menu-line {
        width: 16px;
        height: 1.5px;
    }
    
    .menu-text {
    font-weight: 600;
        font-size: 0.55rem;
        margin-top: 0.1rem;
    }
    
    /* Compact currency selector */
    .currency-selector {
        margin-left: 0.2rem;
        min-width: 80px;
    }
    
    .currency-select-nav {
        padding: 0.3rem 1.8rem 0.3rem 0.5rem;
        font-size: 0.65rem;
        border-radius: 18px;
    }
    
    /* Adjust cart badge for smaller icons */
    .cart-count-new {
        min-width: 16px;
        height: 16px;
        font-size: 0.55rem;
        top: -1px;
        right: -1px;
    }
}

@media (max-width: 480px) {
    /* Even more compact for small phones */
    .mobile-logo-header {
        padding: 0.4rem 0;
    }
    
    .mobile-header-logo-image {
        height: 50px;
        max-width: 160px;
    }
    
    .omega-nav-new {
        padding: 0.3rem 0.8rem;
        height: 45px;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.25rem;
    }
    
    .nav-icon-btn {
        width: 35px;
        height: 50px;
        padding: 0.3rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 0.95rem;
    }
    
    .currency-selector {
        min-width: 70px;
    }
    
    .currency-select-nav {
        padding: 0.25rem 1.5rem 0.25rem 0.4rem;
        font-size: 0.6rem;
    }
    
    .cart-count-new {
        min-width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }
}

@media (max-width: 360px) {
    /* Ultra compact for very small screens */
    .mobile-logo-header {
        padding: 0.3rem 0;
    }
    
    .mobile-header-logo-image {
        height: 32px;
        max-width: 140px;
    }
    
    .omega-nav-new {
        padding: 0.25rem 0.6rem;
        height: 42px;
    }
    
    .nav-icon-btn {
        width: 32px;
        height: 32px;
        padding: 0.25rem;
    }
    
    .nav-icon-btn i {
    font-weight: 600;
        font-size: 0.9rem;
    }
    
    .currency-selector {
        min-width: 65px;
    }
    
    .currency-select-nav {
        padding: 0.2rem 1.3rem 0.2rem 0.3rem;
        font-size: 0.55rem;
    }
    
    .cart-count-new {
        min-width: 12px;
        height: 12px;
        font-size: 0.45rem;
    }
} /* Cart Modal - Remove Curved Corners */
.cart-modal-content {
    border-radius: 0 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cart-modal-close {
    border-radius: 0 !important;
    padding: 0.5rem;
}

.cart-modal-close:hover {
    border-radius: 0 !important;
}

.cart-item-image {
    border-radius: 0 !important;
}

.quantity-btn {
    border-radius: 0 !important;
    width: 32px;
    height: 32px;
}

.remove-item-btn {
    border-radius: 0 !important;
    width: 36px;
    height: 36px;
}

.btn-clear-cart,
.btn-checkout {
    border-radius: 0 !important;
}

/* Additional cart modal elements that might have rounded corners */
.empty-cart {
    border-radius: 0 !important;
}

.empty-cart-icon {
    border-radius: 0 !important;
}

/* Make sure any other cart related buttons are square */
.add-to-cart-btn {
    border-radius: 0 !important;
}

.card-link {
    border-radius: 0 !important;
}

/* Ensure mobile cart modal is also square */
@media (max-width: 768px) {
    .cart-modal-content {
        border-radius: 0 !important;
        width: 95%;
    }
    
    .cart-modal-header,
    .cart-modal-body,
    .cart-modal-footer {
        border-radius: 0 !important;
    }
}

@media (max-width: 480px) {
    .cart-modal-content {
        border-radius: 0 !important;
        width: 98%;
        max-height: 85vh;
    }
    
    .cart-item-image {
        border-radius: 0 !important;
        width: 60px;
        height: 60px;
    }
    
    .quantity-btn {
        border-radius: 0 !important;
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .remove-item-btn {
        border-radius: 0 !important;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
} /* Mobile Menu Z-Index Fix - Ensure it appears above navigation */
.mobile-menu-overlay {
    z-index: 99999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
}

.mobile-menu-overlay.active {
    z-index: 99999 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-content {
    z-index: 100000 !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(0) !important;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0) !important;
    z-index: 100000 !important;
}

.mobile-menu-close {
    z-index: 100001 !important;
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
}

/* Ensure navigation doesn't interfere */
@media (max-width: 768px) {
    .omega-nav-new {
        z-index: 1000 !important;
    }
    
    .mobile-logo-header {
        z-index: 1000 !important;
    }
    
    /* Make sure the mobile menu is always on top */
    .mobile-menu-overlay {
        z-index: 99999 !important;
        backdrop-filter: blur(20px) !important;
        background: rgba(0, 0, 0, 0.95) !important;
    }
    
    .mobile-menu-overlay.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Ensure menu content slides in properly */
    .mobile-menu-content {
        background: #ffffff !important;
        width: min(300px, 85vw) !important;
        height: 100vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
    }
    
    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateX(0) !important;
    }
    
    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
} /* Mobile Menu Collapsible Structure */
.mobile-menu-level {
    display: none;
    width: 100%;
    height: 100%;
    animation: slideInRight 0.3s ease-out;
}

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

.mobile-menu-level.slide-out {
    animation: slideOutLeft 0.3s ease-out;
}

.mobile-menu-level.slide-in {
    animation: slideInRight 0.3s ease-out;
}

/* Back Button Styling */
.mobile-menu-back {
    padding: 1rem 2rem 0.5rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    margin-bottom: 1rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    color: #000000;
    font-family: "Montserrat", "Avenir Next", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: #255E26;
    transform: translateX(-2px);
}

.back-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-3px);
}

/* Expandable Navigation Items */
.nav-item-expandable {
    position: relative;
}

.nav-expandable-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem !important;
    text-decoration: none;
    color: #255E26;
    font-family: "Montserrat", "Avenir Next", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
}

.nav-expandable-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    padding-left: 2.5rem;
}

.expand-icon {
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
}

.nav-expandable-link:hover .expand-icon {
    color: #000000;
    transform: rotate(90deg);
}

/* Mobile Menu Level Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Enhanced Mobile Nav Links for Sub-levels */
.mobile-menu-level[data-level="heritage"] .mobile-nav-links a,
.mobile-menu-level[data-level="classic"] .mobile-nav-links a {
    padding: 0.6rem 2rem;
    font-size: 0.95rem;
    color: #333;
    font-weight: 400;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-menu-level[data-level="heritage"] .mobile-nav-links a:hover,
.mobile-menu-level[data-level="classic"] .mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    border-left-color: #000000;
    padding-left: 2.5rem;
}

/* Special styling for "View All" links */
.mobile-nav-links a[href*="collection"] {
    color: #255E26 !important;
    font-weight: 600 !important;
    background: rgba(16, 185, 129, 0.05) !important;
    border-radius: 8px !important;
    margin: 0.5rem 0 !important;
}

.mobile-nav-links a[href*="collection"]:hover {
    background: rgba(16, 185, 129, 0.1) !important;
    transform: translateX(5px);
}

/* Mobile Menu Responsive Adjustments */
@media (max-width: 480px) {
    .back-btn {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .nav-expandable-link {
        font-size: 0.9rem;
        padding: 0.65rem 1.5rem !important;
    }
    
    .nav-expandable-link:hover {
        padding-left: 2rem;
    }
    
    .mobile-menu-level[data-level="heritage"] .mobile-nav-links a,
    .mobile-menu-level[data-level="classic"] .mobile-nav-links a {
        padding: 0.55rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-level[data-level="heritage"] .mobile-nav-links a:hover,
    .mobile-menu-level[data-level="classic"] .mobile-nav-links a:hover {
        padding-left: 2rem;
    }
}

@media (max-width: 360px) {
    .back-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .nav-expandable-link {
        font-size: 0.85rem;
        letter-spacing: 1px;
        padding: 0.6rem 1.25rem !important;
    }
    
    .mobile-menu-level[data-level="heritage"] .mobile-nav-links a,
    .mobile-menu-level[data-level="classic"] .mobile-nav-links a {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
} /* Watch List Styling with Images */
.watch-list {
    padding: 0 !important;
}

.watch-item-link {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem !important;
    text-decoration: none;
    color: #333;
    font-family: "Montserrat", "Avenir Next", sans-serif;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0;
    border-radius: 8px;
}

.watch-item-link:hover {
    background: rgba(16, 185, 129, 0.05) !important;
    border-left-color: #000000;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.watch-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
    border: 2px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.watch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.watch-item-link:hover .watch-image {
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.watch-item-link:hover .watch-image img {
    transform: scale(1.05);
}

.watch-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.watch-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.watch-price {
    font-size: 0.8rem;
    color: #000000;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.watch-item-link:hover .watch-name {
    color: #000000;
}

.watch-item-link:hover .watch-price {
    opacity: 1;
}

/* Collection View All Link Enhancement */
.collection-view-all {
    display: block !important;
    text-align: center;
    padding: 1rem 1.5rem !important;
    background: linear-gradient(135deg, #255E26, #255E26) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    margin: 1rem 0.5rem 0.5rem !important;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.collection-view-all:hover {
    background: linear-gradient(135deg, #255E26, #255E26) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Watch List Responsive Design */
@media (max-width: 480px) {
    .watch-item-link {
        padding: 0.65rem 1.25rem !important;
        gap: 0.75rem;
    }
    
    .watch-image {
        width: 50px;
        height: 50px;
    }
    
    .watch-name {
        font-size: 0.85rem;
    }
    
    .watch-price {
        font-size: 0.75rem;
    }
    
    .collection-view-all {
        padding: 0.85rem 1.25rem !important;
        font-size: 0.85rem;
        margin: 0.75rem 0.25rem 0.25rem !important;
    }
}

@media (max-width: 360px) {
    .watch-item-link {
        padding: 0.6rem 1rem !important;
        gap: 0.6rem;
    }
    
    .watch-image {
        width: 45px;
        height: 45px;
    }
    
    .watch-name {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .watch-price {
        font-size: 0.7rem;
    }
    
    .collection-view-all {
        padding: 0.8rem 1rem !important;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

/* Override existing mobile nav link styles for watch items */
.mobile-menu-level[data-level="heritage"] .watch-item-link,
.mobile-menu-level[data-level="classic"] .watch-item-link {
    padding: 0.75rem 1.5rem !important;
    font-size: inherit;
    color: #333;
    font-weight: 400;
    border-left: 3px solid transparent;
}

.mobile-menu-level[data-level="heritage"] .watch-item-link:hover,
.mobile-menu-level[data-level="classic"] .watch-item-link:hover {
    background: rgba(16, 185, 129, 0.05) !important;
    border-left-color: #000000;
    padding-left: 1.5rem !important;
}

/* Enhanced Watch List Container */
.watch-list li {
    margin: 0;
    padding: 0;
}

.watch-list .mobile-nav-divider {
    margin: 1rem 0.5rem;
    border-color: rgba(16, 185, 129, 0.1);
}

/* Loading animation for watch images */
.watch-image img {
    opacity: 0;
    animation: fadeInWatch 0.5s ease forwards;
}

@keyframes fadeInWatch {
    to {
        opacity: 1;
    }
}

/* Stagger animation delays for watch items */
.watch-list li:nth-child(1) .watch-image img { animation-delay: 0.1s; }
.watch-list li:nth-child(2) .watch-image img { animation-delay: 0.2s; }
.watch-list li:nth-child(3) .watch-image img { animation-delay: 0.3s; }
.watch-list li:nth-child(4) .watch-image img { animation-delay: 0.4s; }

/* Simplified Watch List Styling - Images and Names Only */
.watch-list {
    padding: 0 !important;
}

.watch-item-link {
    display: flex !important;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem !important;
    text-decoration: none;
    color: #333;
    font-family: "Montserrat", "Avenir Next", sans-serif;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0;
    border-radius: 10px;
}

.watch-item-link:hover {
    background: rgba(16, 185, 129, 0.05) !important;
    border-left-color: #000000;
    transform: translateX(5px);
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.15);
}

.watch-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
    border: 2px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.watch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.watch-item-link:hover .watch-image {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.watch-item-link:hover .watch-image img {
    transform: scale(1.05);
}

.watch-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.watch-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.watch-item-link:hover .watch-name {
    color: #000000;
}

/* Collection View All Link Enhancement */
.collection-view-all {
    display: block !important;
    text-align: center;
    padding: 1rem 1.5rem !important;
    background: linear-gradient(135deg, #255E26, #255E26) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    margin: 1rem 0.5rem 0.5rem !important;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.collection-view-all:hover {
    background: linear-gradient(135deg, #255E26, #255E26) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Watch List Responsive Design */
@media (max-width: 480px) {
    .watch-item-link {
        padding: 0.85rem 1.25rem !important;
        gap: 1rem;
    }
    
    .watch-image {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }
    
    .watch-name {
        font-size: 0.9rem;
    }
    
    .collection-view-all {
        padding: 0.9rem 1.25rem !important;
        font-size: 0.9rem;
        margin: 0.75rem 0.25rem 0.25rem !important;
    }
}

@media (max-width: 360px) {
    .watch-item-link {
        padding: 0.75rem 1rem !important;
        gap: 0.85rem;
    }
    
    .watch-image {
        width: 65px;
        height: 65px;
        border-radius: 8px;
    }
    
    .watch-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .collection-view-all {
        padding: 0.85rem 1rem !important;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        border-radius: 10px !important;
    }
}

/* Override existing mobile nav link styles for watch items */
.mobile-menu-level[data-level="heritage"] .watch-item-link,
.mobile-menu-level[data-level="classic"] .watch-item-link {
    padding: 1rem 1.5rem !important;
    font-size: inherit;
    color: #333;
    font-weight: 400;
    border-left: 3px solid transparent;
}

.mobile-menu-level[data-level="heritage"] .watch-item-link:hover,
.mobile-menu-level[data-level="classic"] .watch-item-link:hover {
    background: rgba(16, 185, 129, 0.05) !important;
    border-left-color: #000000;
    padding-left: 1.5rem !important;
}

/* Enhanced Watch List Container */
.watch-list li {
    margin: 0;
    padding: 0;
}

.watch-list .mobile-nav-divider {
    margin: 1.25rem 0.5rem;
    border-color: rgba(16, 185, 129, 0.1);
}

/* Loading animation for watch images */
.watch-image img {
    opacity: 0;
    animation: fadeInWatch 0.5s ease forwards;
}

@keyframes fadeInWatch {
    to {
        opacity: 1;
    }
}

/* Stagger animation delays for watch items */
.watch-list li:nth-child(1) .watch-image img { animation-delay: 0.1s; }
.watch-list li:nth-child(2) .watch-image img { animation-delay: 0.2s; }
.watch-list li:nth-child(3) .watch-image img { animation-delay: 0.3s; }
.watch-list li:nth-child(4) .watch-image img { animation-delay: 0.4s; }

/* Full Width Mobile Navigation */
.mobile-menu-overlay {
    width: 100vw !important;
    height: 100vh !important;
    left: 0 !important;
    right: 0 !important;
}

.mobile-menu-content {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
    transform: translateX(0) !important;
}

/* Vertical Watch List Layout - Image Above, Name Below */
.watch-list {
    padding: 0 1rem !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.watch-item-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
    padding: 1.25rem 1rem !important;
    text-decoration: none;
    color: #333;
    font-family: "Montserrat", "Avenir Next", sans-serif;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.watch-item-link:hover {
    background: rgba(16, 185, 129, 0.05) !important;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.watch-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f8f8;
    border: 2px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.watch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.watch-item-link:hover .watch-image {
    border-color: #000000;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.watch-item-link:hover .watch-image img {
    transform: scale(1.05);
}

.watch-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.watch-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-align: center;
}

.watch-item-link:hover .watch-name {
    color: #000000;
}

/* Collection View All - Full Width */
.collection-view-all {
    display: block !important;
    text-align: center;
    padding: 1.25rem 1.5rem !important;
    background: linear-gradient(135deg, #255E26, #255E26) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 15px !important;
    margin: 1.5rem 1rem 1rem !important;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    grid-column: 1 / -1;
}

.collection-view-all:hover {
    background: linear-gradient(135deg, #255E26, #255E26) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Mobile Nav Divider - Full Width */
.watch-list .mobile-nav-divider {
    grid-column: 1 / -1;
    margin: 0.5rem 0;
    border-color: rgba(16, 185, 129, 0.1);
    border-width: 1px;
}

/* Responsive Design for Full Width Layout */
@media (max-width: 480px) {
    .watch-list {
        padding: 0 0.75rem 5rem 0.75rem !important;
        gap: 0.75rem;
    }
    
    .watch-item-link {
        padding: 1rem 0.75rem !important;
        gap: 0.6rem !important;
        border-radius: 12px;
    }
    
    .watch-image {
        width: 85px;
        height: 85px;
        border-radius: 12px;
        margin-bottom: 0.4rem;
    }
    
    .watch-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .collection-view-all {
        padding: 1rem 1.25rem !important;
        font-size: 0.9rem;
        margin: 1.25rem 0.75rem 0.75rem !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 360px) {
    .watch-list {
        padding: 0 0.5rem 5rem 0.5rem !important;
        gap: 0.6rem;
    }
    
    .watch-item-link {
        padding: 0.85rem 0.6rem !important;
        gap: 0.5rem !important;
        border-radius: 10px;
    }
    
    .watch-image {
        width: 75px;
        height: 75px;
        border-radius: 10px;
        margin-bottom: 0.3rem;
    }
    
    .watch-name {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .collection-view-all {
        padding: 0.9rem 1rem !important;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        margin: 1rem 0.5rem 0.5rem !important;
        border-radius: 10px !important;
    }
}

/* Special handling for single collection rows */
@media (min-width: 600px) {
    .watch-list {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.25rem;
        padding: 0 1.5rem !important;
    }
    
    .watch-image {
        width: 110px;
        height: 110px;
    }
    
    .watch-name {
        font-size: 0.95rem;
    }
    
    .watch-item-link {
        padding: 1.5rem 1.25rem !important;
        gap: 0.85rem !important;
        border-radius: 18px;
    }
}

/* Override existing mobile nav link styles completely */
.mobile-menu-level[data-level="heritage"] .watch-item-link,
.mobile-menu-level[data-level="classic"] .watch-item-link {
    padding: 1.25rem 1rem !important;
    font-size: inherit;
    color: #333;
    font-weight: 400;
    border: 2px solid transparent !important;
    border-left: none !important;
    background: rgba(255, 255, 255, 0.6) !important;
}

.mobile-menu-level[data-level="heritage"] .watch-item-link:hover,
.mobile-menu-level[data-level="classic"] .watch-item-link:hover {
    background: rgba(16, 185, 129, 0.05) !important;
    border-color: #255E26 !important;
    border-left: 2px solid #255E26 !important;
    padding-left: 1rem !important;
    transform: translateY(-3px);
}

/* Enhanced Watch List Container */
.watch-list li {
    margin: 0;
    padding: 0;
    display: contents;
}

/* Loading animation for watch images - staggered grid */
.watch-image img {
    opacity: 0;
    animation: fadeInWatch 0.6s ease forwards;
}

@keyframes fadeInWatch {
    to {
        opacity: 1;
    }
}

/* Grid-based stagger animation delays */
.watch-list li:nth-child(1) .watch-image img { animation-delay: 0.1s; }
.watch-list li:nth-child(2) .watch-image img { animation-delay: 0.2s; }
.watch-list li:nth-child(3) .watch-image img { animation-delay: 0.3s; }
.watch-list li:nth-child(4) .watch-image img { animation-delay: 0.4s; } /* Replace Shadows with Clean Outlines */

/* Watch Item Cards - Outline Instead of Shadow */
.watch-item-link {
    box-shadow: none !important;
    border: 1px solid rgba(16, 185, 129, 0.15) !important;
}

.watch-item-link:hover {
    box-shadow: none !important;
    border: 2px solid #255E26 !important;
    transform: translateY(-3px);
}

/* Watch Images - Outline Instead of Shadow */
.watch-image {
    box-shadow: none !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

.watch-item-link:hover .watch-image {
    box-shadow: none !important;
    border: 2px solid #255E26 !important;
}

/* Collection View All Button - Outline Instead of Shadow */
.collection-view-all {
    box-shadow: none !important;
    border: 2px solid transparent !important;
}

.collection-view-all:hover {
    box-shadow: none !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

/* Override Any Remaining Shadow Effects */
.mobile-menu-level .watch-item-link,
.mobile-menu-level[data-level="heritage"] .watch-item-link,
.mobile-menu-level[data-level="classic"] .watch-item-link {
    box-shadow: none !important;
    border: 1px solid rgba(16, 185, 129, 0.15) !important;
}

.mobile-menu-level .watch-item-link:hover,
.mobile-menu-level[data-level="heritage"] .watch-item-link:hover,
.mobile-menu-level[data-level="classic"] .watch-item-link:hover {
    box-shadow: none !important;
    border: 2px solid #255E26 !important;
}

/* Enhanced Outline Focus States */
.watch-item-link:focus {
    outline: 2px solid #255E26;
    outline-offset: 2px;
    box-shadow: none !important;
}

.collection-view-all:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    box-shadow: none !important;
}

/* Clean Minimal Design */
.watch-item-link {
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.watch-item-link:hover {
    background: rgba(255, 255, 255, 0.95) !important;
}

/* Subtle Outline Variations for Different Screen Sizes */
@media (max-width: 480px) {
    .watch-item-link {
        border: 1px solid rgba(16, 185, 129, 0.12) !important;
        border-radius: 12px;
    }
    
    .watch-item-link:hover {
        border: 2px solid #255E26 !important;
    }
    
    .watch-image {
        border: 1px solid rgba(16, 185, 129, 0.18) !important;
        border-radius: 12px;
    }
    
    .watch-item-link:hover .watch-image {
        border: 2px solid #255E26 !important;
    }
}

@media (max-width: 360px) {
    .watch-item-link {
        border: 1px solid rgba(16, 185, 129, 0.1) !important;
        border-radius: 10px;
    }
    
    .watch-image {
        border: 1px solid rgba(16, 185, 129, 0.15) !important;
        border-radius: 10px;
    }
}

/* Large Screen Enhancements */
@media (min-width: 600px) {
    .watch-item-link {
        border: 1px solid rgba(16, 185, 129, 0.18) !important;
        border-radius: 18px;
    }
    
    .watch-item-link:hover {
        border: 2px solid #255E26 !important;
    }
    
    .watch-image {
        border: 1px solid rgba(16, 185, 129, 0.22) !important;
    }
    
    .watch-item-link:hover .watch-image {
        border: 2px solid #255E26 !important;
    }
} /* Mobile Slider Overlay - Mobile View Only */
@media (max-width: 768px) {
    /* Mobile Slider Overlay Content */
    .slider-overlay-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        padding: 2rem 1.5rem 1.5rem;
        z-index: 10;
        color: white;
        text-align: center;
    }
    
    .slide-product-info {
        margin-bottom: 1.5rem;
    }
    
    .slide-collection-name {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0.5rem;
        font-family: "Montserrat", "Avenir Next", sans-serif;
    }
    
    .slide-product-name {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-family: "Montserrat", "Avenir Next", sans-serif;
        line-height: 1.3;
    }
    
    .slide-product-price {
        font-size: 1rem;
        font-weight: 600;
        color: #000000;
        margin-bottom: 1.5rem;
        font-family: "Montserrat", "Avenir Next", sans-serif;
    }
    
    .slide-acquire-btn {
        background: linear-gradient(135deg, #255E26, #255E26);
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: "Montserrat", "Avenir Next", sans-serif;
        margin-bottom: 1rem;
    }
    
    .slide-acquire-btn:hover {
        background: linear-gradient(135deg, #255E26, #255E26);
        transform: translateY(-2px);
    }
    
    /* Mobile Slider Navigation Indicators */
    .slider-navigation {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dot.active {
        background: #255E26;
        transform: scale(1.2);
    }
    
    .slider-dot:hover {
        background: rgba(16, 185, 129, 0.7);
    }
    
    /* Hide desktop sidebar on mobile */
    .product-showcase-sidebar {
        display: none !important;
    }
    
    /* Ensure slider takes full width on mobile */
    .slider-main-content {
        width: 100% !important;
        flex: none !important;
    }
    
    .slider-container {
        flex-direction: column !important;
    }
}

/* Responsive adjustments for smaller mobile screens */
@media (max-width: 480px) {
    .slider-overlay-content {
        padding: 1.5rem 1rem 1rem;
    }
    
    .slide-collection-name {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    
    .slide-product-name {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .slide-product-price {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .slide-acquire-btn {
        padding: 0.65rem 1.75rem;
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .slider-navigation {
        gap: 0.4rem;
        margin-top: 0.75rem;
    }
    
    .slider-dot {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 360px) {
    .slider-overlay-content {
        padding: 1.25rem 0.75rem 0.75rem;
    }
    
    .slide-collection-name {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
    }
    
    .slide-product-name {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .slide-product-price {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .slide-acquire-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
    }
    
    .slider-navigation {
        gap: 0.35rem;
        margin-top: 0.5rem;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
    }
} /* Mobile Slider Fixes - Outline Button & Square Styling */
@media (max-width: 768px) {
    /* Update acquire button to outline style with square borders */
    .slide-acquire-btn {
        background: transparent !important;
        border: 1px solid #255E26 !important;
        color: #255E26 !important;
        border-radius: 0 !important; /* Square borders */
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: "Montserrat", "Avenir Next", sans-serif;
        margin-bottom: 1rem;
    }
    
    .slide-acquire-btn:hover {
        background: #255E26 !important;
        color: white !important;
        transform: translateY(-2px);
    }
    
    /* Square indicators with better centering */
    .slider-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
        width: 100%;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
       
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dot.active {
        background: #255E26;
        transform: scale(1.2);
    }
    
    .slider-dot:hover {
        background: rgba(16, 185, 129, 0.7);
    }
    
    /* Ensure overlay content is properly centered */
    .slider-overlay-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        padding: 2rem 1.5rem 1.5rem;
        z-index: 10;
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }
}

/* Responsive adjustments for smaller mobile screens */
@media (max-width: 480px) {
    .slide-acquire-btn {
        padding: 0.65rem 1.75rem;
        font-size: 0.85rem;
        margin-bottom: 1.75rem;
        background: transparent !important;
        color: #ffffff !important;
        border: none !important;
        border-bottom: 2px solid #ffffff !important;
        font-weight: 700 !important;
    }
    
    .slider-navigation {
        gap: 0.4rem;
        margin-top: 0.75rem;
    }
    
    .slider-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
    }
    
    .slider-dot.active {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
    }
    
    /* Hide price on mobile and make text white */
    .slide-product-price {
        display: none !important;
    }
    
    .slide-collection-name,
    .slide-product-name {
        color: #ffffff !important;
    }
}

@media (max-width: 360px) {
    .slide-acquire-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
    }
    
    .slider-navigation {
        gap: 0.35rem;
        margin-top: 0.5rem;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }
    
    .slider-dot.active {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
    }
    
    /* Hide price on mobile and make text white */
    .slide-product-price {
        display: none !important;
    }
    
    .slide-collection-name,
    .slide-product-name {
        color: #ffffff !important;
    }
} /* Mobile Menu Overlay Fix - Complete Screen Coverage */
@media (max-width: 768px) {
    /* Ensure mobile menu overlay covers entire screen */
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.95) !important;
        z-index: 9999 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
    }
    
    /* Mobile menu content should be properly contained */
    .mobile-menu-content {
        position: relative;
        width: 100%;
        height: 100%;
        max-width: 100vw;
        max-height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        z-index: 10000;
    }
    
    /* Hide slider when mobile menu is active */
    .mobile-menu-open .revolutionary-slider {
        display: none !important;
    }
    
    /* Ensure body doesn't scroll when menu is open */
    .mobile-menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
} /* Mobile Navigation Sign Out Styling */
@media (max-width: 768px) {
    /* Sign out form container */
    .mobile-nav-signout-form {
        margin: 0 !important;
        width: 100%;
    }
    
    /* Sign out button styling */
    .mobile-nav-signout-btn {
        background: linear-gradient(135deg, #255E26, #255E26) !important;
        border: none !important;
        color: white !important;
        font-family: "Futura", "Avenir Next", sans-serif !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        padding: 0.875rem 1.5rem !important;
        margin: 1rem 0 0.5rem 0 !important;
        cursor: pointer !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
        position: relative;
        overflow: hidden;
    }
    
    /* Sign out button hover effect */
    .mobile-nav-signout-btn:hover {
        background: linear-gradient(135deg, #255E26, #255E26) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
    }
    
    /* Sign out button active state */
    .mobile-nav-signout-btn:active {
        transform: translateY(0) !important;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    }
    
    /* Add subtle icon before text */
    .mobile-nav-signout-btn::before {
        content: "⏻";
        margin-right: 0.5rem;
        font-size: 1rem;
        opacity: 0.9;
    }
    
    /* Container for sign out - add spacing */
    .mobile-nav-links li:has(.mobile-nav-signout-form) {
        margin-top: 0.5rem;
        padding: 0 1rem;
    }
    
    /* Divider before sign out */
    .mobile-nav-signout-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
        margin: 1rem 0 0.5rem 0;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-nav-signout-btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
        margin: 0.75rem 0 0.5rem 0 !important;
    }
}

@media (max-width: 360px) {
    .mobile-nav-signout-btn {
        padding: 0.65rem 1rem !important;
        font-size: 0.8rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .mobile-nav-links li:has(.mobile-nav-signout-form) {
        padding: 0 0.75rem;
    }
} /* Heritage Gallery - Sophisticated Image Display */
.heritage-gallery {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 2rem;
}

.heritage-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    background: #ffffff;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

.primary-card {
    width: 320px;
    height: 400px;
    z-index: 3;
    transform: rotate(-5deg) translateX(-20px);
}

.secondary-card {
    width: 280px;
    height: 350px;
    z-index: 2;
    transform: rotate(8deg) translateX(20px) translateY(30px);
    margin-left: -60px;
}

.card-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.1);
}

.heritage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.9) saturate(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(16, 185, 129, 0.8) 0%,
        rgba(16, 185, 129, 0.9) 100%
    );
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.overlay-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.overlay-content p {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.overlay-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.overlay-icon i {
    font-size: 1.2rem;
}

.card-reflection {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    border-radius: 20px;
    opacity: 0.3;
    transform: scaleY(-1);
    pointer-events: none;
    z-index: -1;
}

/* Hover Effects */
.heritage-card:hover {
    transform: scale(1.05) rotate(0deg) translateY(-10px);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 10px 40px rgba(16, 185, 129, 0.2);
    z-index: 10;
}

.heritage-card:hover .card-overlay {
    opacity: 1;
}

.heritage-card:hover .overlay-content {
    transform: translateY(0);
}

.heritage-card:hover .overlay-icon {
    background: #ffffff;
    color: #000000;
    transform: scale(1.1);
}

.heritage-card:hover .heritage-img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.2);
}

.primary-card:hover {
    margin-right: 20px;
}

.secondary-card:hover {
    margin-left: -40px;
}

/* Decorative Elements */
.heritage-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.deco-circle {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 20s linear infinite;
}

.deco-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #255E26 50%,
        transparent 100%
    );
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

@keyframes rotateCircle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .heritage-gallery {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 1rem;
    }
    
    .primary-card,
    .secondary-card {
        transform: none;
        margin: 0;
        width: 280px;
        height: 350px;
    }
    
    .heritage-card:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    .primary-card:hover,
    .secondary-card:hover {
        margin: 0;
    }
    
    .deco-circle {
        display: none;
    }
}

@media (max-width: 480px) {
    .primary-card,
    .secondary-card {
        width: 250px;
        height: 300px;
    }
    
    .overlay-content h4 {
        font-size: 1.1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
} 

/* Mobile Collections Cart Button Override */
@media (max-width: 480px) {
    .card-actions {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .add-to-cart-btn {
        display: none !important;
    }
    
    .mobile-cart-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #255E26;
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1rem;
        margin: 0.5rem auto 0 auto;
        order: 2;
    }
    
    .mobile-cart-btn:hover {
        background: #255E26;
        transform: scale(1.05);
    }
    
    .card-link {
        order: 1;
        margin-bottom: 0.5rem;
        text-align: center;
        align-self: center;
    }
}

/* Heritage Section - NASA Style Layout */
.heritage-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
}

.heritage-header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.heritage-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1rem;
}

.heritage-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.1;
}

.heritage-story-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.heritage-story-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.heritage-media-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

.heritage-video-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    background: #255E26;
}

.heritage-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.3s ease;
}

.video-play-overlay {
    display: none;
}

.heritage-video-container:hover .heritage-main-image {
    filter: grayscale(50%) contrast(1.2);
    transform: scale(1.02);
}

.heritage-document-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
}

.heritage-document-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.document-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.document-highlight {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 120px;
    height: 120px;
    border: 3px solid #255E26;
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.heritage-document-container:hover .document-overlay {
    opacity: 1;
}

.heritage-document-container:hover .document-highlight {
    opacity: 1;
}

.heritage-document-container:hover .heritage-document-image {
    transform: scale(1.02);
}

.heritage-cta-section {
    text-align: center;
    margin-bottom: 4rem;
}

.heritage-discover-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #255E26;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 1px solid #255E26;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.heritage-discover-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #255E26;
    transition: all 0.3s ease;
    z-index: -1;
}

.heritage-discover-btn:hover::before {
    left: 0;
}

.heritage-discover-btn:hover {
    color: #ffffff;
    border-color: #255E26;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .heritage-section {
        padding: 4rem 0;
    }
    
    .heritage-main-title {
        font-size: 2.5rem;
    }
    
    .heritage-media-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .heritage-story-text {
        font-size: 1rem;
    }
    
    .heritage-video-container,
    .heritage-document-container {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .heritage-main-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .heritage-story-text {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .heritage-discover-btn {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
}

/* Product Showcase Section */
.product-showcase-section {
    padding: 0;
    background: #ffffff;
    min-height: 100vh;
}

/* Showcase Header Section */
.showcase-header-section {
    background: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-header-container {
    /* max-width: 800px; */
    margin: 0 auto;
}

.showcase-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    width: 1200px;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
}

.showcase-discover-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #333333;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.showcase-discover-btn:hover {
    background: #255E26;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 70vh;
    gap: 2rem;
    margin: 0 -2rem;
}

.showcase-lifestyle {
    position: relative;
    background: #f8f8f8;
    overflow: hidden;
}

.lifestyle-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 70vh;
}

.lifestyle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lifestyle-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    opacity: 1;
    transition: all 0.3s ease;
}

.lifestyle-play-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lifestyle-play-btn i {
    font-size: 0.8rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.lifestyle-play-btn:hover {
    background: #255E26;
    transform: scale(1.1);
}

.lifestyle-play-btn:hover i {
    color: #ffffff;
}



.showcase-details {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.showcase-top-photo {
    flex: 1;
    min-height: 50%;
    overflow: hidden;
}

.showcase-top-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-detail-container {
    flex: 1;
    min-height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.product-content-horizontal {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-image-section {
    flex-shrink: 0;
}

.product-detail-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.product-info-section {
    flex: 1;
    text-align: left;
}

.product-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333333 !important;
    margin-bottom: 0.5rem;
}

.product-detail-specs {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 1rem;
}

.product-detail-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.product-detail-link:hover {
    /* border-bottom-color: #000000; */
}

.product-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn i {
    font-size: 1rem;
    color: #666666;
}

.nav-btn:hover {
    border-color: #000000;
}

.nav-btn:hover i {
    color: #000000;
}

.nav-indicator {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666666;
    min-width: 60px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-container {
        padding: 0 1.5rem;
    }
    
    .showcase-header-section {
        padding: 3rem 1.5rem;
    }
    
    .showcase-main-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 1.2rem;
    }
    
    .showcase-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .showcase-discover-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        min-height: auto;
        margin: 0 -1.5rem;
        gap: 0;
    }
    
    .lifestyle-image-container {
        min-height: 40vh;
        order: 1;
    }
    
    .showcase-details {
        order: 2;
        min-height: auto;
    }
    
    .showcase-top-photo {
        min-height: 180px;
        max-height: 180px;
    }
    
    .product-detail-container {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .product-content-horizontal {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .product-detail-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .product-info-section {
        text-align: center;
    }
    
    .product-navigation {
        justify-content: center;
        margin-left: 0;
    }
    
    .lifestyle-overlay {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .showcase-container {
        padding: 0 1rem;
    }
    
    .showcase-header-section {
        padding: 2.5rem 1rem;
    }
    
    .showcase-main-title {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }
    
    .showcase-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
    }
    
    .showcase-discover-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .showcase-content {
        margin: 0 -1rem;
    }
    
    .showcase-top-photo {
        min-height: 30%;
    }
    
    .product-detail-container {
        padding: 1rem;
    }
    
    .product-content-horizontal {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .product-detail-title {
        font-size: 0.9rem;
    }
    
    .product-detail-image {
        width: 150px;
        height: 150px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
    }
}

/* Strap Customization Section */
.strap-customization-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
}

.strap-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.strap-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.strap-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.strap-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 2.5rem;
}

.strap-shop-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #333333;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.strap-shop-btn:hover {
    background: #255E26;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.strap-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.strap-image-left,
.strap-image-right {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 4/3;
}

.strap-lifestyle-image,
.strap-collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.strap-image-left:hover .strap-lifestyle-image,
.strap-image-right:hover .strap-collection-image {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .strap-customization-section {
        padding: 6rem 0;
    }
    
    .strap-container {
        padding: 0 1.5rem;
    }
    
    .strap-header {
        margin-bottom: 3rem;
    }
    
    .strap-main-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 1.2rem;
    }
    
    .strap-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .strap-shop-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .strap-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .strap-customization-section {
        padding: 4rem 0;
    }
    
    .strap-container {
        padding: 0 1rem;
    }
    
    .strap-header {
        margin-bottom: 2.5rem;
    }
    
    .strap-main-title {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }
    
    .strap-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
    }
    
    .strap-shop-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .strap-images {
        gap: 1rem;
        margin-top: 2rem;
    }
}

/* Unified Typography - All Headings Use Cormorant Garamond */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif !important;
}

/* Ensure Menu Links Are Uppercase */
.mobile-nav-links a {
    text-transform: uppercase;
}
/* Mobile Fixes for Heritage in Black Showcase Section */
@media (max-width: 768px) {
    .product-showcase-section .showcase-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .product-showcase-section .lifestyle-image-container {
        order: 1 !important;
        min-height: 40vh !important;
    }
    
    .product-showcase-section .showcase-details {
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-showcase-section .showcase-top-photo {
        flex: 0 0 auto !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
    
    .product-showcase-section .product-detail-container {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 1.5rem !important;
    }
    
    .product-showcase-section .product-content-horizontal {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .product-showcase-section .product-detail-image {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto !important;
    }
    
    .product-showcase-section .product-info-section {
        text-align: center !important;
    }
    
    .product-showcase-section .product-navigation {
        justify-content: center !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .product-showcase-section .lifestyle-image-container {
        min-height: 35vh !important;
    }
    
    .product-showcase-section .showcase-top-photo {
        min-height: 200px !important;
        max-height: 200px !important;
    }
    
    .product-showcase-section .product-detail-container {
        padding: 1rem !important;
    }
    
    .product-showcase-section .product-content-horizontal {
        gap: 0.8rem !important;
    }
    
    .product-showcase-section .product-detail-image {
        width: 100px !important;
        height: 100px !important;
    }
    
    .product-showcase-section .product-detail-title {
        font-size: 0.9rem !important;
    }
    
    .product-showcase-section .product-navigation {
        margin-top: 1rem !important;
    }
    
    .product-showcase-section .nav-btn {
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
        min-height: 35px !important;
    }
}

/* Additional Padding for Heritage in Black Mobile Section */
@media (max-width: 768px) {
    .product-showcase-section {
        padding: 4rem 0 !important;
    }
    
    .product-showcase-section .showcase-container {
        padding: 0 1.5rem !important;
    }
    
    .product-showcase-section .showcase-header-section {
        padding: 3rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .product-showcase-section {
        padding: 3rem 0 !important;
    }
    
    .product-showcase-section .showcase-container {
        padding: 0 1rem !important;
    }
    
    .product-showcase-section .showcase-header-section {
        padding: 2.5rem 1rem !important;
    }
    
    .product-showcase-section .product-detail-container {
        padding: 1.5rem 1rem !important;
    }
}

/* Center the Heritage in Black Showcase Container */
.product-showcase-section .showcase-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
}

.product-showcase-section .showcase-content {
    margin: 0 auto !important;
    max-width: 100% !important;
}

/* Mobile centering adjustments */
@media (max-width: 768px) {
    .product-showcase-section .showcase-container {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .product-showcase-section .showcase-content {
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Remove left padding from product info section on mobile */
@media (max-width: 768px) {
    .product-showcase-section .product-info-section {
        padding-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .product-showcase-section .product-info-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Make Heritage Media Section Rectangular on Mobile */
@media (max-width: 768px) {
    .heritage-media-section .heritage-video-container,
    .heritage-media-section .heritage-document-container {
        aspect-ratio: 16/9 !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .heritage-media-section .heritage-main-image,
    .heritage-media-section .heritage-document-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        aspect-ratio: 16/9 !important;
    }
    
    .heritage-media-section .heritage-media-left,
    .heritage-media-section .heritage-media-right {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .heritage-media-section .heritage-video-container,
    .heritage-media-section .heritage-document-container {
        aspect-ratio: 4/3 !important;
    }
    
    .heritage-media-section .heritage-main-image,
    .heritage-media-section .heritage-document-image {
        aspect-ratio: 4/3 !important;
    }
}

/* Remove background from heritage section */
.heritage-section::before {
    background: none !important;
}

/* Fix THE SCROLL menu item styling */
.mobile-nav-links a[href="#the-scroll"] {
    background: transparent !important;
    color: #1a1a1a !important;
    border: none !important;
}

.mobile-nav-links a[href="#the-scroll"]:hover {
    /* background: rgba(16, 185, 129, 0.1) !important; */
    color: #1a1a1a !important;
}

.mobile-nav-links a[href="#the-scroll"]:active,
.mobile-nav-links a[href="#the-scroll"]:focus {
    background: transparent !important;
    color: #1a1a1a !important;
    outline: none !important;
}


/* Enhanced Cart Item Styling for Better Layout */
.cart-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1) !important;
    position: relative !important;
}

.cart-item:last-child {
    border-bottom: none !important;
}

.cart-item-image {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cart-item-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    display: block !important;
}

.cart-item-details {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #1a2332 !important;
    margin: 0 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.3 !important;
}

.cart-item-collection {
    font-size: 0.75rem !important;
    color: #666 !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

.cart-item-price {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1a2332 !important;
    font-family: 'Montserrat', serif !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
}

.cart-item-quantity {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-top: 0.5rem !important;
}

.quantity-btn {
    background: #255E26 !important;
    color: white !important;
    border: none !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.8rem !important;
    font-weight: bold !important;
}

.quantity-btn:hover {
    background: #255E26 !important;
    transform: scale(1.1) !important;
}

.quantity-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.quantity-display {
    min-width: 35px !important;
    text-align: center !important;
    font-weight: 600 !important;
    color: #1a2332 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
}

.cart-item-remove {
    background: transparent !important;
    color: #255E26 !important;
    border: 1px solid #255E26 !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    position: absolute !important;
    top: 1rem !important;
    right: 0 !important;
}

.cart-item-remove:hover {
    background: #255E26 !important;
    color: white !important;
    transform: scale(1.1) !important;
}

/* Mobile Responsive Improvements */
@media (max-width: 480px) {
    .cart-item {
        gap: 0.75rem !important;
        padding: 0.75rem 0 !important;
        padding-right: 40px !important;
    }
    
    .cart-item-image {
        width: 60px !important;
        height: 60px !important;
    }
    
    .cart-item-name {
        font-size: 0.9rem !important;
    }
    
    .cart-item-collection {
        font-size: 0.7rem !important;
    }
    
    .cart-item-price {
        font-size: 1rem !important;
    }
    
    .quantity-btn {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.75rem !important;
    }
    
    .cart-item-remove {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
        top: 0.75rem !important;
    }
}

/* Square Outline Button Styles for Cart */
.quantity-btn {
    background: transparent !important;
    color: #255E26 !important;
    border: 1px solid #255E26 !important;
    border-radius: 0 !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.8rem !important;
    font-weight: bold !important;
}

.quantity-btn:hover {
    background: #255E26 !important;
    color: white !important;
    transform: scale(1.05) !important;
}

.quantity-btn:disabled {
    background: transparent !important;
    color: #ccc !important;
    border-color: #ccc !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.cart-item-remove {
    background: transparent !important;
    color: #255E26 !important;
    border: 1px solid #255E26 !important;
    border-radius: 0 !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    position: absolute !important;
    top: 1rem !important;
    right: 0 !important;
}

.cart-item-remove:hover {
    background: #255E26 !important;
    color: white !important;
    transform: scale(1.05) !important;
}

/* Mobile Square Button Styles */
@media (max-width: 480px) {
    .quantity-btn {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.75rem !important;
        border-radius: 0 !important;
    }
    
    .cart-item-remove {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
        border-radius: 0 !important;
        top: 0.75rem !important;
    }
}

/* Improved Cart Count Badge Styling */
.cart-count-new, #cart-count {
    background: #255E26 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    line-height: 1 !important;
    text-align: center !important;
    min-width: 20px !important;
    min-height: 20px !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* For larger numbers, make badge slightly wider */
.cart-count-new[data-count*="1"], #cart-count:not(:empty) {
    min-width: 22px !important;
    padding: 0 2px !important;
}

/* Ensure proper positioning relative to cart icon */
.cart-btn {
    position: relative !important;
}

/* Mobile cart count styling */
@media (max-width: 768px) {
    .cart-count-new, #cart-count {
        width: 18px !important;
        height: 18px !important;
        font-size: 11px !important;
        top: -6px !important;
        right: -6px !important;
        min-width: 18px !important;
        min-height: 18px !important;
    }
}

/* Improved Cart Layout - Move Quantity Controls Under Product Details */
.cart-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1) !important;
    position: relative !important;
}

.cart-item-details {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.3rem !important;
}

.cart-item-quantity {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-top: 0.8rem !important;
    margin-bottom: 0 !important;
}

/* Remove button stays on the right side */
.cart-item-remove {
    background: transparent !important;
    color: #255E26 !important;
    border: 1px solid #255E26 !important;
    border-radius: 0 !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    margin-left: 1rem !important;
    align-self: flex-start !important;
}

.cart-item-remove:hover {
    background: #255E26 !important;
    color: white !important;
    transform: scale(1.05) !important;
}

/* Quantity controls styling */
.cart-item-quantity-label {
    font-size: 0.8rem !important;
    color: #666 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    margin-right: 0.5rem !important;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .cart-item {
        gap: 0.75rem !important;
        padding: 0.75rem 0 !important;
    }
    
    .cart-item-quantity {
        margin-top: 0.6rem !important;
    }
    
    .cart-item-remove {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
        margin-left: 0.75rem !important;
    }
}

/* HIDE WISHLIST BUTTON ON ALL DEVICES */
.wishlist-btn {
    display: none !important;
}

/* MOBILE RESPONSIVE STYLES FOR PRODUCT PAGE */

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .product-details-grid {
        gap: 3rem;
    }
    
    .product-info-section {
        padding-left: 1rem;
    }
    
    .product-title {
        font-size: 2.4rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Product Details Grid - Stack on Mobile with Header Above Image */
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        position: relative;
    }
    
    .product-image-section {
        position: relative;
        z-index: 1;
        /* min-height: 50vh; */
        order: 2;
    }
    
    .product-main-image {
        min-height: 50vh;
        object-fit: cover;
    }
    
    .product-info-section {
        padding-left: 0;
        order: 1;
    }
    
    /* Move product header above image */
    .product-info-section .product-header {
        position: static;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        padding: 0 1.5rem 1rem;
        margin: 0;
        box-shadow: none;
        border: none;
        margin-bottom: 0;
        order: 1;
    }
    
    /* Rearrange sections within product-info */
    .product-info-section {
        display: flex;
        flex-direction: column;
        padding-top: 50px;
    }
    
    .product-info-section .product-header {
        order: 1;
    }
    
    .product-info-section .product-price-section {
        order: 3;
    }
    
    .product-info-section .product-description {
        order: 4;
    }
    
    .product-info-section .product-specifications {
        order: 5;
    }
    
    .product-info-section .stock-status {
        order: 6;
    }
    
    .product-info-section .add-to-cart-section {
        order: 7;
    }
    
    /* Product Image Section */
    .product-main-image {
        border-radius: 15px;
        margin-bottom: 1rem;
    }
    
    .gallery-thumbnails {
        gap: 0.75rem;
        overflow-x: auto;
        padding: 0.5rem 0;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    /* Product Header */
    .product-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .product-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 2rem;
    }
    
    .product-collection-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.7rem;
        margin-bottom: 1.2rem;
    }
    
    /* Product Price Section */
    .product-price-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .price-note {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    /* Product Description */
    .product-description {
        margin-bottom: 2rem;
    }
    
    .product-description h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .product-description p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* Technical Specifications */
    .product-specifications {
        margin-bottom: 2rem;
    }
    
    .product-specifications h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .spec-item {
        padding: 1rem;
        border-radius: 10px;
        background: rgba(248, 249, 250, 0.8);
        border: 1px solid rgba(26, 35, 50, 0.05);
    }
    
    .spec-label {
        font-size: 0.8rem;
        font-weight: 600;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .spec-value {
        font-size: 0.95rem;
        color: #1a2332;
        font-weight: 500;
    }
    
    /* Add to Cart Section */
    .add-to-cart-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    /* Hide wishlist button on mobile */
    .wishlist-btn {
        display: none;
    }
    
    .quantity-controls {
        max-width: 180px;
    }
    
    .quantity-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .quantity-controls input {
        width: 70px;
        font-size: 1.2rem;
        padding: 0.8rem;
    }
    
    .add-to-cart-btn-large {
        padding: 1.5rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 50px;
    }
    
    .wishlist-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 50px;
    }
    
    /* Stock Status */
    .stock-status {
        margin-bottom: 2rem;
    }
    
    .in-stock,
    .out-of-stock {
        padding: 0.8rem;
        border-radius: 8px;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Product Details Section */
    .product-details-section {
        padding: 1rem 0;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .product-image-section {
        /* min-height: 45vh; */
    }
    
    .product-main-image {
        min-height: 45vh;
        object-fit: cover;
    }
    
    /* Product header above image on small mobile */
    .product-info-section .product-header {
        padding: 0 1.2rem 1rem;
        background: transparent;
        border-radius: 0;
    }
    
    /* Product Image */
    .product-main-image {
        border-radius: 12px;
    }
    
    .image-zoom-overlay {
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        font-size: 0.8rem;
    }
    
    .gallery-thumbnails {
        gap: 0.5rem;
    }
    
    .gallery-thumb {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
    
    /* Product Header */
    .product-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .product-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
        margin-bottom: 1.5rem;
    }
    
    .product-collection-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.65rem;
        letter-spacing: 1.2px;
        margin-bottom: 1rem;
    }
    
    /* Product Price Section */
    .product-price-section {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .current-price {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .price-note {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    /* Product Description */
    .product-description {
        margin-bottom: 1.5rem;
    }
    
    .product-description h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .product-description p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* Technical Specifications */
    .product-specifications {
        margin-bottom: 1.5rem;
    }
    
    .product-specifications h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .spec-item {
        padding: 0.8rem;
        border-radius: 8px;
    }
    
    .spec-label {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .spec-value {
        font-size: 0.9rem;
    }
    
    .specifications-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .specifications-details p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* Add to Cart Section */
    .add-to-cart-section {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    /* Hide wishlist button on small mobile */
    .wishlist-btn {
        display: none;
    }
    
    .quantity-selector {
        margin-bottom: 2rem;
    }
    
    .quantity-selector label {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    @media (max-width: 480px) {
        .quantity-controls {
            max-width: 190px;
            padding: 0.8rem;
        }
    }
    
    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .quantity-controls input {
        width: 60px;
        font-size: 1.1rem;
        padding: 0.6rem;
    }
    
    .add-to-cart-btn-large {
        padding: 1.3rem 1.2rem;
        font-size: 0.9rem;
        letter-spacing: 1.2px;
        border-radius: 45px;
        margin-bottom: 1.2rem;
    }
    
    .add-to-cart-btn-large i {
        font-size: 1.1rem;
    }
    
    .wishlist-btn {
        padding: 1.1rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
        border-radius: 45px;
    }
    
    .wishlist-btn i {
        font-size: 1rem;
    }
    
    /* Stock Status */
    .stock-status {
        margin-bottom: 1.5rem;
    }
    
    .in-stock,
    .out-of-stock {
        padding: 0.3rem 0.8rem;
        border-radius: 6px;
        font-size: 0.85rem;
    }
    
    .in-stock i,
    .out-of-stock i {
        font-size: 1.1rem;
    }
}

/* Breadcrumb Mobile Responsiveness */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 1rem 0;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        padding: 0.8rem 0;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .breadcrumb-separator {
        margin: 0 0.3rem;
    }
}

/* Product Features Section Mobile */
@media (max-width: 768px) {
    .product-features-full-width {
        padding: 3rem 0;
    }
    
    .product-features-container {
        padding: 0 1rem;
    }
    
    .product-features-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .features-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .features-subtitle {
        font-size: 0.9rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-features-full-width {
        padding: 2rem 0;
    }
    
    .features-title {
        font-size: 1.7rem;
    }
    
    .features-subtitle {
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-item i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
}

/* Related Products Mobile */
@media (max-width: 768px) {
    .related-products-section {
        padding: 3rem 0;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .related-product-card {
        max-width: 100%;
    }
    
    .related-product-image {
        border-radius: 12px;
    }
    
    .related-product-info {
        padding: 1rem;
    }
    
    .related-product-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .related-product-price {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .related-add-to-cart {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .related-products-section {
        padding: 2rem 0;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .related-product-card {
        display: flex;
        gap: 1rem;
        padding: 10px;
        align-items: center;
    }
    
    .related-product-image {
        flex: 0 0 100px;
        height: 100px;
        border-radius: 8px;
    }
    
    .related-product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .related-product-info {
        flex: 1;
        padding: 0;
    }
    
    .related-product-name {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }
    
    .related-product-price {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        font-weight: 600;
    }
    
    .related-add-to-cart {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        border-radius: 20px;
        width: auto;
        display: inline-block;
    }
}

/* Touch Improvements for Mobile */
@media (hover: none) and (pointer: coarse) {
    .quantity-btn,
    .add-to-cart-btn-large,
    .wishlist-btn,
    .gallery-thumb {
        -webkit-tap-highlight-color: transparent;
    }
    
    .quantity-btn:active {
        transform: scale(0.95);
        background: #255E26;
        color: white;
    }
    
    .add-to-cart-btn-large:active {
        transform: translateY(-1px);
    }
    
    .wishlist-btn:active {
        background: rgba(26, 35, 50, 0.05);
    }
}

/* Mobile and Desktop Product Headers */
.mobile-product-header {
    display: none;
}

.desktop-product-header {
    display: block;
}

/* Hide mobile image on desktop, show on mobile */
.mobile-product-image-section {
    display: none;
}

@media (max-width: 768px) {
    .mobile-product-header {
        display: block;
        margin-bottom: 1rem;
    }
    
    .desktop-product-header {
        display: none;
    }
    
    .mobile-product-image-section {
        display: block;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .mobile-product-image-section .product-main-image {
        overflow: hidden;
        border-radius: 12px;
        position: relative;
        cursor: pointer;
    }
    
    .mobile-product-image-section .main-product-image {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
        transform-origin: center;
    }
    
    .product-details-grid .product-image-section {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-product-header {
        display: none !important;
    }
    
    .desktop-product-header {
        display: block !important;
    }
    
    .mobile-product-image-section {
        display: none !important;
    }
    
    .product-details-grid .product-image-section {
        display: block !important;
    }
}

@media (min-width: 1024px) {
    .product-features-full-width .product-features .feature-item {
      padding: 1.2rem 0.7rem !important;
      gap: 1rem !important;
    }
    .product-features-full-width .product-features .feature-item i {
      font-size: 2.2rem !important;
      min-width: 2.5rem !important;
      height: 2.5rem !important;
    }
    .product-features-full-width .product-features .feature-content h4 {
      font-size: 1.1rem !important;
      margin-bottom: 0.5rem !important;
    }
    .product-features-full-width .product-features .feature-content p {
      font-size: 0.85rem !important;
    }
  }

/* Scroll Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for child elements */
.animate-on-scroll[data-animation="slide-up"] .heritage-header-section {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll[data-animation="slide-up"] .heritage-story-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll[data-animation="slide-up"] .heritage-cta-section {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll[data-animation="slide-up"] .showcase-header-section,
.animate-on-scroll[data-animation="slide-up"] .strap-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Slide from left and right animations */
.animate-on-scroll[data-animation="slide-up"] .heritage-media-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll[data-animation="slide-up"] .heritage-media-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll[data-animation="slide-up"] .showcase-lifestyle {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll[data-animation="slide-up"] .showcase-details {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll[data-animation="slide-up"] .strap-image-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll[data-animation="slide-up"] .strap-image-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated .heritage-header-section {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.animate-on-scroll.animated .heritage-story-content {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.animate-on-scroll.animated .heritage-cta-section {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.animate-on-scroll.animated .heritage-media-left {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.animate-on-scroll.animated .heritage-media-right {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.animate-on-scroll.animated .showcase-header-section {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.animate-on-scroll.animated .showcase-lifestyle {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.animate-on-scroll.animated .showcase-details {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.animate-on-scroll.animated .strap-header {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.animate-on-scroll.animated .strap-image-left {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.animate-on-scroll.animated .strap-image-right {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in animation for images */
.heritage-main-image,
.heritage-document-image,
.lifestyle-image,
.showcase-top-image,
.product-detail-image,
.strap-lifestyle-image,
.strap-collection-image {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated .heritage-main-image,
.animate-on-scroll.animated .heritage-document-image,
.animate-on-scroll.animated .lifestyle-image,
.animate-on-scroll.animated .showcase-top-image,
.animate-on-scroll.animated .product-detail-image,
.animate-on-scroll.animated .strap-lifestyle-image,
.animate-on-scroll.animated .strap-collection-image {
    opacity: 1;
    transform: scale(1);
}

/* Additional slide animations for buttons and interactive elements */
.heritage-discover-btn,
.showcase-discover-btn,
.strap-shop-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated .heritage-discover-btn {
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

.animate-on-scroll.animated .showcase-discover-btn {
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.animate-on-scroll.animated .strap-shop-btn {
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

/* Product navigation buttons slide in */
.nav-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated .nav-btn {
    animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

.animate-on-scroll.animated .nav-btn:nth-child(2) {
    animation-delay: 1.4s;
}

.animate-on-scroll.animated .nav-btn:nth-child(3) {
    animation-delay: 1.6s;
}

/* Mobile responsive animations */
@media (max-width: 768px) {
    .animate-on-scroll {
        transform: translateY(30px);
    }
}

/* Global Heading Colors - Green Theme */
h1, h2, h3 {
    color: #255E26 !important;
}

/* Card titles should remain black */
.card-title {
    color: #000000 !important;
}

/* Journal Section Styles */
.journal-section {
    padding: 8rem 0 12rem 0;
    background: #ffffff;
}

.journal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.journal-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journal-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #255E26;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.journal-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.journal-view-all-btn {
    display: inline-block;
    background: #255E26;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid #255E26;
}

.journal-view-all-btn:hover {
    background: #ffffff;
    color: #255E26;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 94, 38, 0.2);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.journal-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 94, 38, 0.1);
}

.journal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(37, 94, 38, 0.15);
    border-color: rgba(37, 94, 38, 0.2);
}

.journal-image-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.journal-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.journal-card:hover .journal-card-image {
    transform: scale(1.05);
}

.journal-card-content {
    padding: 2rem;
}

.journal-card-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-wrap: wrap;
}

.journal-category {
    background: #255E26;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
}

.journal-card-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.journal-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.journal-card-title-link:hover .journal-card-title {
    color: #255E26;
}

.journal-card-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.journal-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #255E26;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.journal-read-more:hover {
    gap: 1rem;
    color: #1a1a1a;
}

.journal-read-more i {
    transition: transform 0.3s ease;
}

.journal-read-more:hover i {
    transform: translateX(3px);
}

/* Journal Section Responsive Design */
@media (max-width: 768px) {
    .journal-section {
        padding: 6rem 0 10rem 0;
    }
    
    .journal-container {
        padding: 0 1.5rem;
    }
    
    .journal-main-title {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.2rem;
    }
    
    .journal-description {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .journal-view-all-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .journal-card-content {
        padding: 1.5rem;
    }
    
    .journal-card-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .journal-card-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .journal-card-meta {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .journal-category {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .journal-section {
        padding: 4rem 0 8rem 0;
    }
    
    .journal-container {
        padding: 0 1rem;
    }
    
    .journal-main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .journal-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .journal-view-all-btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.8rem;
    }
    
    .journal-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .journal-card-content {
        padding: 1.2rem;
    }
    
    .journal-card-title {
        font-size: 1.2rem;
    }
    
    .journal-card-excerpt {
        font-size: 0.85rem;
    }
    
    .journal-read-more {
        font-size: 0.8rem;
    }
    
    .journal-card-image {
        height: 200px;
    }
}