/* ============ BASE STYLES ============ */
:root {
    /* Modern Luxury Color Palette */
    --white: #ffffff;
    --light-purple: #f8f7ff;
    --purple-grey: #e6e4f0;
    --cool-grey: #f0f2f5;
    --medium-grey: #d9dbe1;
    --dark-grey: #3a3a44;
    --purple: #8a7fcc;
    
    /* Accent Colors */
    --light-gold: #e8d8b5;
    --gold: #c8a97e;
    --dark-gold: #a78a5a;
    --gold-hover: #d4b57d;
    
    /* Text Colors */
    --text-dark: #2a2a35;
    --text-medium: #5d5d6b;
    --text-light: #8e8e9b;
    
    /* UI Elements */
    --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 3px 12px rgba(58, 58, 68, 0.05);
    --shadow-md: 0 6px 20px rgba(58, 58, 68, 0.1);
    --shadow-lg: 0 12px 30px rgba(58, 58, 68, 0.15);
    --border-radius: 10px;
    --border-radius-lg: 16px;
}

/* ============ GLOBAL STYLES ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--light-purple);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    font-weight: 400;
    font-size: 15px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============ HEADER & NAVIGATION ============ */
header {
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--purple-grey);
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 1.2rem;
}

.nav-icons i {
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.nav-icons i:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============ HERO SECTION ============ */
.watch-art-white {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--cool-grey) 100%);
    position: relative;
}

.art-display-white {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.art-frame-white {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--purple-grey);
    background: var(--white);
    border-radius: var(--border-radius-lg);
}

.art-image-white {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    transform-origin: center;
}

.art-frame-white:hover .art-image-white {
    transform: scale(1.03);
}

.art-caption-white {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to top, rgba(42, 42, 53, 0.8), transparent);
    color: var(--white);
}

.art-title-white {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.art-subtitle-white {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.6px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.art-frame-white::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 1;
    border-radius: calc(var(--border-radius-lg) - 8px);
}

/* ============ SEARCH & FILTERS ============ */
.search-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
}

.search-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--medium-grey);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background-color: var(--white);
    color: var(--text-dark);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.2);
}

.search-button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 0.4px;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.search-button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.luxury-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
    justify-content: center;
    align-items: center;
}

.luxury-filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--medium-grey);
    border-radius: 50px;
    background: var(--white);
    color: var(--text-medium);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    box-shadow: var(--shadow-sm);
}

.luxury-filter-btn i {
    margin-right: 6px;
    font-size: 0.85rem;
}

.luxury-filter-btn:hover {
    background: var(--light-purple);
    border-color: var(--purple-grey);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.luxury-filter-btn.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.luxury-clear-btn {
    background: var(--white);
    border: 1px solid var(--medium-grey);
    color: var(--text-medium);
}

.luxury-clear-btn:hover {
    background: var(--light-purple);
    color: var(--text-dark);
    border-color: var(--purple-grey);
}

/* ============ PRODUCT GRID ============ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 3rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--purple-grey);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-media-container {
    height: 280px;
    position: relative;
    overflow: hidden;
    background-color: var(--cool-grey);
}

.product-carousel {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.media-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cool-grey);
}

.media-item img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    padding: 15px;
    box-sizing: border-box;
}

.media-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.carousel-nav {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
    padding: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 0 auto;
    width: fit-content;
    max-width: 90%;
    overflow-x: auto;
    scrollbar-width: none;
}

.carousel-nav::-webkit-scrollbar {
    display: none;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-dot i {
    font-size: 7px;
    color: white;
    display: none;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
    border-color: transparent;
}

.carousel-dot[data-media-type="video"] i {
    display: block;
}

.carousel-dot[data-media-type="video"] {
    background: rgba(138, 127, 204, 0.5);
    width: 14px;
    height: 14px;
}

.carousel-dot[data-media-type="video"].active {
    background: var(--purple);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(200, 169, 126, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.9;
    transition: var(--transition);
}

.video-play-icon:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--medium-grey);
}

.product-media-container:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow.prev {
    left: 12px;
}

.carousel-arrow.next {
    right: 12px;
}

.carousel-arrow:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-info {
    padding: 1.5rem;
}

.product-brand {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
}

.product-desc {
    color: var(--text-medium);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    height: 40px;
    overflow: hidden;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.4px;
}

.product-actions {
    display: flex;
    gap: 0.6rem;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cool-grey);
    color: var(--text-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============ PAGINATION ============ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin: 3rem 0;
    padding: 0 5%;
}

.page-btn {
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--medium-grey);
    background: var(--white);
    color: var(--text-medium);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    min-width: 40px;
    text-align: center;
    font-size: 0.9rem;
}

.page-btn.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.page-btn:hover:not(.active) {
    background: var(--light-purple);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============ FOOTER ============ */
footer {
    text-align: center;
    padding: 3rem;
    color: var(--text-medium);
    border-top: 1px solid var(--purple-grey);
    font-weight: 400;
    font-size: 0.9rem;
    background: var(--white);
}

/* ============ BRAND GRID ============ */
.brands-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
    display: none;
}

