:root {
    --primary: #000000;
    --secondary: #d4af37;
    --accent: #b8860b;
    --light: #f8f8f8;
    --text: #e0e0e0;
    --overlay: rgba(0, 0, 0, 0.7);
    --transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px); 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 2rem;
    animation: pulse 3s infinite;
}

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

.logo-outer-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.main-nav.scrolled {
    padding: 1rem 3rem;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.nav-logo i {
    margin-right: 10px;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 101;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--secondary);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: var(--transition);
}

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

.nav-menu ul {
    list-style: none;
    text-align: center;
}

.nav-menu ul li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.nav-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu ul li:nth-child(1) { transition-delay: 0.2s; }
.nav-menu ul li:nth-child(2) { transition-delay: 0.3s; }
.nav-menu ul li:nth-child(3) { transition-delay: 0.4s; }
.nav-menu ul li:nth-child(4) { transition-delay: 0.5s; }
.nav-menu ul li:nth-child(5) { transition-delay: 0.6s; }
.nav-menu ul li:nth-child(6) { transition-delay: 0.7s; }

.nav-menu ul li a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu ul li a:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

.nav-menu ul li a:hover {
    color: var(--secondary);
}

.products-section {
    padding: 5rem 3rem;
    background: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--secondary);
    letter-spacing: 3px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    display: none;
}

.product-card:nth-child(-n+3) {
    display: block;
}

.product-card.visible {
    display: block;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.product-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.product-price .old-price {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-description {
    color: #aaa;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart, .view-details {
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
}

.add-to-cart {
    background: var(--secondary);
    color: var(--primary);
}

.add-to-cart:hover {
    background: var(--accent);
}

.view-details {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.view-details:hover {
    background: rgba(212, 175, 55, 0.1);
}

.load-more {
    display: block;
    margin: 2rem auto;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.load-more:hover {
    background: var(--secondary);
    color: var(--primary);
}

.video-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.highlight-background img {
    filter: blur(5px); }

.footer {
    position: relative;
    padding: 4rem 3rem;
    border-top: 1px solid var(--secondary);
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
    filter: blur(4px); 
}

.footer-content {
    position: relative;
    z-index: 1;
}

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

.footer-column h3 {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: var(--secondary);
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-column ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.footer-social a {
    color: var(--text);
    font-size: 1.2rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text);
    opacity: 0.7;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: var(--secondary);
    font-size: 1rem;
    letter-spacing: 2px;
}

.cart-icon {
    position: relative;
    margin-left: 20px;
    font-size: 1.3rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--secondary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: var(--primary);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1rem;
    }
    
    .logo-container {
        width: 120px;
        height: 120px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .products-section {
        padding: 3rem 1.5rem;
    }
    
    .product-image {
        height: 300px;
    }

    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}