* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FF8C42;
    --dark-charcoal: #4A4A4A;
    --deep-black: #333333;
    --silver-metallic: #F5DEB3;
    --white: #ffffff;
    --grey-light: #FFF5E6;
    --grey-medium: #A67C52;
    --gradient-primary: linear-gradient(135deg, #FF8C42 0%, #FFB366 100%);
    --gradient-dark: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    --shadow-gold: 0 0 30px rgba(255, 140, 66, 0.3);
    --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-charcoal);
    background: var(--white);
    overflow-x: hidden;
}

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

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

.nav-logo h1 {
    font-family: 'Xolonium', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--dark-charcoal);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

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

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

.search-btn, .cart-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.search-btn:hover, .cart-btn:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.cart-count {
    background: var(--primary-gold);
    color: var(--deep-black);
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--grey-light);
    position: relative;
    padding: 6rem 2rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--dark-charcoal);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--grey-medium);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--deep-black);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.watch-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.watch-item {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
}

.watch-face {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--silver-metallic) 0%, #d4d4d4 70%);
    border-radius: 50%;
    position: relative;
    box-shadow:
        0 0 50px rgba(212, 175, 55, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.1);
    border: 8px solid var(--primary-gold);
}

.watch-face::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 80px;
    background: var(--primary-gold);
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: 50% 90%;
    border-radius: 2px;
}

.watch-face::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 60px;
    background: var(--white);
    transform: translate(-50%, -50%) rotate(120deg);
    transform-origin: 50% 90%;
    border-radius: 2px;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-20px) rotate(5deg); }
}

.collections {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.collection-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-gold);
}

.card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.luxury-watch {
    background: radial-gradient(circle, #FFD700 0%, #B8860B 70%);
    border: 6px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.sport-watch {
    background: radial-gradient(circle, #60a5fa 0%, #1d4ed8 70%);
    border: 6px solid #3b82f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    position: relative;
}

.sport-watch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%);
    border: 3px solid rgba(255,255,255,0.3);
}

.classic-watch {
    width: 110px;
    height: 140px;
    border-radius: 18px;
    background: linear-gradient(145deg, #0f0f23 0%, #1a1a3e 50%, #0d1b4b 100%);
    border: 4px solid #4fc3f7;
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.classic-watch::before {
    content: '88:88';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4fc3f7;
    font-size: 1.1rem;
    font-family: monospace;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.9);
    letter-spacing: 2px;
}

.classic-watch::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: rgba(79, 195, 247, 0.4);
    border-radius: 2px;
}

.collection-card.active {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.3), 0 25px 50px rgba(0, 0, 0, 0.2);
}

.collection-card:hover .watch-preview {
    transform: scale(1.1) rotate(10deg);
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.card-content p {
    color: var(--grey-medium);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 1.5rem;
}

.view-btn {
    background: transparent;
    border: 2px solid var(--dark-charcoal);
    color: var(--dark-charcoal);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-btn:hover {
    background: var(--dark-charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.featured-products {
    padding: 6rem 2rem;
    background: var(--grey-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    position: relative;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.watch-display {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.luxury-display {
    background: radial-gradient(circle, #FFD700 0%, #DAA520 70%);
    border: 4px solid var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.luxury-display-2 {
    background: radial-gradient(circle, #E6E6FA 0%, #DDA0DD 70%);
    border: 4px solid #DA70D6;
    box-shadow: 0 0 20px rgba(218, 112, 214, 0.4);
}

.sport-display {
    background: radial-gradient(circle, #00CED1 0%, #008B8B 70%);
    border: 4px solid #20B2AA;
    box-shadow: 0 0 20px rgba(32, 178, 170, 0.4);
}

.classic-display {
    background: radial-gradient(circle, #a8b8c8 0%, #8899aa 70%);
    border: 4px solid #778899;
    box-shadow: 0 0 20px rgba(119, 136, 153, 0.4);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .watch-display {
    transform: scale(1.05);
}

.quick-view, .add-to-cart {
    background: var(--primary-gold);
    color: var(--deep-black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.quick-view:hover, .add-to-cart:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.product-category {
    color: var(--grey-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.about-section {
    padding: 6rem 2rem;
    background: var(--white);
    color: var(--dark-charcoal);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--grey-medium);
}

.stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.craftsman-illustration {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-gold);
    animation: pulse 4s ease-in-out infinite;
}

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

.contact-section {
    padding: 7rem 2rem;
    background: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.contact-title-area {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--grey-medium);
    margin-top: 1rem;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.info-card-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-gold);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon svg {
    stroke: var(--deep-black);
    stroke-width: 2.5;
}

.info-card-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 0.75rem;
}

.info-card-item p {
    font-size: 1.0625rem;
    color: var(--grey-medium);
    line-height: 1.7;
}

.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border-radius: 16px;
    padding: 0.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-input-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.form-input-card:focus-within {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-color: var(--primary-gold);
    box-shadow:
        0 6px 20px rgba(212, 175, 55, 0.3),
        0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-input-card input,
.form-input-card select,
.form-input-card textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    background: transparent;
    color: #333333;
    outline: none;
}

.form-input-card input::placeholder,
.form-input-card select::placeholder,
.form-input-card textarea::placeholder {
    color: #a0a0a0;
    font-weight: 500;
}

.form-input-card select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L9 9L17 1' stroke='%23666666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 4rem;
}

.textarea-card textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

.form-submit-btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.0625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--gradient-primary);
    color: var(--deep-black);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.footer {
    background: var(--white);
    color: var(--dark-charcoal);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
}

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

.footer-section h3 {
    font-family: 'Xolonium', sans-serif;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

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

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

.footer-section a {
    color: var(--grey-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom {
    border-top: 1px solid var(--grey-medium);
    padding-top: 1rem;
    text-align: center;
    color: var(--grey-medium);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .watch-showcase {
        width: 250px;
        height: 250px;
    }

    .watch-item {
        width: 200px;
        height: 200px;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-layout {
        gap: 2.5rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .contact-form-card {
        padding: 2.5rem;
    }

    .form-input-card input,
    .form-input-card select,
    .form-input-card textarea {
        font-size: 1rem;
        padding: 1.125rem 1.25rem;
    }

    .form-submit-btn {
        padding: 1.25rem;
        font-size: 1rem;
    }
}