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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.75rem 0;
    height: 70px;
    display: flex;
    align-items: center;
}

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

.nav-logo h1 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.01em;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-track {
    background: #64943e;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-track:hover {
    background: #5a8237;
    transform: translateY(-1px);
}

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

.icon-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    color: #000;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

/* Buttons - Shopify Style */
.btn-primary, .btn, .btn-track {
    background: #64943e;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    display: inline-flex;
    display: -webkit-inline-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary:hover, .btn:hover, .btn-track:hover {
    background: #5a8237;
    transform: translateY(-1px);
}

.btn-secondary, .btn-outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover, .btn-outline:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-icon {
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-icon, .btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Button click animation */
.btn:active, .btn-outline:active, .btn-primary:active, .btn-secondary:active, .btn-track:active, .icon-btn:active {
    transform: scale(0.98) !important;
    transition: transform 0.1s cubic-bezier(0.47, 1.64, 0.41, 0.8) !important;
}

/* Ripple effect styling */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Consistent focus states */
.btn:focus, .btn-outline:focus, .btn-primary:focus, .btn-secondary:focus, .btn-track:focus, .icon-btn:focus {
    outline: 2px solid #64943e;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(100, 148, 62, 0.3) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: #64943e;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.watch-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.watch-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #64943e;
    border-radius: 50%;
    position: relative;
}

.watch-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid #000;
    border-radius: 50%;
}

.watch-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}

.watch-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-line {
    height: 2px;
    background: #000;
    border-radius: 1px;
}

.detail-line:nth-child(1) {
    width: 80px;
}

.detail-line.short {
    width: 50px;
}

.detail-line.medium {
    width: 65px;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border: 1px solid rgba(100, 148, 62, 0.2);
    border-radius: 50%;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(100, 148, 62, 0.3), transparent);
    height: 1px;
}

.line-1 {
    width: 300px;
    top: 30%;
    left: -100px;
    transform: rotate(45deg);
}

.line-2 {
    width: 200px;
    bottom: 40%;
    right: -50px;
    transform: rotate(-30deg);
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    font-weight: 500;
}

.trust-icon {
    color: #64943e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn-track {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .trust-container {
        gap: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-font-smoothing: antialiased;
        -webkit-text-size-adjust: 100%;
    }
    
    .navbar {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    }
    
    .btn-primary, .btn, .btn-track, .btn-secondary, .btn-outline, .icon-btn {
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .btn-primary:active, .btn:active, .btn-track:active {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }
    
    .ripple {
        -webkit-animation: ripple 0.6s linear;
        animation: ripple 0.6s linear;
    }
    
    @-webkit-keyframes ripple {
        to {
            -webkit-transform: scale(4);
            transform: scale(4);
            opacity: 0;
        }
    }
}