/* ==========================================
   KNOCKOUT - Boxing Equipment Store
   Powerful, Intense Design with Bold Contrast
   ========================================== */

/* CSS Variables */
:root {
    --primary-red: #E53935;
    --primary-black: #1A1A1A;
    --primary-gold: #FFD600;
    --dark-gray: #2D2D2D;
    --medium-gray: #444444;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #777777;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(229, 57, 53, 0.4);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

/* Utility Classes */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--primary-black);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #C62828;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

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

.btn-dark:hover {
    background: var(--dark-gray);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-glove {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: punch 0.6s ease-in-out infinite alternate;
    margin: 0 auto 20px;
}

@keyframes punch {
    0% { transform: translateX(-30px) rotate(-15deg); }
    100% { transform: translateX(30px) rotate(15deg); }
}

.preloader-text {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 5px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

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

.logo-text span {
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu li a {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

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

.nav-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-icon {
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.nav-icon:hover {
    color: var(--primary-red);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-dot.active {
    background: var(--primary-red);
    transform: scale(1.3);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 3;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Categories Section */
.categories {
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
    transition: var(--transition);
}

.category-card:hover::before {
    background: linear-gradient(180deg, transparent 0%, rgba(229, 57, 53, 0.9) 100%);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.category-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.category-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.category-count {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* Featured Products */
.featured-products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.product-badge span {
    display: inline-block;
    padding: 5px 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-new {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.badge-sale {
    background: var(--primary-red);
    color: var(--white);
}

.badge-hot {
    background: #FF6B00;
    color: var(--white);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-action-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--primary-black);
}

.product-action-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.product-title a:hover {
    color: var(--primary-red);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.product-rating i {
    color: var(--primary-gold);
    font-size: 0.85rem;
}

.product-rating span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
}

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Promo Banner */
.promo-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, transparent 100%);
    z-index: 1;
}

.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 600px;
}

.promo-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.promo-title {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.promo-title span {
    color: var(--primary-gold);
}

.promo-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Countdown Timer */
.countdown-section {
    background: var(--primary-black);
    padding: 80px 0;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.countdown-content {
    max-width: 500px;
}

.countdown-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.countdown-content h2 span {
    color: var(--primary-red);
}

.countdown-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    background: var(--dark-gray);
    padding: 20px 25px;
    border-radius: 5px;
    min-width: 90px;
}

.countdown-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-product {
    display: flex;
    align-items: center;
    gap: 30px;
}

.countdown-product-image {
    width: 200px;
    height: 200px;
    background: var(--dark-gray);
    border-radius: 5px;
    overflow: hidden;
}

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

.countdown-product-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.countdown-product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.countdown-product-price .current {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--primary-red);
}

.countdown-product-price .original {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

/* Testimonials */
.testimonials {
    background: var(--light-gray);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 40px;
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 8rem;
    color: var(--primary-red);
    opacity: 0.2;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-red);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Features */
.features {
    background: var(--primary-black);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

.feature-item:hover .feature-icon {
    background: var(--primary-red);
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Newsletter */
.newsletter {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?w=1920') center/cover;
    z-index: -2;
}

.newsletter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    z-index: -1;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    max-width: 400px;
    padding: 18px 25px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    background: var(--white);
}

.newsletter-form input:focus {
    outline: 2px solid var(--primary-gold);
}

.newsletter-form button {
    padding: 18px 40px;
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--white);
}

/* Instagram Section */
.instagram {
    padding: 80px 0;
}

.instagram h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.instagram-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(229, 57, 53, 0.8);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.instagram-item:hover::before {
    opacity: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.instagram-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.instagram-item:hover i {
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.footer-column h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
    color: var(--primary-red);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods img {
    height: 25px;
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods img:hover {
    opacity: 1;
}

/* Quick View Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 10px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow: hidden;
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-black);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-red);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.modal-image {
    height: 500px;
    overflow: hidden;
}

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

.modal-details {
    padding: 40px;
    overflow-y: auto;
}

.modal-category {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-rating i {
    color: var(--primary-gold);
}

.modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.modal-price .current {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.modal-price .original {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.modal-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.modal-options {
    margin-bottom: 25px;
}

.modal-options label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-option {
    width: 45px;
    height: 45px;
    border: 2px solid var(--medium-gray);
    background: transparent;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover,
.size-option.active {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: var(--white);
}

.modal-quantity {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--light-gray);
}

.quantity-btn {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.quantity-input {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--white);
    z-index: 10001;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: var(--primary-black);
    color: var(--white);
}

.cart-header h3 {
    font-size: 1.3rem;
}

.cart-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-variant {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cart-item-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-red);
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-item-remove:hover {
    color: var(--primary-red);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-footer {
    padding: 25px;
    background: var(--light-gray);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cart-subtotal .amount {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--primary-red);
}

.cart-footer .btn {
    width: 100%;
    margin-bottom: 10px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.98);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.search-form {
    width: 90%;
    max-width: 700px;
}

.search-form input {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 3px solid var(--primary-red);
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-form input:focus {
    outline: none;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(229, 57, 53, 0.8) 100%);
    z-index: 1;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb span {
    color: var(--primary-gold);
}

/* Shop Page */
.shop-section {
    padding: 80px 0;
}

.shop-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.shop-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-widget {
    background: var(--white);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
}

.filter-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
}

.filter-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-red);
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dark);
    padding: 8px 0;
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    color: var(--primary-red);
    padding-left: 10px;
}

.category-list span {
    background: var(--light-gray);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.price-slider {
    padding: 10px 0;
}

.price-range {
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    position: relative;
    margin-bottom: 20px;
}

.price-range-active {
    position: absolute;
    height: 100%;
    background: var(--primary-red);
    border-radius: 3px;
    left: 20%;
    right: 30%;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-inputs input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--light-gray);
    text-align: center;
    font-weight: 600;
}

.filter-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary-black);
    transform: scale(1.1);
}

.brand-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.brand-list input[type="checkbox"] {
    accent-color: var(--primary-red);
    width: 18px;
    height: 18px;
}

.shop-main {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.shop-result {
    color: var(--text-light);
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.sort-select {
    padding: 10px 20px;
    border: 1px solid var(--light-gray);
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

.shop-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shop-products.list-view {
    grid-template-columns: 1fr;
}

.shop-products.list-view .product-card {
    display: grid;
    grid-template-columns: 250px 1fr;
}

.shop-products.list-view .product-image {
    height: 100%;
}

.shop-products.list-view .product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-num {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.page-num:hover,
.page-num.active {
    background: var(--primary-red);
    color: var(--white);
}

/* Product Page */
.product-detail {
    padding: 80px 0;
}

.product-gallery {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-thumb {
    width: 100px;
    height: 100px;
    border: 3px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary-red);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--light-gray);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-section {
    padding-left: 40px;
}

.product-detail-category {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-detail-title {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-detail-rating .stars i {
    color: var(--primary-gold);
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

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

.product-detail-price .original {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-detail-price .discount {
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-variants {
    margin-bottom: 30px;
}

.variant-group {
    margin-bottom: 20px;
}

.variant-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-actions-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.product-meta {
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.product-meta p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.product-meta strong {
    color: var(--primary-black);
}

.product-tabs {
    margin-top: 80px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    color: var(--text-light);
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary-red);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr {
    border-bottom: 1px solid var(--light-gray);
}

.specifications-table th,
.specifications-table td {
    padding: 15px 20px;
    text-align: left;
}

.specifications-table th {
    background: var(--light-gray);
    font-weight: 600;
    width: 30%;
}

.review-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--light-gray);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-info .stars i {
    color: var(--primary-gold);
    font-size: 0.85rem;
}

.review-date {
    margin-left: auto;
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Page */
.about-story {
    padding: 100px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    border-radius: 5px;
}

.about-story-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-story-badge span {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

.about-story-badge p {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.about-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-story-content h2 span {
    color: var(--primary-red);
}

.about-story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 600;
}

.team-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-red);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-red);
    color: var(--white);
}

.stats-section {
    background: var(--primary-black);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--primary-black);
    padding: 50px;
    border-radius: 5px;
    color: var(--white);
}

.contact-info-box h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h4 {
    margin-bottom: 20px;
}

.contact-social-links {
    display: flex;
    gap: 15px;
}

.contact-social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social-links a:hover {
    background: var(--primary-red);
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-box h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.map-section {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Cart Page */
.cart-section {
    padding: 80px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-table th {
    background: var(--primary-black);
    color: var(--white);
    padding: 20px;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-table td {
    padding: 25px 20px;
    border-bottom: 1px solid var(--light-gray);
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
}

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

.cart-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-total {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
}

.cart-remove {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    color: var(--primary-red);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.coupon-form {
    display: flex;
    gap: 15px;
}

.coupon-form input {
    padding: 15px 25px;
    border: 2px solid var(--light-gray);
    font-size: 1rem;
    width: 300px;
}

.cart-summary {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.cart-note {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 5px;
}

.cart-note h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cart-note textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    border: 2px solid transparent;
    resize: vertical;
}

.cart-note textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.cart-totals {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cart-totals h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.totals-row.total {
    border-bottom: none;
    padding-top: 20px;
    font-size: 1.3rem;
}

.totals-row .amount {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.totals-row.total .amount {
    color: var(--primary-red);
    font-size: 1.8rem;
}

.cart-totals .btn {
    width: 100%;
    margin-top: 25px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .products-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-wrapper {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .promo-content {
        left: 40px;
        max-width: 500px;
    }

    .cart-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .products-grid,
    .categories-grid,
    .features-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .countdown-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .countdown-timer {
        justify-content: center;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        max-width: 100%;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-image {
        height: 300px;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-thumbs {
        flex-direction: row;
        order: 2;
    }

    .product-info-section {
        padding-left: 0;
        padding-top: 30px;
    }

    .cart-table {
        display: block;
        overflow-x: auto;
    }

    .cart-actions {
        flex-direction: column;
        gap: 20px;
    }

    .coupon-form {
        flex-direction: column;
    }

    .coupon-form input {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .shop-products.list-view .product-card {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .page-banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-content {
        left: 20px;
        right: 20px;
    }

    .countdown-item {
        padding: 15px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .about-story-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
    }

    .about-story-badge span {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-right {
    animation: slideInRight 0.8s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.8s ease forwards;
}
