/* ============================================
   ELITEGYM - Premium Fitness Equipment Store
   Luxurious Design with Gold Accents
   ============================================ */

/* CSS Variables */
:root {
    --gold: #B8860B;
    --gold-light: #D4A84B;
    --gold-dark: #8B6914;
    --black: #1A1A1A;
    --black-light: #2D2D2D;
    --white: #F5F5F5;
    --white-pure: #FFFFFF;
    --gray: #888888;
    --gray-light: #E0E0E0;
    --gray-dark: #444444;
    --success: #28A745;
    --danger: #DC3545;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 10px 40px rgba(184, 134, 11, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

input, textarea, select {
    font-family: inherit;
    outline: none;
    border: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: block;
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.section-title h2 {
    font-size: 48px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

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

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

.btn-dark:hover {
    background: transparent;
    color: var(--black);
}

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

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-top {
    background: var(--gold);
    padding: 8px 0;
}

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

.header-top p {
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.header-top-links {
    display: flex;
    gap: 20px;
}

.header-top-links a {
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
}

.header-top-links a:hover {
    opacity: 0.7;
}

.nav-wrapper {
    padding: 20px 0;
}

.nav-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo h1 {
    font-size: 28px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 3px;
}

.logo h1 span {
    color: var(--gold);
}

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

.nav-menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

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

.nav-action-btn {
    background: transparent;
    color: var(--white);
    font-size: 20px;
    position: relative;
}

.nav-action-btn:hover {
    color: var(--gold);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    padding: 5px;
}

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

/* ============================================
   Hero Slider
   ============================================ */
.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;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

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

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(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.5) 100%);
    z-index: 1;
}

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

.hero-slide-content span {
    display: inline-block;
    color: var(--gold);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-slide-content span {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-content h2 {
    font-size: 72px;
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.hero-slide.active .hero-slide-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-content p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.hero-slide.active .hero-slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.9s;
}

.hero-slide.active .hero-slide-content .btn {
    opacity: 1;
    transform: translateY(0);
}

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

.hero-nav-dot {
    width: 15px;
    height: 15px;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-dot.active,
.hero-nav-dot:hover {
    background: var(--gold);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.hero-arrow {
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.hero-arrow:hover {
    background: var(--gold);
    color: var(--black);
}

/* ============================================
   Features Strip
   ============================================ */
.features-strip {
    background: var(--black-light);
    padding: 40px 0;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.feature-item p {
    font-size: 13px;
    color: var(--gray);
}

/* ============================================
   Categories Section
   ============================================ */
.categories {
    padding: 100px 0;
}

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

.category-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

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

.category-card:hover::before {
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.2) 0%, rgba(26, 26, 26, 0.95) 100%);
}

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

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

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
}

.category-content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.category-content p {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 15px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link:hover {
    color: var(--gold);
}

/* ============================================
   Products Section
   ============================================ */
.products {
    padding: 100px 0;
    background: var(--black-light);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.products-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

.products-tabs {
    display: flex;
    gap: 30px;
}

.products-tab {
    background: transparent;
    color: var(--gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.products-tab:hover,
.products-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

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

.product-card {
    background: var(--black);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-badge {
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

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

.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: 50px;
    height: 50px;
    background: var(--white);
    color: var(--black);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-action-btn {
    transform: translateY(0);
}

.product-action-btn:nth-child(2) {
    transition-delay: 0.1s;
}

.product-action-btn:nth-child(3) {
    transition-delay: 0.2s;
}

.product-action-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.product-info {
    padding: 25px;
    text-align: center;
}

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

.product-name {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.product-name:hover {
    color: var(--gold);
}

.product-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: var(--gold);
    font-size: 14px;
}

.product-rating i.empty {
    color: var(--gray);
}

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

.product-price .current {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

.product-price .original {
    font-size: 16px;
    color: var(--gray);
    text-decoration: line-through;
}

/* ============================================
   Countdown Banner
   ============================================ */
.countdown-banner {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920') center/cover no-repeat;
}

.countdown-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.countdown-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.countdown-text span {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.countdown-text h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.countdown-text p {
    color: var(--gray-light);
    font-size: 16px;
    margin-bottom: 30px;
}

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

.countdown-item {
    text-align: center;
    padding: 20px 25px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid var(--gold);
}

.countdown-item .number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.countdown-item .label {
    display: block;
    font-size: 12px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* ============================================
   Featured Product
   ============================================ */
.featured-product {
    padding: 100px 0;
}

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

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
}

.featured-image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.featured-image-badge span:first-child {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.featured-image-badge span:last-child {
    font-size: 12px;
    text-transform: uppercase;
}

.featured-content span {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 25px;
}

.featured-content p {
    color: var(--gray-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.featured-features {
    margin-bottom: 30px;
}

.featured-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-features li i {
    color: var(--gold);
    font-size: 18px;
}

.featured-features li span {
    color: var(--white);
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
}

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

.featured-price .current {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.featured-price .original {
    font-size: 24px;
    color: var(--gray);
    text-decoration: line-through;
}

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

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    text-align: center;
    padding: 40px;
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 22px;
    color: var(--white);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-author h4 {
    color: var(--white);
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.testimonial-author p {
    color: var(--gold);
    font-size: 14px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

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

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--gold);
}

/* ============================================
   Newsletter
   ============================================ */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.newsletter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--black);
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    padding: 20px 30px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    width: 350px;
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form button {
    padding: 20px 40px;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--black);
    padding-top: 80px;
}

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

.footer-about .logo {
    margin-bottom: 25px;
}

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

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-column h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

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

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

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact li span {
    color: var(--gray);
    font-size: 14px;
}

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

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

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

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

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

/* ============================================
   Shop Page
   ============================================ */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: var(--black-light);
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1920') center/cover no-repeat;
    opacity: 0.2;
}

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

.page-header h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
}

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

.breadcrumb a,
.breadcrumb span {
    color: var(--gray);
    font-size: 14px;
}

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

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

.shop-section {
    padding: 80px 0;
}

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

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

.sidebar-widget {
    background: var(--black-light);
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Poppins', sans-serif;
}

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

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

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

.category-list a span {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 10px;
    font-size: 12px;
}

.price-range {
    margin-bottom: 20px;
}

.price-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    background: var(--gray-dark);
    border-radius: 2px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    cursor: pointer;
}

.price-inputs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.price-inputs input {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: center;
}

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

.color-option {
    width: 35px;
    height: 35px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.color-option:hover,
.color-option.active {
    border-color: var(--gold);
}

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

.size-option {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover,
.size-option.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Shop Main */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--black-light);
    margin-bottom: 30px;
}

.shop-result {
    color: var(--gray);
    font-size: 14px;
}

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

.shop-sort select {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
}

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

.view-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover,
.view-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.pagination a:hover,
.pagination span.current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ============================================
   Product Page
   ============================================ */
.product-detail {
    padding: 50px 0 100px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
}

.product-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.product-zoom:hover {
    background: var(--gold-light);
}

.product-thumbs {
    display: flex;
    gap: 15px;
}

.product-thumb {
    width: 100px;
    height: 100px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-thumb:hover,
.product-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

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

.product-details {
    padding-top: 20px;
}

.product-details .product-category {
    text-align: left;
    margin-bottom: 15px;
}

.product-details h1 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-meta .product-rating {
    justify-content: flex-start;
    margin-bottom: 0;
}

.product-meta span {
    color: var(--gray);
    font-size: 14px;
}

.product-details .product-price {
    justify-content: flex-start;
    margin-bottom: 25px;
}

.product-details .product-price .current {
    font-size: 36px;
}

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

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

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

.option-group label {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 18px;
}

.quantity-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.quantity-selector input {
    width: 80px;
    height: 50px;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-right: none;
    color: var(--white);
    text-align: center;
    font-size: 16px;
}

.product-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

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

.wishlist-btn {
    width: 60px;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 20px;
}

.wishlist-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.product-extras {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.product-extra i {
    color: var(--gold);
    font-size: 20px;
    width: 25px;
}

.product-extra span {
    color: var(--gray-light);
    font-size: 14px;
}

/* Product Tabs */
.product-tabs-section {
    padding: 80px 0;
    background: var(--black-light);
}

.product-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.product-tab {
    padding: 15px 0;
    background: transparent;
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.product-tab:hover,
.product-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-content {
    display: none;
}

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

.tab-content h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.tab-content p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table td {
    padding: 15px 0;
    font-size: 14px;
}

.specs-table td:first-child {
    color: var(--white);
    font-weight: 500;
    width: 200px;
}

.specs-table td:last-child {
    color: var(--gray-light);
}

/* ============================================
   Cart Page
   ============================================ */
.cart-section {
    padding: 50px 0 100px;
}

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

.cart-table {
    background: var(--black-light);
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

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

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

.cart-product-info h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.cart-product-info p {
    color: var(--gray);
    font-size: 13px;
}

.cart-price {
    color: var(--white);
    font-size: 16px;
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.cart-quantity button {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
}

.cart-quantity button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.cart-quantity input {
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-right: none;
    color: var(--white);
    text-align: center;
}

.cart-subtotal {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
}

.cart-remove {
    background: transparent;
    color: var(--gray);
    font-size: 18px;
}

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

.cart-actions {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
}

.coupon-form {
    display: flex;
    gap: 0;
}

.coupon-form input {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 250px;
}

.coupon-form button {
    padding: 15px 25px;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.cart-summary {
    background: var(--black-light);
    padding: 40px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.cart-summary h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row span {
    color: var(--gray-light);
    font-size: 15px;
}

.summary-row.total {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row.total span {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.summary-row.total span:last-child {
    color: var(--gold);
}

.cart-summary .btn {
    width: 100%;
    margin-top: 30px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--gray);
    font-size: 13px;
}

.secure-checkout i {
    color: var(--success);
}

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

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.about-image-badge span:first-child {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about-image-badge span:last-child {
    font-size: 14px;
    text-transform: uppercase;
}

.about-content span {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 25px;
}

.about-content p {
    color: var(--gray-light);
    font-size: 16px;
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--black-light);
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.stat-item .number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item .label {
    color: var(--gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.value-card {
    padding: 40px 30px;
    text-align: center;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--black);
}

.value-card h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

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

.team-section {
    padding: 100px 0;
}

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

.team-card {
    position: relative;
    overflow: hidden;
}

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

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

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

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.9));
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 16px;
}

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

.team-info {
    padding: 25px;
    background: var(--black-light);
    text-align: center;
}

.team-info h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.team-info p {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.contact-info {
    background: var(--black-light);
    padding: 50px;
}

.contact-info h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-light);
    margin-bottom: 40px;
}

.contact-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black);
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

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

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

.contact-social h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-social .footer-social a {
    width: 50px;
    height: 50px;
}

.contact-form-wrapper {
    background: var(--black-light);
    padding: 50px;
}

.contact-form-wrapper h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group label {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(184, 134, 11, 0.05);
}

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

.contact-form .btn {
    width: 100%;
}

.map-section {
    height: 450px;
    background: var(--black-light);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

/* ============================================
   Quick View Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    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);
    background: var(--black);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gold-light);
}

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

.modal-image {
    height: 500px;
}

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

.modal-details {
    padding: 40px;
}

/* ============================================
   Empty Cart
   ============================================ */
.empty-cart {
    text-align: center;
    padding: 100px 20px;
}

.empty-cart-icon {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 30px;
}

.empty-cart h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 30px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 992px) {
    .hero-slide-content h2 {
        font-size: 48px;
    }

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

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

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

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

    .featured-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .shop-sidebar {
        position: static;
    }

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

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

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

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

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 24px;
    }

    .menu-toggle {
        display: flex;
    }

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

    .modal-image {
        height: 300px;
    }
}

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

    .hero-slide-content h2 {
        font-size: 36px;
    }

    .hero-arrows {
        display: none;
    }

    .features-strip .container {
        grid-template-columns: 1fr;
    }

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

    .countdown-item .number {
        font-size: 32px;
    }

    .newsletter .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

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

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

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

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

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

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

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

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

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .product-buttons .btn {
        width: 100%;
    }

    .wishlist-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-top {
        display: none;
    }

    .logo h1 {
        font-size: 20px;
    }

    .hero-slide-content h2 {
        font-size: 28px;
    }

    .countdown-timer {
        flex-wrap: wrap;
    }

    .countdown-item {
        flex: 1 1 45%;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .product-thumbs {
        flex-wrap: wrap;
    }

    .product-thumb {
        width: 70px;
        height: 70px;
    }
}

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

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

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}