.show-brands .watch-art-white {
    display: none;
}

.show-brands .brands-section {
    display: block;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.brand-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--purple-grey);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.brand-logo {
    width: 75%;
    height: 75%;
    object-fit: contain;
    padding: 12px;
    box-sizing: border-box;
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.8;
    margin: auto;
    display: block;
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brand-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 53, 0.9);
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: var(--transition);
    font-weight: 500;
}

.brand-card:hover .brand-name {
    transform: translateY(0);
}

.back-to-hero {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.4px;
}

.back-to-hero:hover {
    color: var(--dark-gold);
    text-decoration: underline;
    transform: translateY(-2px);
}

#more-brands {
    display: none;
}

#more-brands.show-more {
    display: contents;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#toggle-brands {
    background: var(--gold);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: var(--shadow-sm);
    margin: 2rem auto;
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
}

#toggle-brands:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============ UTILITY CLASSES ============ */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 3rem;
    color: var(--medium-grey);
    margin-bottom: 1.2rem;
}

.empty-state h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-medium);
    font-weight: 500;
}

.loading {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--purple-grey);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============ MOBILE MENU ============ */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 101;
}

.menu-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1200px) {
    .art-title-white {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 992px) {
    header {
        padding: 0.8rem 5%;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .watch-art-white {
        padding: 2.5rem 1.5rem;
    }
    
    .art-frame-white {
        height: 450px;
    }
    
    .art-title-white {
        font-size: 1.8rem;
    }
    
    .art-subtitle-white {
        font-size: 0.95rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-button {
        padding: 0.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        padding-top: 70px;
    }
    
    .nav-container.active {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    
    .art-frame-white {
        height: 400px;
    }
    
    .art-caption-white {
        padding: 1.5rem;
    }
    
    .art-title-white {
        font-size: 1.6rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1.2rem;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .art-frame-white {
        height: 350px;
    }
    
    .art-title-white {
        font-size: 1.4rem;
    }
    
    .art-subtitle-white {
        font-size: 0.9rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
.more-info-btn {
    /* Base styling - inspired by watch dial textures */
    background: linear-gradient(135deg, #1e1e2e 0%, #14141f 100%);
    color: #f0f0f0;
    padding: 10px 22px 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(20, 20, 31, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    
    /* Eye-inspired details */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Iris/pupil effect */
.more-info-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: radial-gradient(
        circle at center,
        rgba(138, 127, 204, 0.8) 0%,
        rgba(138, 127, 204, 0.4) 50%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s, opacity 0.4s;
}

.more-info-btn:hover {
    background: linear-gradient(135deg, #14141f 0%, #1e1e2e 100%);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(20, 20, 31, 0.5);
}

/* Eye follows cursor (optional JavaScript needed) */
.more-info-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Eye icon styling */
.more-info-btn i.fa-eye {
    font-size: 14px;
    color: #8a7fcc;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(138, 127, 204, 0.6);
}

.more-info-btn:hover i.fa-eye {
    color: #b8a9ff;
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(184, 169, 255, 0.8);
}

/* Glint effect (like light reflection in eye) */
.more-info-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.9) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.more-info-btn:hover::before {
    opacity: 0.6;
}

 .more-info-btn {
    background: linear-gradient(135deg, #e6e6e6 0%, #c2c2c2 100%);
    color: #333;
    border: 1px solid #999;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}
/* Font Awesome Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');