/* W. GRAUBART - Patek Philippe Inspired Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-gold: #C9A96E;
    --secondary-gold: #B8860B;
    --dark-gold: #8B7355;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --text-muted: #999999;
    --background-white: #FFFFFF;
    --background-light: #FAFAFA;
    --background-dark: #0A0A0A;
    --border-light: #E5E5E5;
    --shadow-subtle: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.cta-nav {
    background: var(--text-dark);
    color: var(--background-white);
    padding: 12px 24px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid var(--text-dark);
}

.cta-nav:hover {
    background: transparent;
    color: var(--text-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 1px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-background {
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.3" fill="%23C9A96E" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.hero-text {
    margin-bottom: 60px;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f8f9fa;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 16px 32px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-gold);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-dark);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--background-white);
    border-color: var(--text-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--text-muted);
    animation: scrollPulse 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Featured Watch Section */
.featured-watch {
    padding: 40px 0;
    background: var(--background-white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 300;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 300;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
}

.watch-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.watch-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px var(--shadow-medium);
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.main-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    transition: transform 0.6s ease;
    display: block;
    border-radius: 15px;
}

.zoom-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.zoom-overlay:hover {
    background: var(--primary-gold);
    color: var(--background-white);
    transform: scale(1.1);
}

.thumbnail-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.watch-info {
    padding-top: 40px;
}

.watch-info h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 300;
}

.discount {
    background: var(--primary-gold);
    color: var(--background-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.specifications {
    margin-bottom: 50px;
}

.specifications h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 400;
}

.specifications ul {
    list-style: none;
}

.specifications li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
}

.specifications li:last-child {
    border-bottom: none;
}

.specifications strong {
    color: var(--text-dark);
    font-weight: 400;
}

.purchase-section {
    background: var(--background-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.quantity-selector {
    margin-bottom: 30px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    background: var(--background-white);
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls button:hover {
    background: var(--primary-gold);
    color: var(--background-white);
    border-color: var(--primary-gold);
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    background: var(--background-white);
}

.buy-button {
    width: 100%;
    background: var(--text-dark);
    color: var(--background-white);
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-button:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.payment-methods {
    text-align: center;
}

.payment-methods p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-icons i {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-gold);
}

/* Heritage Section */
.heritage {
    padding: 120px 0;
    background: var(--background-light);
}

.heritage-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.heritage-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.heritage-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    line-height: 1.8;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
}

.feature i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--background-white);
}

.contact h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 80px;
    font-weight: 300;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 400;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    width: 30px;
}

.contact-form {
    background: var(--background-light);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 25px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 300;
    background: var(--background-white);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.contact-form button {
    width: 100%;
    background: var(--text-dark);
    color: var(--background-white);
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-form button:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--background-white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    color: var(--primary-gold);
    font-weight: 400;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

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

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333333;
    color: var(--background-white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333333;
    color: #999999;
    font-weight: 300;
}

/* Payment Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--background-white);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px var(--shadow-strong);
    overflow-y: auto;
    overflow-x: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 30px;
    top: 30px;
    color: var(--text-muted);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-gold);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    padding: 50px 50px 0;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 2rem;
}

.payment-form {
    padding: 0 50px 50px;
}

.order-summary {
    background: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid var(--border-light);
}

.order-summary h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    font-weight: 300;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 400;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    background: var(--background-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pay-button {
    width: 100%;
    background: var(--text-dark);
    color: var(--background-white);
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pay-button:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Stripe Wordmark */
.stripe-wordmark {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #635BFF;
    letter-spacing: -0.02em;
    display: inline-block;
    margin-left: 4px;
    text-transform: lowercase;
}

.stripe-secured {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 300;
}

/* Shipping Info */
.shipping-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    font-weight: 300;
}

.free-shipping {
    color: var(--text-dark);
    font-weight: 300;
}

.shipping-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
    font-style: normal;
    font-weight: 300;
}

/* Form Group Small Text */
.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Receipt Modal */
.receipt-content {
    max-width: 600px;
}

