:root {
    --primary-color: #1a0f0f;
    --secondary-color: #2d1810;
    --accent-color: #d4af37;
    --gold-color: #d4af37;
    --burgundy-color: #800020;
    --dark-color: #0f0f0f;
    --light-color: #f8f9fa;
    --bs-warning: #d4af37;
    --bs-warning-rgb: 212, 175, 55;
}

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

.text-warning {
    color: #d4af37 !important;
}

.bg-warning {
    background-color: #d4af37 !important;
}

.btn-warning {
    background-color: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #0f0f0f !important;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #c29d2f !important;
    border-color: #c29d2f !important;
    color: #0f0f0f !important;
}

.badge.bg-warning {
    background-color: #d4af37 !important;
    color: #0f0f0f !important;
}

.border-warning {
    border-color: #d4af37 !important;
}

.btn-outline-warning {
    color: #d4af37 !important;
    border-color: #d4af37 !important;
}

.btn-outline-warning:hover {
    background-color: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #0f0f0f !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: color 0.3s;
    padding: 8px 15px !important;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0f0f 0%, #2d1810 50%, #1a0f0f 100%);
    color: white;
    position: relative;
}

.hero-section h1 {
    margin-bottom: 20px;
}

.hero-section ul li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.video-circle {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.video-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--accent-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marquee-section {
    background: var(--accent-color);
    padding: 15px 0;
    overflow: hidden;
    color: white;
    font-weight: 500;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    padding: 0 50px;
    font-size: 1.1rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.category-card {
    display: block;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.category-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 50%;
}

.category-icon img {
    max-width: 70px;
    max-height: 70px;
}

.category-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.category-card h5 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

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

.badge-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-stock.out-of-stock {
    background: #dc3545;
    color: white;
}

.product-info {
    padding: 20px;
}

.category-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.product-info h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    min-height: 50px;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    min-height: 60px;
}

.price {
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

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

.product-actions .btn {
    flex: 1;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h4 {
    color: var(--dark-color);
    margin: 15px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.customer-info {
    padding-top: 15px;
    border-top: 2px solid var(--accent-color);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
}

.preston-info {
    background: #f8f9fa;
}

.preston-info h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.preston-info ul {
    list-style: none;
    padding: 0;
}

.preston-info ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.preston-info ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

footer {
    margin-top: 50px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color) !important;
}

.social-links a {
    transition: transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar-nav .nav-item {
        padding: 5px 0;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 15px;
    }
    
    .navbar-nav .dropdown-item {
        padding: 10px 15px;
        border-radius: 5px;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: #f8f9fa;
    }
    
    .navbar-nav .nav-item.ms-3 {
        margin-left: 0 !important;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .video-circle {
        width: 300px;
        height: 300px;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .marquee-content span {
        font-size: 0.9rem;
        padding: 0 30px;
    }
}
