
:root {
    --primary: #000000;           /* Black */
    --primary-light: #333333;     /* Dark Gray */
    --secondary: #FFD700;         /* Gold */
    --secondary-light: #FFED8A;   /* Light Gold */
    --dark: #111111;              /* Very Dark Gray */
    --light: #F8F8F8;             /* Light Background */
    --gray: #E8E8E8;              /* Light Gray */
    --text: #222222;              /* Dark Text */
    --accent: #B8860B;            /* Dark Gold */
    --success: #27ae60;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container a{
    width: fit-content;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold-gradient);
    color: var(--primary);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.btn-cta {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-cta:hover {
    background: var(--secondary);
    color: var(--primary);
}

.mobile-nav {
    pointer-events: none;   /* 🔥 disable clicks when hidden */
}

.mobile-nav.active {
    pointer-events: auto;   /* ✅ enable clicks when open */
}

/* Header & Navigation */
header {
    background-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
}


.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    gap: 25px;
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toogle{
        display: block;
    }
    .logo img{
        width: 100%;
    }
}

.desktop-nav a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.desktop-nav a:hover {
    color: var(--secondary-light);
}

.desktop-nav a.active {
    color: var(--secondary-light);
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.desktop-nav .new-styles {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 5px 5px;
    border-radius: 10px;
    font-weight: 600;
    width:fit-content
}

.desktop-nav .new-styles:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 183, 5, 0.986);
}

.mobile-menu-toggle {
    position: relative;
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    z-index: 1100;
    
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    box-shadow: var(--shadow);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a.active {
    color: var(--secondary-light);
}

.mobile-nav .new-styles {
    color: var(--secondary);
    font-weight: 600;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    margin-top: 10px;
}

/* Hero Section with Video Background */
.hero {
    margin-top: 70px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    .mobile-menu-toggle{
        display: block;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

    .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
} 

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    width: 100%;
    padding: 0 40px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    .mobile-menu-toggle{
        display: block;
    }
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

/* Product Catalog */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--gray);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img, .product-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img,
.product-card:hover .product-image video {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price::before {
    content: '$';
    font-size: 1.2rem;
    color: var(--accent);
}

.product-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-meta i {
    color: var(--accent);
    margin-right: 8px;
}

.product-colors {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.color-option:hover {
    transform: scale(1.1);
    border-color: var(--secondary);
}

.color-red { background-color: #e74c3c; }
.color-black { background-color: #000000; border-color: #ccc; }
.color-white { background-color: #ffffff; border-color: #ccc; }
.color-mint { background-color: #a3e4d7; }
.color-gold { background-color: #FFD700; }
.color-green { background-color: #228B22; }
.color-yellow { background-color: #FFFF00; }
.color-sliver { background-color: #C0C0C0; }

.product-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.size-option {
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover, .size-option.selected {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: transparent;
    font-weight: 600;
}

/* Product Gallery Modal with Videos */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    background-color: white;
    border-radius: var(--border-radius);
    width: 95%;
    max-width: 1000px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid var(--secondary);
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .product-modal {
        flex-direction: column;
        padding: 20px;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.main-media {
    width: 300px;
    max-height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 2px solid var(--gray);
    position: relative;
}

.main-media img, .main-media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.media-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.media-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.media-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: var(--secondary);
}

.thumbnail img, .thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-type {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 3px;
}

.modal-info {
    flex: 1;
}

.modal-info h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray);
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-price::before {
    content: '$';
    font-size: 1.5rem;
    color: var(--accent);
}

.modal-details {
    margin-bottom: 20px;
}

.modal-details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.modal-details i {
    margin-right: 10px;
    color: var(--accent);
    min-width: 20px;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-description {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.newsletter-form button {
    background: var(--gold-gradient);
    color: var(--primary);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .main-media {
        max-height: 300px;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 15px;
    }
    
    .hero {
        height: 350px;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-modal {
        width: 98%;
        padding: 15px;
    }
    .mobile-menu-toggle{
        display: block;
    }
}