.receipt-header {
    text-align: center;
    padding: 40px 50px 20px;
    border-bottom: 1px solid var(--border-light);
}

.receipt-header h2 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.receipt-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}

.receipt-body {
    padding: 40px 50px;
}

.receipt-order-info {
    margin-bottom: 30px;
}

.receipt-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    font-weight: 300;
}

.receipt-item:last-child {
    border-bottom: none;
}

.receipt-item.receipt-total {
    font-size: 1.3rem;
    font-weight: 500;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px solid var(--primary-gold);
    border-bottom: none;
}

.receipt-email-info {
    background: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.receipt-email-info p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 300;
}

.receipt-email-info i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.receipt-footer {
    padding: 20px 50px 40px;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.close-receipt-button {
    background: var(--text-dark);
    color: var(--background-white);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-receipt-button:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Craftsmanship Responsive */
@media (max-width: 768px) {
    .craftsmanship {
        padding: 100px 0;
    }
    
    .craftsmanship h2 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .craftsmanship .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }
    
    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .craft-image {
        height: 280px;
    }
    
    .craft-overlay {
        padding: 40px 25px 25px;
    }
    
    .craft-overlay h3 {
        font-size: 1.4rem;
    }
    
    .craft-overlay p {
        font-size: 0.95rem;
    }
    
    .video-container video {
        height: 300px;
    }
    
    .video-overlay {
        padding: 20px;
    }
    
    .video-overlay h3 {
        font-size: 2rem;
    }
    
    .video-overlay p {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .watch-details {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .watch-gallery {
        position: static;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .watch-info h3 {
        font-size: 2rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .hero-actions {
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* Craftsmanship Section */
.craftsmanship {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.craftsmanship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.08) 2px,
            rgba(212, 175, 55, 0.08) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.08) 2px,
            rgba(212, 175, 55, 0.08) 4px
        ),
        radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.2) 1px, transparent 0);
    background-size: 100% 100%, 100% 100%, 30px 30px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.craftsmanship::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 0;
}

.craftsmanship .container {
    position: relative;
    z-index: 1;
}

.craftsmanship h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-weight: 300;
    letter-spacing: 2px;
}

.craftsmanship .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 80px;
    font-weight: 300;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.craft-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.craft-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.craft-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.craft-item:hover .craft-image img {
    transform: scale(1.1);
}

.craft-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 30px 30px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.craft-item:hover .craft-overlay {
    transform: translateY(0);
}

.craft-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
    font-weight: 600;
}

.craft-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 300;
}

.craftsmanship-video {
    margin-top: 80px;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.video-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
    font-weight: 300;
    letter-spacing: 1px;
}

.video-overlay p {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
}

/* Legacy Section */
.legacy {
    padding: 100px 0;
    background: var(--background-white);
}

.legacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-dark);
}

.legacy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 3rem 0 1.5rem 0;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.5rem;
}

.legacy-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem 0;
}

.legacy-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
}

.legacy-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.legacy-content strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.legacy-content em {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.founder-info {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-gold);
}

.founder-info p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.founder-info strong {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .legacy {
        padding: 80px 0;
    }
    
    .legacy-content {
        padding: 0 20px;
    }
    
    .legacy-content h2 {
        font-size: 2rem;
    }
    
    .legacy-content h3 {
        font-size: 1.5rem;
    }
    
    .legacy-content h4 {
        font-size: 1.2rem;
    }
    
    .legacy-content p {
        font-size: 1rem;
    }
}

/* Stripe Branding */
.stripe-branding {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.stripe-branding p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stripe-branding strong {
    color: var(--primary-gold);
}

.stripe-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.stripe-logos i {
    font-size: 1.5rem;
    color: var(--text-light);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.stripe-logos i:hover {
    opacity: 1;
}

/* Stripe Elements Styling */
#card-element {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background-color: var(--background-white);
    transition: border-color 0.3s ease;
}

#card-element:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

#card-errors {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 8px;
    min-height: 20px;
}