/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    flex: 0 0 auto;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.chevron {
    font-size: 0.7rem;
    opacity: 0.7;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: #cccccc;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffffff;
    color: #000000;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    min-width: 16px;
    text-align: center;
}

/* Main Content */
.main-content {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    width: 100vw;
    /* Account for safe areas */
    padding-bottom: env(safe-area-inset-bottom);
    padding-bottom: constant(safe-area-inset-bottom);
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    overflow: hidden;
    /* Account for safe areas */
    padding-bottom: env(safe-area-inset-bottom);
    padding-bottom: constant(safe-area-inset-bottom);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Specific positioning for new6.webp image */
.slide-image-6 {
    object-position: center 80%; /* Moves the image further down by positioning it 20% from the top instead of center */
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: none;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 100;
}

.nav-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
    opacity: 0.7;
}

.nav-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    /* Account for safe areas on mobile */
    padding-bottom: env(safe-area-inset-bottom);
    padding-bottom: constant(safe-area-inset-bottom);
    gap: 0.5rem;
    z-index: 100;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #ffffff;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 50;
}

.overlay-content {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    max-width: 650px;
    padding-left: 2.5rem;
    /* Account for safe areas on mobile */
    padding-bottom: env(safe-area-inset-bottom);
    padding-bottom: constant(safe-area-inset-bottom);
}



