:root {
    --primary-red: #DC143C;
    --primary-blue: #1E40AF;
    --gold: #FFD700;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --dark: #0F172A;
    --dark-blue: #1E293B;
    --gray: #64748B;
    --light-gray: #E2E8F0;
    
    --gradient-fire: linear-gradient(135deg, #DC143C 0%, #FF6B35 50%, #FFD700 100%);
    --gradient-night: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    --gradient-patriot: linear-gradient(90deg, #DC143C 0%, #FFFFFF 50%, #1E40AF 100%);
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.3);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--dark);
    background: var(--off-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Countdown Banner */
.countdown-banner {
    margin-top: 80px;
    background: var(--gradient-patriot);
    padding: 24px 0;
    border-bottom: 3px solid var(--gold);
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.countdown-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.countdown-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    min-width: 100px;
}

.time-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.time-label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    margin-top: 8px;
}

.time-separator {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--white);
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1498931299472-f7a63a5a1cfa?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15,23,42,0.7), rgba(15,23,42,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 24px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-line {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    color: var(--white);
    line-height: 0.9;
    letter-spacing: 8px;
    text-shadow: 4px 4px 12px rgba(0,0,0,0.5);
}

.hero-highlight {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(220,20,60,0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(220,20,60,0.8));
    }
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    color: var(--off-white);
    margin: 24px 0 40px;
    letter-spacing: 2px;
}

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

.btn {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-fire);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(220,20,60,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220,20,60,0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--off-white);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gray);
}

.title-highlight {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: 4px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Category Showcase */
.category-showcase {
    padding: 100px 0;
    background: var(--dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
}

.category-large {
    grid-row: span 2;
}

.category-wide {
    grid-column: span 2;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(15,23,42,0.95), transparent);
    color: var(--white);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-item:hover .category-overlay {
    padding-bottom: 40px;
}

.category-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.category-overlay p {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--gold);
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background: var(--off-white);
}

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

.product-card {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.hot {
    background: var(--gradient-fire);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-category {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.product-shots {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.product-price {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

.btn-small {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: var(--primary-red);
}

.section-cta {
    text-align: center;
}

.btn-large {
    padding: 20px 60px;
    font-size: 18px;
}

/* Special Offers */
.special-offers {
    padding: 100px 0;
    background: var(--gradient-night);
}

.offer-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 60px;
    border: 2px solid rgba(255,255,255,0.1);
}

.offer-tag {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.offer-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.offer-content p {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background: var(--gold);
    color: var(--dark);
}

.offer-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 40px 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--light-gray);
    line-height: 1.8;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--gold);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.contact-info li {
    color: var(--light-gray);
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-bottom {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .category-large,
    .category-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .offer-banner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--dark);
        width: 100%;
        padding: 40px 24px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hamburger {
        display: flex;
    }
    
    .countdown-title {
        font-size: 20px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 12px 16px;
    }
    
    .time-value {
        font-size: 36px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 8px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .time-value {
        font-size: 28px;
    }
    
    .time-label {
        font-size: 10px;
    }
    
    .time-separator {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
}

/* Feature Card Link Styles */
.feature-card-link {
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.feature-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-link:hover::before {
    opacity: 1;
}

.feature-card-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
    border-color: var(--primary-red);
}

.feature-card-link .feature-icon {
    transition: transform 0.3s ease;
}

.feature-card-link:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-link {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    margin-top: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.feature-card-link:hover .feature-link {
    color: var(--dark);
    transform: translateX(5px);
}
