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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-box {
    width: 40px;
    height: 40px;
    border: 1px solid #c6a96c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: serif;
    font-size: 20px;
    font-weight: bold;
    color: #c6a96c;
}

.logo-brand {
    font-family: serif;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: bold;
}

.logo-sub {
    color: #a8905a;
    font-size: 8px;
    letter-spacing: 2px;
    margin-top: -4px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #c6a96c;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c6a96c;
}

/* Buttons */
.btn-gold {
    background: #c6a96c;
    color: #0d0d0d;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold:hover {
    background: #d4b97a;
    box-shadow: 0 8px 16px rgba(198, 169, 108, 0.2);
}

.btn-outline {
    border: 1px solid #c6a96c;
    color: #c6a96c;
    padding: 12px 32px;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: #c6a96c;
    color: #0d0d0d;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    margin-top: 80px;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-label {
    color: #d4b97a;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.hero-content-center h1 {
    font-family: serif;
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(198, 169, 108, 0.6);
    color: white;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    z-index: 5;
    font-size: 24px;
    transition: all 0.3s;
    min-width: 44px;
    min-height: 44px;
}

.slide-nav:hover {
    background: rgba(198, 169, 108, 1);
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

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

.dot.active {
    background: #c6a96c;
}

/* Featured Section */
.featured {
    padding: 80px 24px;
    background: #0d0d0d;
}

.featured h2 {
    font-family: serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    font-size: 16px;
}

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

.watch-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.watch-card:hover {
    border-color: rgba(198, 169, 108, 0.6);
    transform: scale(1.02);
}

.watch-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.watch-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.watch-info {
    padding: 20px;
    background: rgba(20, 20, 20, 0.8);
}

.watch-brand {
    color: #a8905a;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.watch-card h3 {
    font-family: serif;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* About Section */
.about {
    padding: 100px 24px;
    background: rgba(20, 20, 20, 0.5);
    border-top: 1px solid rgba(198, 169, 108, 0.2);
    border-bottom: 1px solid rgba(198, 169, 108, 0.2);
}

.about-text h2 {
    font-family: serif;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: #c6a96c;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.85);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature h4 {
    color: #c6a96c;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 24px;
}

.testimonials h2 {
    font-family: serif;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-align: center;
    color: #c6a96c;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    padding: 40px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(198, 169, 108, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: #c6a96c;
    transform: translateY(-4px);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    font-size: 12px;
    letter-spacing: 1px;
    color: #c6a96c;
}

/* Contact Section */
.contact {
    padding: 100px 24px;
    background: rgba(20, 20, 20, 0.5);
    border-top: 1px solid rgba(198, 169, 108, 0.2);
}

.contact h2 {
    font-family: serif;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-align: center;
    color: #c6a96c;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 169, 108, 0.2);
    color: white;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
    min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c6a96c;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item h4 {
    color: #c6a96c;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.info-item a {
    color: #c6a96c;
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-item a:hover {
    opacity: 0.8;
}

/* Collections Page */
.collections-hero {
    background: #0d0d0d;
    padding: 120px 24px 60px;
    text-align: center;
    margin-top: 80px;
}

.collections-hero h1 {
    font-family: serif;
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.collections-hero p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.collections-grid {
    padding: 60px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.brand-card {
    text-decoration: none;
    color: inherit;
}

.brand-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    transition: all 0.3s;
}

.brand-card:hover .brand-card-image {
    border-color: rgba(198, 169, 108, 0.6);
}

.brand-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.brand-card:hover .brand-card-image img {
    transform: scale(1.05);
}

.brand-card h3 {
    font-family: serif;
    font-size: 24px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.brand-card:hover h3 {
    color: #c6a96c;
}

.brand-card-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Brand Detail Page */
.brand-header {
    background: #0d0d0d;
    padding: 120px 24px 60px;
    margin-top: 80px;
}

.brand-header h1 {
    font-family: serif;
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.brand-header .brand-label {
    color: #a8905a;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.divider {
    width: 60px;
    height: 1px;
    background: #c6a96c;
    margin: 24px 0;
}

.brand-watches {
    padding: 60px 24px;
    background: #0d0d0d;
}

.watch-count {
    color: #a8905a;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.watch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.watch-item {
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.watch-item:hover {
    border-color: rgba(198, 169, 108, 0.6);
    transform: translateY(-4px);
}

.watch-item-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.watch-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.watch-item:hover .watch-item-image img {
    transform: scale(1.05);
}

.watch-item-info {
    padding: 16px;
    background: rgba(20, 20, 20, 0.8);
}

.watch-item-brand {
    color: #a8905a;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.watch-item h3 {
    font-family: serif;
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.watch-item-ref {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* Watch Detail Page */
.watch-detail {
    background: #0d0d0d;
    padding: 120px 24px 60px;
    margin-top: 80px;
}

.watch-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.watch-detail-image {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.watch-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-detail-info h1 {
    font-family: serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.watch-detail-info .brand-label {
    color: #a8905a;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.watch-detail-ref {
    color: #a8905a;
    font-family: serif;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 24px;
}

.watch-detail-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 24px;
    border-top: 1px solid rgba(198, 169, 108, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: #c6a96c;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

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

.footer-section ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-section a {
    color: #c6a96c;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(198, 169, 108, 0.2);
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    /* Hamburger Menu - Show on Mobile */
    .hamburger {
        display: flex;
    }
    
    /* Navigation - Mobile Dropdown */
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 30px 24px;
        gap: 0;
        border-bottom: 1px solid rgba(198, 169, 108, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 49;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: 18px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
        margin-top: 12px;
    }
    
    .nav-links .btn-gold {
        width: 100%;
        text-align: center;
        padding: 18px 24px;
    }
    
    /* Navbar Mobile Adjustments */
    .navbar .container {
        height: 70px;
    }
    
    .logo-box {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .logo-brand {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .logo-sub {
        font-size: 7px;
    }
    
    /* Hero Section - Mobile */
    .hero-slideshow {
        margin-top: 70px;
        height: 450px;
    }
    
    .hero-content-center h1 {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .hero-label {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .hero-buttons .btn-outline,
    .hero-buttons .btn-gold {
        width: 100%;
        padding: 18px 24px;
        font-size: 12px;
    }
    
    .slide-nav {
        padding: 12px 14px;
        font-size: 18px;
    }
    
    .slide-nav.prev {
        left: 10px;
    }
    
    .slide-nav.next {
        right: 10px;
    }
    
    .slide-indicators {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Featured Section - Mobile */
    .featured {
        padding: 60px 16px;
    }
    
    .featured h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    /* Watch Grid - Single Column on Mobile */
    .grid-12 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .watch-card {
        max-width: 100%;
    }
    
    .watch-card:hover {
        transform: none;
    }
    
    .watch-info {
        padding: 16px;
    }
    
    .watch-brand {
        font-size: 11px;
    }
    
    .watch-card h3 {
        font-size: 18px;
    }
    
    .section-cta {
        margin-top: 30px;
    }
    
    .section-cta .btn-outline {
        width: 100%;
        max-width: 300px;
        padding: 18px 24px;
    }
    
    /* About Section - Mobile */
    .about {
        padding: 60px 16px;
    }
    
    .about-text h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .about-text p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .feature {
        text-align: center;
        padding: 20px;
        border: 1px solid rgba(198, 169, 108, 0.2);
    }
    
    .feature h4 {
        font-size: 13px;
    }
    
    .feature p {
        font-size: 14px;
    }
    
    /* Testimonials - Mobile */
    .testimonials {
        padding: 60px 16px;
    }
    
    .testimonials h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 24px;
    }
    
    .testimonial-card:hover {
        transform: none;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author {
        font-size: 13px;
    }
    
    /* Contact Section - Mobile */
    .contact {
        padding: 60px 16px;
    }
    
    .contact h2 {
        font-size: 28px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 18px;
        font-size: 16px;
        min-height: 50px;
    }
    
    .contact-form .btn-gold {
        width: 100%;
        padding: 18px 24px;
        font-size: 14px;
    }
    
    .contact-info {
        gap: 30px;
    }
    
    .info-item h4 {
        font-size: 13px;
    }
    
    .info-item p {
        font-size: 15px;
    }
    
    /* Collections Page - Mobile */
    .collections-hero {
        padding: 100px 16px 40px;
        margin-top: 70px;
    }
    
    .collections-hero h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .collections-hero p {
        font-size: 14px;
    }
    
    .collections-grid {
        padding: 40px 16px;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .brand-card h3 {
        font-size: 20px;
    }
    
    /* Brand Detail Page - Mobile */
    .brand-header {
        padding: 100px 16px 40px;
        margin-top: 70px;
    }
    
    .brand-header h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .brand-watches {
        padding: 40px 16px;
    }
    
    .watch-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .watch-item:hover {
        transform: none;
    }
    
    .watch-item-info {
        padding: 14px;
    }
    
    .watch-item h3 {
        font-size: 16px;
    }
    
    /* Watch Detail Page - Mobile */
    .watch-detail {
        padding: 100px 16px 40px;
        margin-top: 70px;
    }
    
    .watch-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .watch-detail-info h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .watch-detail-ref {
        font-size: 14px;
    }
    
    .watch-detail-description {
        font-size: 15px;
    }
    
    .cta-buttons {
        gap: 16px;
    }
    
    .cta-buttons .btn-gold,
    .cta-buttons .btn-outline {
        width: 100%;
        padding: 18px 24px;
        font-size: 14px;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 40px 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 11px;
    }
}

/* Extra Small Devices (phones < 400px) */
@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content-center h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .featured h2,
    .about-text h2,
    .testimonials h2,
    .contact h2 {
        font-size: 24px;
    }
    
    .watch-detail-info h1 {
        font-size: 24px;
    }
    
    .collections-hero h1,
    .brand-header h1 {
        font-size: 28px;
    }
}

/* Touch-Friendly Elements */
@media (hover: none) and (pointer: coarse) {
    .watch-card:active {
        border-color: rgba(198, 169, 108, 0.6);
    }
    
    .testimonial-card:active {
        border-color: #c6a96c;
    }
    
    .watch-item:active {
        border-color: rgba(198, 169, 108, 0.6);
    }
    
    .brand-card:active .brand-card-image {
        border-color: rgba(198, 169, 108, 0.6);
    }
}