/* Force horizontal layout for desktop/laptop views */
@media (min-width: 768px) {
    .form-group {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
    }
    
    .email-input {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .submit-btn {
        flex-shrink: 0 !important;
    }
}

/* Mobile form layout adjustments */
@media (max-width: 767px) {
    .form-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .email-input {
        width: 100%;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.3s ease-in-out;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    /* Account for safe areas and navigation keys */
    padding-bottom: env(safe-area-inset-bottom);
    padding-bottom: constant(safe-area-inset-bottom);
}

/* Hide hamburger menu when mobile nav is active */
body.mobile-menu-active .hamburger-menu {
    opacity: 0;
    pointer-events: none;
}

/* Prevent body scrolling when mobile menu is active */
body.mobile-menu-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Ensure mobile navigation is scrollable */
.mobile-nav-overlay.active {
    overflow: hidden;
}

.mobile-nav-overlay.active .mobile-nav-content {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

/* Additional mobile navigation improvements for safe areas */
.mobile-nav-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    padding-bottom: calc(2rem + constant(safe-area-inset-bottom));
    margin-top: auto;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    padding: 2rem 1.5rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    padding-bottom: calc(2rem + constant(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
}

.mobile-nav-content::-webkit-scrollbar {
    display: none;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-close-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.close-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    transform-origin: center;
}

.close-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-menu {
    flex: 1;
    margin-bottom: 2rem;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

.mobile-nav-item {
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #cccccc;
}

.mobile-chevron {
    font-size: 1rem;
    opacity: 0.7;
}

.mobile-nav-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.mobile-nav-icons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-icon-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-icon-link:hover {
    color: #cccccc;
}

.mobile-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

/* Hamburger Menu Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Responsive Design */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .nav-container {
        padding: 1.5rem 3rem;
        max-width: 1600px;
    }
    

    
    .overlay-content {
        bottom: 5rem;
        left: 5rem;
        max-width: 900px;
        padding-left: 4rem;
    }
    

    
    .slideshow-nav {
        padding: 0 3rem;
    }
    
    .nav-btn {
        font-size: 2.5rem;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .nav-container {
        padding: 1.2rem 2.5rem;
    }
    
    .overlay-content {
        bottom: 4rem;
        left: 4rem;
        max-width: 800px;
        padding-left: 3.5rem;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-list {
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .overlay-content {
        bottom: 3rem;
        left: 3rem;
        right: 3rem;
        max-width: 750px;
        padding-left: 3rem;
    }
    
    .slideshow-nav {
        padding: 0 2rem;
    }
    
    .nav-btn {
        font-size: 2rem;
    }
    
    .slideshow-indicators {
        bottom: 2.5rem;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .header {
        top: 20px;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Show hamburger menu on tablets */
    .hamburger-menu {
        display: flex;
    }
    
    /* Hide desktop navigation on tablets */
    .nav-menu {
        display: none;
    }
    
    .overlay-content {
        bottom: 2.5rem;
        left: 2rem;
        right: 2rem;
        max-width: 450px;
    }
    
    .slideshow-nav {
        padding: 0 1.5rem;
    }
    
    .nav-btn {
        font-size: 1.8rem;
    }
    
    .slideshow-indicators {
        bottom: 2rem;
        gap: 0.4rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Mobile Large (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .header {
        top: 20px;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Ensure hamburger menu is visible on mobile */
    .hamburger-menu {
        display: flex;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .overlay-content {
        bottom: 2rem;
        left: 1.5rem;
        right: 1.5rem;
        max-width: 400px;
    }
    
    .slideshow-nav {
        padding: 0 1rem;
    }
    
    .nav-btn {
        font-size: 1.6rem;
    }
    
    .slideshow-indicators {
        bottom: 1.5rem;
        gap: 0.3rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .header {
        top: 20px;
    }
    
    .nav-container {
        padding: 0.7rem 0.8rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Ensure hamburger menu is visible on mobile */
    .hamburger-menu {
        display: flex;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .overlay-content {
        bottom: 1.5rem;
        left: 1rem;
        right: 1rem;
        max-width: 350px;
    }
    
    .slideshow-nav {
        padding: 0 0.8rem;
    }
    
    .nav-btn {
        font-size: 1.4rem;
    }
    
    .slideshow-indicators {
        bottom: 1.2rem;
        gap: 0.25rem;
    }
    
    .indicator {
        width: 7px;
        height: 7px;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .header {
        top: 20px;
    }
    
    .nav-container {
        padding: 0.6rem 0.6rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Ensure hamburger menu is visible on mobile */
    .hamburger-menu {
        display: flex;
    }
    
    /* Improve mobile navigation scrolling for very small screens */
    .mobile-nav-content {
        padding: 1rem 0.8rem;
        height: 100vh;
        height: 100dvh;
        overflow-y: auto;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
        padding-bottom: calc(1rem + constant(safe-area-inset-bottom));
    }
    
    .mobile-nav-menu {
        margin-bottom: 1rem;
        flex: 1;
        min-height: 0;
    }
    
    /* Even smaller hamburger menu font sizes for very small screens */
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.7rem 0;
    }
    
    .mobile-chevron {
        font-size: 0.7rem;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .overlay-content {
        bottom: 1rem;
        left: 0.8rem;
        right: 0.8rem;
        max-width: 300px;
    }
    
    .slideshow-nav {
        padding: 0 0.6rem;
    }
    
    .nav-btn {
        font-size: 1.2rem;
    }
    
    .slideshow-indicators {
        bottom: 1rem;
        gap: 0.2rem;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        top: 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Ensure hamburger menu is visible in landscape */
    .hamburger-menu {
        display: flex;
    }
    
    .overlay-content {
        bottom: 1rem;
        left: 2rem;
        right: 2rem;
    }
    
    .slideshow-indicators {
        bottom: 1rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .header,
    .slideshow-nav,
    .slideshow-indicators,
    .overlay {
        display: none;
    }
    
    .main-content {
        height: auto;
    }
    
    .slide {
        position: static;
        opacity: 1;
        margin-bottom: 20px;
    }
    
    .slide-image {
        max-width: 100%;
        height: auto;
    }
}

/* Animation for slideshow */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide.active {
    animation: fadeIn 1s ease-in-out;
}

/* Special positioning for new6.webp */
.slide-image-new6 {
    object-position: center -500px !important;
} 

/* Coming Soon Section */
.coming-soon-section {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 200;
    max-width: 700px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.coming-soon-section:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.coming-soon-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
}

.coming-soon-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.waitlist-form {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.email-input {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 400;
    transition: all 0.3s ease;
    outline: none;
    backdrop-filter: blur(15px);
}

.email-input::placeholder {
    color: #ffffff;
    font-weight: 300;
}

.email-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.email-input:invalid {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.email-input.invalid {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.form-group.focused .email-input {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.submit-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    border: none;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-height: 44px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(0, 0, 0, 0.4);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Responsive Design for Coming Soon Section */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .coming-soon-section {
        bottom: 3rem;
        left: 3rem;
        max-width: 800px;
        padding: 3.5rem;
    }
    
    .coming-soon-title {
        font-size: 4.2rem;
        font-weight: 700;
        letter-spacing: 0.15em;
    }
    
    .coming-soon-subtitle {
        font-size: 1.6rem;
        font-weight: 300;
        letter-spacing: 0.03em;
    }
    
    .form-group {
        gap: 1rem;
    }
    
    .email-input {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .coming-soon-section {
        bottom: 2.5rem;
        left: 2.5rem;
        max-width: 750px;
        padding: 3.2rem;
    }
    
    .coming-soon-title {
        font-size: 3.8rem;
        font-weight: 700;
        letter-spacing: 0.12em;
    }
    
    .coming-soon-subtitle {
        font-size: 1.5rem;
        font-weight: 300;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .coming-soon-section {
        bottom: 2rem;
        left: 2rem;
        max-width: 700px;
        padding: 3rem;
    }
    
    .coming-soon-title {
        font-size: 3.5rem;
        font-weight: 700;
        letter-spacing: 0.1em;
    }
    
    .coming-soon-subtitle {
        font-size: 1.4rem;
        font-weight: 300;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .coming-soon-section {
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
        max-width: none;
        padding: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: 0.1em;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .form-group {
        gap: 0.7rem;
    }
    
    .email-input {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
}

/* Mobile Large (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .coming-soon-section {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.8rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .form-group {
        gap: 0.8rem;
    }
    
    .email-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-note {
        font-size: 0.8rem;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .coming-soon-section {
        bottom: 0.8rem;
        left: 0.8rem;
        right: 0.8rem;
        padding: 2rem;
        border-radius: 0;
    }
    
    .coming-soon-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2.2rem;
    }
    
    .form-group {
        gap: 0.8rem;
    }
    
    .email-input {
        padding: 0.9rem 1.1rem;
        font-size: 1rem;
        border-radius: 0;
    }
    
    .submit-btn {
        padding: 0.9rem 1.6rem;
        font-size: 0.9rem;
        border-radius: 0;
        min-height: 48px;
    }
    
    .form-note {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .coming-soon-section {
        bottom: 0.6rem;
        left: 0.6rem;
        right: 0.6rem;
        padding: 1.8rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .form-group {
        gap: 0.7rem;
    }
    
    .email-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .form-note {
        font-size: 0.75rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .coming-soon-section {
        bottom: 0.8rem;
        left: 1.5rem;
        max-width: 350px;
        padding: 1rem;
    }
    
    .coming-soon-title {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .coming-soon-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        gap: 0.5rem;
    }
    
    .email-input {
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .submit-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        min-height: 36px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .coming-soon-section {
        border-width: 0.5px;
    }
}

/* Print Styles */
@media print {
    .coming-soon-section {
        display: none;
    }
} 
