/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --primary-color: #DB4444;
    --primary-light: #ff6b6b;
    --primary-dark: #c53030; */
    --primary-color: #35817B;
    --primary-light: #56948f;
    --primary-dark: #35817B;
    --secondary-color: #000000;
    --text-color: #000000;
    --text-light: #7D8184;
    --bg-color: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --border-color: #E0E0E0;
    --success-color: #00FF66;
    --warning-color: #FFAD33;
    --gradient-primary: linear-gradient(135deg, #35817B 0%, #35817B 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-primary: 0 10px 30px rgba(219,68,68,0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    width: 100%;
    padding: 0 60px;
}

/* Top Bar */
.top-bar {
    background: var(--gradient-dark);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: topBarShimmer 3s infinite;
}

@keyframes topBarShimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    flex: 1;
    text-align: center;
}

.top-bar-text a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 8px;
}

.language-select {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: none;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 48px;
}

.nav-menu a {
    font-size: 16px;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: 25px;
    width: 250px;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.search-box:focus-within {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(219,68,68,0.1);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.search-box button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.header-icons {
    display: flex;
    gap: 16px;
}

.header-icons a {
    position: relative;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.header-icons a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-icons .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(219,68,68,0.4);
    animation: badgePop 0.3s ease-out;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero Section - Full Width Banner */
.hero-section-fullwidth {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-slider-fullwidth {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slide-fullwidth {
    display: none;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide-fullwidth.active {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(245, 235, 225, 0.95) 0%, 
        rgba(245, 235, 225, 0.85) 40%, 
        rgba(245, 235, 225, 0.4) 70%, 
        transparent 100%);
    z-index: 1;
}

.hero-content-fullwidth {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
}

.hero-content-fullwidth h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: 8px;
    color: #4a4a4a;
    margin: 0 0 30px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #4a4a4a;
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn:hover {
    background: #4a4a4a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Slider Navigation - Full Width */
.slider-arrow-fullwidth {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #4a4a4a;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.slider-arrow-fullwidth:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.slider-prev-fullwidth {
    left: 30px;
}

.slider-next-fullwidth {
    right: 30px;
}

/* Slider Dots - Full Width */
.slider-dots-fullwidth {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot-fullwidth {
    width: 12px;
    height: 12px;
    background: rgba(74, 74, 74, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-fullwidth:hover {
    background: rgba(74, 74, 74, 0.6);
}

.dot-fullwidth.active {
    background: #4a4a4a;
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   FULL WIDTH SECTIONS
   ============================================ */
.section-fullwidth {
    width: 100%;
    padding: 20px 0;
}

.section-fullwidth.section-light {
    background: var(--bg-secondary);
}

.section-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-header {
    margin-bottom: 20px;
}

.section-tag {
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-primary);
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #333;
}

.countdown {
    display: flex;
    gap: 16px;
}

.countdown-item {
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.countdown-item small {
    font-size: 12px;
    color: var(--text-light);
}

.nav-arrows {
    display: flex;
    gap: 8px;
}

.nav-arrows button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-bounce);
}

.nav-arrows button:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
}

/* Products Grid - Full Width */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.products-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* Categories Grid - Full Width */
/* Category Slider */
.category-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
    padding: 10px;
}

.category-slider {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.category-slider .category-card {
    flex: 0 0 150px;
    min-width: 150px;
    max-width: 150px;
}

.category-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-nav button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.category-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Legacy grid fallback */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.categories-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Category Cards - Attractive Design */
.category-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: transparent;
}

.category-card .category-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 14px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card i {
    font-size: 40px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    display: block;
}

.category-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.category-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.category-card:hover h4 {
    color: var(--primary-color);
}

/* Promo Banner Full Width */
.promo-banner-fullwidth {
    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-banner-fullwidth .banner-content {
    max-width: 500px;
    color: #fff;
}

.promo-banner-fullwidth .banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 30px;
}

.promo-banner-fullwidth .banner-countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.promo-banner-fullwidth .time-box {
    width: 70px;
    height: 70px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-banner-fullwidth .time-box span {
    font-size: 18px;
    font-weight: 700;
}

.promo-banner-fullwidth .time-box small {
    font-size: 10px;
    color: var(--text-light);
}

.promo-banner-fullwidth .banner-image img {
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* New Arrival Grid - Full Width */
.new-arrival-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.arrival-right {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 30px;
}

.arrival-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.arrival-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
}

.arrival-card-large {
    background: linear-gradient(135deg, #8B0000 0%, #4A0E4E 100%);
    min-height: 500px;
    padding: 40px;
}

.arrival-card-large img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 70%;
    max-height: 90%;
    object-fit: cover;
    border-radius: 10px;
}

.arrival-card-large .arrival-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.arrival-card-large h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.arrival-card-large p {
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 250px;
}

.arrival-card-medium {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 40px;
    min-height: 250px;
}

.arrival-card-medium img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 45%;
    max-height: 80%;
    object-fit: cover;
    border-radius: 10px;
}

.arrival-card-medium .arrival-content {
    position: absolute;
    bottom: 30px;
    left: 40px;
}

.arrival-card-medium h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.arrival-card-medium p {
    opacity: 0.8;
    font-size: 14px;
    max-width: 200px;
    margin-bottom: 16px;
}

.arrival-card-small {
    background: linear-gradient(145deg, #2E8B57 0%, #1a5235 100%);
    padding: 25px;
}

.arrival-card-small.arrival-card-purple {
    background: linear-gradient(145deg, #4A0E4E 0%, #2d0a2e 100%);
}

.arrival-card-small img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.arrival-card-small h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.arrival-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
}

.arrival-link-gold {
    color: #FFD700;
    font-size: 13px;
    font-weight: 500;
}

.arrival-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 60%);
}

/* Features Section Full Width */
.features-section {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition-bounce);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #e6e6e6, #f5f5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon .inner {
    width: 70px;
    height: 70px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.feature-item:hover .feature-icon .inner {
    background: var(--gradient-primary);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #00FF66 0%, #00cc52 100%);
    color: #000;
    padding: 16px 48px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,255,102,0.4);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 16px 48px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* Product Card */
.product-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: linear-gradient(135deg, #00FF66 0%, #00cc52 100%);
    color: #000;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
    z-index: 3;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions button,
.product-actions a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.product-actions button:hover,
.product-actions a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.15);
}

.add-to-cart-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    color: #fff;
    padding: 14px;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition-normal);
    font-weight: 500;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: var(--gradient-primary);
}

.product-info {
    padding: 20px;
    background: #fff;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.current-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 14px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--warning-color);
}

.rating-count {
    color: var(--text-light);
    font-size: 14px;
}

/* Product Sizes */
.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.size-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.product-card:hover .size-tag {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Legacy Hero Section (keeping for backward compatibility) */
.hero-section {
    display: flex;
    margin: 40px auto;
    gap: 45px;
    justify-content: center;
    align-items: flex-start;
}

.sidebar-categories {
    width: 200px;
    flex-shrink: 0;
    padding-top: 10px;
}

.sidebar-categories ul li {
    padding: 8px 0;
}

.sidebar-categories ul li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition-fast);
    gap: 12px;
}

.sidebar-categories ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sidebar-categories ul li a i:first-child {
    width: 18px;
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
    flex-shrink: 0;
}

.sidebar-categories ul li a:hover i:first-child {
    color: var(--primary-color);
}

.sidebar-categories ul li a .fa-chevron-right {
    font-size: 11px;
    color: var(--text-light);
    margin-left: auto;
}

.hero-slider {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.hero-slide {
    background: #E07575;
    color: #fff;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
    position: relative;
}

.hero-slide.active {
    display: flex;
}

.hero-content {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-badge i {
    margin-right: 6px;
}

.hero-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.hero-content .shop-now {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.hero-content .shop-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-content .shop-now i {
    transition: transform var(--transition-normal);
    font-size: 12px;
}

.hero-content .shop-now:hover i {
    transform: translateX(4px);
}

.hero-image {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 45%;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-color);
    z-index: 10;
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.8);
}

.slider-dots .dot.active {
    background: #fff;
    width: 24px;
    border-radius: 5px;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-tag {
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: tagShine 2s infinite;
}

@keyframes tagShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.countdown {
    display: flex;
    gap: 16px;
}

.countdown-item {
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.countdown-item small {
    font-size: 12px;
    color: var(--text-light);
}

.nav-arrows {
    display: flex;
    gap: 8px;
}

.nav-arrows button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.nav-arrows button:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

.nav-arrows button:active {
    transform: scale(0.95);
}

/* Product Card */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(219,68,68,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.product-card:hover .product-image::after {
    left: 150%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(219,68,68,0.3);
    z-index: 2;
}

.product-badge.new {
    background: linear-gradient(135deg, #00FF66 0%, #00cc52 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(0,255,102,0.3);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
    z-index: 3;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions button,
.product-actions a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.product-actions button:hover,
.product-actions a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-primary);
}

.add-to-cart-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    color: #fff;
    padding: 14px;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition-normal);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: var(--gradient-primary);
}

.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.product-info {
    padding: 20px;
    background: #fff;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    min-height: 2.8em;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.current-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.product-card:hover .current-price {
    animation: pricePulse 0.5s ease-out;
}

@keyframes pricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 14px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--warning-color);
}

.stars i {
    transition: transform var(--transition-fast);
}

.product-card:hover .stars i {
    animation: starTwinkle 0.5s ease-out;
    animation-fill-mode: both;
}

.product-card:hover .stars i:nth-child(1) { animation-delay: 0s; }
.product-card:hover .stars i:nth-child(2) { animation-delay: 0.1s; }
.product-card:hover .stars i:nth-child(3) { animation-delay: 0.2s; }
.product-card:hover .stars i:nth-child(4) { animation-delay: 0.3s; }
.product-card:hover .stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.rating-count {
    color: var(--text-light);
    font-size: 14px;
}

/* Categories Section - Styles defined above */

/* Banner Section */
.promo-banner {
    background: var(--gradient-dark);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(219,68,68,0.2) 0%, transparent 60%);
    animation: bannerGlow 6s ease-in-out infinite alternate;
}

.promo-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(0,255,102,0.1) 0%, transparent 60%);
    animation: bannerGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes bannerGlow {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.3) rotate(15deg); }
}

.banner-content {
    max-width: 450px;
}

.banner-content .tag {
    color: var(--success-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.banner-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.banner-content .tag {
    position: relative;
    z-index: 1;
}

.banner-image {
    position: relative;
    z-index: 1;
}

.banner-image img {
    animation: bannerFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
}

@keyframes bannerFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

.banner-countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.banner-countdown .time-box {
    width: 70px;
    height: 70px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition-bounce);
}

.banner-countdown .time-box:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.banner-countdown .time-box span {
    font-size: 18px;
    font-weight: 700;
}

.banner-countdown .time-box small {
    font-size: 10px;
    color: var(--text-light);
}

.btn-primary {
    background: linear-gradient(135deg, #00FF66 0%, #00cc52 100%);
    color: #000;
    padding: 16px 48px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0,255,102,0.3);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,255,102,0.4);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 36px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-primary);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(219,68,68,0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    padding: 16px 48px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-dark);
    transition: width var(--transition-normal);
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: #fff;
    border-color: var(--secondary-color);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 80px 0;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition-bounce);
    background: #fff;
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #e6e6e6, #f5f5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon .inner {
    width: 70px;
    height: 70px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: var(--transition-bounce);
}

.feature-item:hover .feature-icon .inner {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: #fff;
    padding: 80px 0 24px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(219,68,68,0.05) 0%, transparent 70%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: #fff;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li a {
    transition: var(--transition-normal);
    display: inline-block;
}

.subscribe-form {
    display: flex;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.subscribe-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(219,68,68,0.2);
}

.subscribe-form input {
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: #fff;
    outline: none;
    flex: 1;
}

.subscribe-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.subscribe-form button {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 20px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-normal);
}

.subscribe-form button:hover {
    background: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    font-size: 18px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition-bounce);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: var(--shadow-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
}

/* Auth Pages */
.auth-page {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.auth-image {
    flex: 1;
    background: #CBE4E8;
    padding: 40px;
}

.auth-image img {
    width: 100%;
}

.auth-form {
    flex: 1;
    padding: 60px 100px;
}

.auth-form h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.auth-form p {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    outline: none;
    font-size: 16px;
}

.form-group input:focus {
    border-color: var(--primary-color);
}

.auth-form .btn-primary {
    width: 100%;
    margin-bottom: 16px;
}

.auth-form .google-btn {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
}

.auth-links {
    text-align: center;
    margin-top: 24px;
}

.auth-links a {
    color: var(--primary-color);
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.breadcrumb {
    margin-bottom: 10px;
    padding: 5px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text-color);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-table th,
.cart-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    font-weight: 400;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 100px;
}

.quantity-input button {
    width: 32px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.quantity-input input {
    width: 36px;
    text-align: center;
    border: none;
    outline: none;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.coupon-form {
    display: flex;
    gap: 16px;
    align-items: center;
}

.coupon-form input {
    padding: 16px 24px;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    width: 300px;
}

.coupon-form .btn-secondary {
    padding: 16px 32px;
    white-space: nowrap;
    flex-shrink: 0;
}

.cart-total {
    width: 470px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    padding: 32px;
}

.cart-total h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-total-row:last-of-type {
    border-bottom: none;
}

.cart-total .btn-secondary {
    width: 100%;
    margin-top: 16px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-gallery {
    display: flex;
    gap: 30px;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-thumbs img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: var(--bg-secondary);
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-main {
    flex: 1;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 4px;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.product-detail-info h1 {
    font-size: 24px;
    margin-bottom: 16px;
}

.product-detail-info .rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.product-detail-info .price {
    font-size: 24px;
    margin-bottom: 24px;
}

.product-detail-info .description {
    color: var(--text-light);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.product-options {
    margin-bottom: 24px;
}

.color-options {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.color-options span {
    font-size: 20px;
}

.color-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-btn.active {
    border-color: var(--secondary-color);
}

.size-options {
    display: flex;
    align-items: center;
    gap: 16px;
}

.size-btn {
    min-width: 40px;
    height: 40px;
    padding: 8px 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.size-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.size-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(219, 68, 68, 0.3);
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary-color);
}

.color-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.product-buy {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.delivery-info {
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.delivery-item:last-child {
    border-bottom: none;
}

.delivery-item i {
    font-size: 32px;
}

/* Checkout Page */
.checkout-page {
    padding: 80px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 170px;
}

.checkout-form h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.checkout-form .form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 8px;
}

.checkout-form .form-group input {
    background: var(--bg-secondary);
    border: none;
    padding: 16px;
    border-radius: 4px;
}

.order-summary {
    padding-top: 40px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.order-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.order-item-info img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.payment-methods {
    margin: 32px 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: #333;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out;
}

.toast.success { background: #388e3c; }
.toast.error { background: #d32f2f; }
.toast.warning { background: #f57c00; }

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Enhanced Product Card */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    overflow: hidden;
}

.product-image img {
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.quick-view-modal.active {
    display: flex;
}

.quick-view-content {
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced Buttons */
.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(219, 68, 68, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: #c53030;
}

.scroll-top.visible {
    display: flex;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s;
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-nav {
    padding: 20px;
}

.mobile-menu-nav a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

/* Enhanced Form Inputs */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(219, 68, 68, 0.1);
}

/* Price Tag Animation */
.current-price {
    position: relative;
}

.product-card:hover .current-price {
    animation: pulse 0.5s ease-in-out;
}

/* Wishlist Heart Animation */
.add-to-wishlist i {
    transition: all 0.3s;
}

.add-to-wishlist:hover i {
    color: var(--primary-color);
    transform: scale(1.2);
}

.add-to-wishlist.active i {
    color: var(--primary-color);
    animation: pulse 0.5s ease-in-out;
}

/* Cart Badge Animation */
.header-icons .badge {
    animation: pulse 0.3s ease-in-out;
}

/* Star Rating Interactive */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 24px;
    color: #ddd;
    transition: color 0.2s;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #FFAD33;
}

/* Image Zoom on Hover */
.gallery-main {
    overflow: hidden;
}

.gallery-main img {
    transition: transform 0.3s;
    cursor: zoom-in;
}

.gallery-main:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .sidebar-categories {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .hero-slider {
        margin-left: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .auth-page {
        flex-direction: column;
    }
    
    .auth-image {
        display: none;
    }
    
    .auth-form {
        padding: 40px 20px;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cart-summary {
        flex-direction: column;
    }
    
    .cart-total {
        width: 100%;
    }
    
    .search-box {
        width: 200px;
    }
    
    .header-actions {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-image {
        padding: 20px;
    }
    
    .product-image img {
        height: 150px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .search-box {
        display: none;
    }
    
    .header .container {
        padding: 0 10px;
    }
}


/* ============================================
   ENHANCED SLIDER STYLES
   ============================================ */

/* Hero Slider Navigation */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider-nav:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active,
.slider-dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Hero Slide Animation */
.hero-slide {
    animation: fadeIn 0.5s ease-out;
}

.hero-slide.active .hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-slide.active .hero-image {
    animation: slideInRight 0.8s ease-out;
}

@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 slideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100px); }
}

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */

@keyframes heartBurst {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes countdownPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: var(--primary-color); }
    100% { transform: scale(1); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

/* ============================================
   ENHANCED PRODUCT CARD
   ============================================ */

.product-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(219,68,68,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.product-card:hover .product-image::after {
    left: 100%;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Product Actions */
.product-actions {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions a,
.product-actions button {
    transition: all 0.3s;
}

.product-actions a:hover,
.product-actions button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Add to Cart Button */
.add-to-cart-btn {
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: var(--primary-color);
}

/* ============================================
   ENHANCED CATEGORY CARDS
   ============================================ */

/* Category card enhancements already defined above */

/* ============================================
   ENHANCED BUTTONS
   ============================================ */

.btn-secondary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(219,68,68,0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-outline {
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.3s;
    z-index: -1;
}

.btn-outline:hover::after {
    height: 100%;
}

/* ============================================
   ENHANCED PROMO BANNER
   ============================================ */

.promo-banner {
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.promo-banner .banner-image img {
    animation: float 3s ease-in-out infinite;
}

.banner-countdown .time-box {
    transition: all 0.3s;
}

.banner-countdown .time-box:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ============================================
   ENHANCED FEATURES SECTION
   ============================================ */

.feature-item {
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon .inner {
    transition: all 0.3s;
}

.feature-item:hover .feature-icon .inner {
    background: var(--primary-color);
}

/* ============================================
   ENHANCED TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #333;
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideInRight 0.3s ease-out;
    min-width: 280px;
}

.toast i {
    font-size: 20px;
}

.toast.success {
    background: linear-gradient(135deg, #388e3c, #4caf50);
}

.toast.error {
    background: linear-gradient(135deg, #c62828, #e53935);
}

.toast.warning {
    background: linear-gradient(135deg, #ef6c00, #ff9800);
}

/* ============================================
   ENHANCED SCROLL TO TOP
   ============================================ */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 25px rgba(219,68,68,0.4);
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(219,68,68,0.5);
}

.scroll-top.visible {
    display: flex;
    animation: bounceIn 0.5s ease-out;
}

/* ============================================
   ENHANCED MOBILE MENU
   ============================================ */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 5px 0 30px rgba(0,0,0,0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
}

.mobile-menu-header .logo {
    font-size: 24px;
    font-weight: 700;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    padding: 20px;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    transition: all 0.3s;
}

.mobile-menu-nav a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* ============================================
   ENHANCED LOADING STATES
   ============================================ */

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay .spinner {
    width: 60px;
    height: 60px;
    border-width: 4px;
}

.loading-overlay p {
    margin-top: 20px;
    color: var(--text-light);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 15px;
}

.skeleton-image {
    height: 200px;
    margin-bottom: 15px;
}

/* ============================================
   ENHANCED QUICK VIEW MODAL
   ============================================ */

.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.quick-view-modal.active {
    display: flex;
}

.quick-view-content {
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: bounceIn 0.4s ease-out;
}

/* ============================================
   ENHANCED COUNTDOWN
   ============================================ */

.countdown {
    display: flex;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    position: relative;
}

.countdown-item::after {
    content: ':';
    position: absolute;
    right: -12px;
    top: 35%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.countdown-item:last-child::after {
    display: none;
}

.countdown-item span {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: var(--bg-secondary);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 60px;
}

.countdown-item small {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
    display: block;
}

/* ============================================
   ENHANCED GALLERY
   ============================================ */

.gallery-thumbs img {
    transition: all 0.3s;
    border: 2px solid transparent;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.gallery-main {
    position: relative;
    overflow: hidden;
}

.gallery-main img {
    transition: all 0.3s;
}

.gallery-main:hover img {
    transform: scale(1.5);
}

/* ============================================
   ENHANCED SIDEBAR CATEGORIES
   ============================================ */

.sidebar-categories ul li {
    transition: all 0.3s;
}

.sidebar-categories ul li:hover {
    padding-left: 10px;
}

.sidebar-categories ul li a {
    transition: all 0.3s;
}

.sidebar-categories ul li:hover a {
    color: var(--primary-color);
}

.sidebar-categories ul li a i.fa-chevron-right {
    transition: transform 0.3s;
}

.sidebar-categories ul li:hover a i.fa-chevron-right {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    
    .countdown-item span {
        font-size: 24px;
        padding: 8px 10px;
        min-width: 45px;
    }
    
    .countdown-item::after {
        font-size: 18px;
        right: -8px;
    }
    
    .toast {
        min-width: auto;
        max-width: calc(100vw - 40px);
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 10px;
    }
    
    .countdown-item span {
        font-size: 20px;
        padding: 6px 8px;
        min-width: 40px;
    }
    
    .countdown-item small {
        font-size: 10px;
    }
}


/* ============================================
   ENHANCED UI COMPONENTS - NEW ADDITIONS
   ============================================ */

/* Enhanced Cart Table */
.cart-table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cart-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.cart-table td {
    transition: background var(--transition-fast);
}

.cart-table tr:hover td {
    background: rgba(219,68,68,0.03);
}

.cart-product img {
    border-radius: 12px;
    transition: transform var(--transition-normal);
}

.cart-product:hover img {
    transform: scale(1.1);
}

/* Enhanced Quantity Input */
.quantity-input {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.quantity-input button {
    transition: var(--transition-normal);
}

.quantity-input button:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Enhanced Cart Total */
.cart-total {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: none;
    background: linear-gradient(145deg, #fff, #f8f8f8);
}

.cart-total h3 {
    position: relative;
    padding-bottom: 15px;
}

.cart-total h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Enhanced Coupon Form */
.coupon-form input {
    border-radius: 30px;
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
}

.coupon-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(219,68,68,0.1);
    outline: none;
}

/* Enhanced Breadcrumb */
.breadcrumb {
    padding: 15px 25px;
    background: var(--bg-secondary);
    border-radius: 30px;
    display: inline-flex;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.breadcrumb a {
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* Enhanced Auth Pages */
.auth-form {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.auth-form h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-form .form-group input {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    transition: var(--transition-normal);
}

.auth-form .form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 0 -2px rgba(219,68,68,0.3);
}

.auth-form .google-btn {
    border-radius: 30px;
    transition: var(--transition-normal);
}

.auth-form .google-btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Enhanced Product Detail */
.product-detail-grid {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.gallery-thumbs img {
    border-radius: 12px;
    border: 3px solid transparent;
    transition: var(--transition-bounce);
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

.gallery-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.delivery-info {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.delivery-item {
    transition: background var(--transition-fast);
}

.delivery-item:hover {
    background: var(--bg-secondary);
}

.delivery-item i {
    color: var(--primary-color);
}

/* Enhanced Tabs */
.tabs {
    display: flex;
    gap: 10px;
    border-bottom: none !important;
    background: var(--bg-secondary);
    padding: 8px;
    border-radius: 30px;
    width: fit-content;
}

.tab {
    border-radius: 25px !important;
    border: none !important;
    padding: 12px 30px !important;
    font-weight: 500;
    transition: var(--transition-normal);
    margin-bottom: 0 !important;
}

.tab.active {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    box-shadow: var(--shadow-primary);
}

.tab:hover:not(.active) {
    background: rgba(219,68,68,0.1);
}

/* Enhanced Shop Page Sidebar */
.shop-page aside {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.shop-page aside h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.shop-page aside h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.shop-page aside ul li a {
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    transition: var(--transition-normal);
}

.shop-page aside ul li a:hover {
    background: var(--bg-secondary);
    padding-left: 20px;
}

/* Enhanced Pagination */
.pagination a,
.pagination span {
    border-radius: 12px !important;
    transition: var(--transition-bounce);
}

.pagination a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Enhanced About Page Stats */
.about-stat {
    border-radius: 20px;
    transition: var(--transition-bounce);
}

.about-stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Checkout */
.checkout-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.checkout-form .form-group input,
.checkout-form .form-group select {
    border-radius: 12px;
    transition: var(--transition-normal);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(219,68,68,0.1);
}

.order-summary {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 20px;
}

.order-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.order-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* Enhanced Payment Methods */
.payment-option {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: rgba(219,68,68,0.03);
}

.payment-option input:checked + label {
    color: var(--primary-color);
}

/* Enhanced Wishlist */
.wishlist-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.wishlist-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Contact Page */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-info-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-bounce);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: #fff;
}

.contact-info-card i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Lift Effect */
.hover-lift {
    transition: var(--transition-bounce);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Pulse Animation for Important Elements */
.pulse-animation {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(219,68,68,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(219,68,68,0); }
}

/* Typing Effect for Hero */
.typing-effect {
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

/* Parallax Scroll Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Enhanced Empty States */
.empty-state {
    text-align: center;
    padding: 80px 40px;
}

.empty-state i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 30px;
    animation: emptyBounce 2s ease-in-out infinite;
}

@keyframes emptyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.empty-state h2 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Success/Error Messages */
.alert {
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-success {
    background: linear-gradient(135deg, rgba(0,255,102,0.1), rgba(0,204,82,0.1));
    border-left: 4px solid var(--success-color);
    color: #2e7d32;
}

.alert-error {
    background: linear-gradient(135deg, rgba(219,68,68,0.1), rgba(197,48,48,0.1));
    border-left: 4px solid var(--primary-color);
    color: #c62828;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255,173,51,0.1), rgba(245,124,0,0.1));
    border-left: 4px solid var(--warning-color);
    color: #ef6c00;
}

/* Loading Skeleton Enhanced */
.skeleton-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.skeleton-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
    margin: 10px 15px;
}

.skeleton-text.short {
    width: 60%;
}

/* New Arrival Grid Enhancement */
.new-arrival-grid > div {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.new-arrival-grid > div:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.new-arrival-grid > div img {
    transition: transform var(--transition-slow);
}

.new-arrival-grid > div:hover img {
    transform: scale(1.1);
}

/* Star Rating Interactive Enhancement */
.star-rating-input label {
    transition: var(--transition-fast);
}

.star-rating-input label:hover {
    transform: scale(1.2);
}

/* Review Card Enhancement */
.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-left: 4px solid transparent;
}

.review-card:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Size/Color Button Enhancement */
.size-btn, .color-btn {
    transition: var(--transition-bounce);
}

.size-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-sm);
}

.size-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.color-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.color-btn.active {
    box-shadow: 0 0 0 3px var(--secondary-color);
}

/* Page Transition */
.page-transition {
    animation: pageIn 0.5s ease-out;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .sidebar-categories {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: center;
    }
    
    .sidebar-categories ul {
        display: flex;
        gap: 15px;
        width: auto;
    }
    
    .sidebar-categories ul li {
        padding: 8px 0;
        border-bottom: none;
        white-space: nowrap;
    }
    
    .hero-slider {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        padding: 30px 20px;
        min-height: 220px;
    }
    
    .hero-content {
        max-width: 60%;
    }
    
    .hero-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .hero-image {
        max-width: 40%;
        right: 15px;
    }
    
    .hero-image img {
        max-height: 160px;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots .dot.active {
        width: 18px;
    }
    
    .promo-banner {
        padding: 40px 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .banner-content h2 {
        font-size: 32px;
    }
    
    .features-grid {
        gap: 30px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .product-detail-grid {
        padding: 20px;
    }
    
    .shop-page aside {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        padding: 25px 15px;
        min-height: 200px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-content .shop-now {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */
.checkout-page {
    padding: 60px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.checkout-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.checkout-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--bg-secondary);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(219,68,68,0.1);
    background: #fff;
}

.order-summary {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
}

.order-summary h3 {
    margin-bottom: 25px;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.order-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-item-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.order-item-info span {
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-total-row:last-of-type {
    border-bottom: none;
}

.payment-methods {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.payment-methods h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: rgba(219,68,68,0.02);
}

.payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.payment-option label {
    cursor: pointer;
    font-weight: 500;
}

/* Cart Total Box */
.cart-total {
    width: 100%;
    max-width: 470px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    background: #fff;
}

.cart-total h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-total .btn-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.empty-state i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 30px;
}

.empty-state h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.alert-warning {
    background: #fff3e0;
    color: #ef6c00;
    border: 1px solid #ffcc80;
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(219,68,68,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(219,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(219,68,68,0); }
}

/* Responsive Checkout */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-summary {
        position: static;
    }
    
    .cart-summary {
        flex-direction: column;
    }
    
    .cart-total {
        max-width: 100%;
    }
    
    .coupon-form {
        flex-direction: column;
    }
    
    .coupon-form input {
        width: 100%;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE ENHANCEMENTS
   ============================================ */
.product-detail {
    padding: 40px 0 80px;
}

.product-detail .breadcrumb {
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.product-detail .breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s;
}

.product-detail .breadcrumb a:hover {
    color: var(--primary-color);
}

.product-detail .breadcrumb span {
    color: var(--text-color);
    font-weight: 500;
}

/* Wishlist button hover */
.product-buy .add-to-wishlist:hover {
    border-color: var(--primary-color);
    background: rgba(219,68,68,0.05);
}

.product-buy .add-to-wishlist:hover i {
    color: var(--primary-color);
}

/* Delivery Info Box */
.delivery-info {
    background: #fff;
    border-radius: 12px;
}

.delivery-info .delivery-item:hover {
    background: var(--bg-secondary);
}

.delivery-info .delivery-item i {
    color: var(--primary-color);
}

/* ============================================
   CART PAGE ENHANCEMENTS
   ============================================ */
.cart-page {
    padding: 60px 0;
}

.cart-table {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cart-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.cart-table td {
    vertical-align: middle;
}

.cart-table tr:hover {
    background: rgba(219,68,68,0.02);
}

.cart-product img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.quantity-input {
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-input button {
    width: 36px;
    height: 40px;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.quantity-input button:hover {
    background: var(--primary-color);
    color: #fff;
}

.quantity-input input {
    width: 50px;
    text-align: center;
    border: none;
    background: var(--bg-secondary);
    font-weight: 600;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Toast Styles */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 16px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
    min-width: 280px;
}

.toast.success {
    border-left: 4px solid #4caf50;
}

.toast.success i {
    color: #4caf50;
}

.toast.error {
    border-left: 4px solid #f44336;
}

.toast.error i {
    color: #f44336;
}

.toast.warning {
    border-left: 4px solid #ff9800;
}

.toast.warning i {
    color: #ff9800;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-primary);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ============================================
   CART SUMMARY & ADDITIONAL CART STYLES
   ============================================ */
.cart-summary {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.coupon-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.coupon-form input {
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    width: 300px;
    font-size: 14px;
    transition: all 0.3s;
}

.coupon-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(219,68,68,0.1);
}

.cart-total {
    width: 100%;
    max-width: 470px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.cart-total h3 {
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.cart-total .cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-total .cart-total-row:last-of-type {
    border-bottom: none;
}

.cart-total .btn-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* Cart Table Enhancements */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cart-table th {
    background: var(--bg-secondary);
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.cart-table td {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-table tbody tr:last-child td {
    border-bottom: none;
}

.cart-table tbody tr:hover {
    background: rgba(219,68,68,0.02);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

/* Quantity Input Styling */
.quantity-input {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.quantity-input button {
    width: 40px;
    height: 44px;
    border: none;
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s;
}

.quantity-input button:hover {
    background: var(--primary-color);
    color: #fff;
}

.quantity-input input {
    width: 50px;
    height: 44px;
    text-align: center;
    border: none;
    background: #fff;
    font-weight: 600;
    font-size: 16px;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-input input::-webkit-outer-spin-button,
.quantity-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    margin: 0 auto;
}

.empty-state i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 30px;
    display: block;
}

.empty-state h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

/* Responsive Cart */
@media (max-width: 992px) {
    .cart-summary {
        flex-direction: column;
    }
    
    .coupon-form {
        width: 100%;
    }
    
    .coupon-form input {
        flex: 1;
        width: auto;
    }
    
    .cart-total {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 15px;
        white-space: nowrap;
    }
    
    .cart-product {
        min-width: 250px;
    }
    
    .cart-product img {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   CHECKOUT FORM ENHANCEMENTS
   ============================================ */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.checkout-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.checkout-form h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.checkout-form .form-group {
    margin-bottom: 24px;
}

.checkout-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fff;
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(219,68,68,0.1);
}

.checkout-form .form-group input::placeholder {
    color: var(--text-light);
}

/* Order Summary */
.order-summary {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
}

.order-summary h3 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 22px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-of-type {
    margin-bottom: 20px;
}

.order-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.order-item-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.order-item-info > div {
    flex: 1;
}

.order-item-info span {
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-item > span {
    font-weight: 600;
    color: var(--text-color);
}

/* Payment Options */
.payment-methods {
    margin: 25px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.payment-methods h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: rgba(219,68,68,0.02);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.payment-option label {
    cursor: pointer;
    font-weight: 500;
    flex: 1;
}

/* Responsive Checkout */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-summary {
        position: static;
    }
    
    .checkout-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .checkout-form .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .checkout-form {
        padding: 20px;
    }
    
    .order-summary {
        padding: 25px;
    }
}

/* Remove Button in Cart */
.remove-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(219,68,68,0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s;
    font-size: 14px;
}

.remove-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Breadcrumb Styling */
.breadcrumb {
    padding: 10px 6px;
    color: var(--text-light);
    font-size: 12px;
}

.breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-color);
    font-weight: 500;
}

/* Alert Styles */
.alert {
    padding: 16px 24px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert i {
    font-size: 20px;
}

.alert-error {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.alert-success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #ef6c00;
    border: 1px solid #ffcc80;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation for Buttons */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(219,68,68,0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(219,68,68,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(219,68,68,0);
    }
}

/* Page Transition */
.page-transition {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Cart Items Wrapper */
.cart-items-wrapper {
    margin-bottom: 20px;
}

/* Ensure cart page elements are visible */
.cart-page .cart-table,
.cart-page .cart-summary,
.cart-page .cart-total,
.cart-page .empty-state {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================
   HERO SLIDER FIX - Ensure only active slide shows
   ============================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.hero-slide {
    display: none;
    background: #E07575;
    color: #fff;
    padding: 40px 50px;
    align-items: center;
    justify-content: space-between;
    min-height: 344px;
    position: relative;
}

.hero-slide.active {
    display: flex !important;
}

.hero-content {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-badge i {
    margin-right: 6px;
}

.hero-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.1;
}

.hero-content .shop-now {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-normal);
}

.hero-content .shop-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-image {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 45%;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-color);
    z-index: 10;
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.8);
}

.slider-dots .dot.active {
    background: #fff;
    width: 24px;
    border-radius: 5px;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-slide {
        padding: 30px 20px;
        min-height: 280px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 80%;
        margin-top: 20px;
    }
}


/* ============================================
   ADDITIONAL UI COMPONENTS
   ============================================ */

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.alert-error {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
    border-left: 4px solid #f44336;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
    border-left: 4px solid #ff9800;
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    border-left: 4px solid #2196f3;
}

.alert i {
    font-size: 18px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.empty-state i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 24px;
    display: block;
}

.empty-state h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(219, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(219, 68, 68, 0);
    }
}

/* Page Transition */
.page-transition {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Checkout Page Styles */
.checkout-page .form-group {
    margin-bottom: 20px;
}

.checkout-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.checkout-page .form-group input,
.checkout-page .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.checkout-page .form-group input:focus,
.checkout-page .form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(219, 68, 68, 0.1);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.payment-option input[type="radio"]:checked + label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Account Page Nav Links */
.account-nav-link:hover {
    background: rgba(219, 68, 68, 0.05);
    color: var(--primary-color);
}

/* Form Input Focus States */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(219, 68, 68, 0.1);
}

/* Auth Page Responsive */
@media (max-width: 992px) {
    .auth-page {
        flex-direction: column;
    }
    
    .auth-image {
        display: none;
    }
    
    .auth-form {
        padding: 40px 20px;
    }
}

/* Shop Page Responsive */
@media (max-width: 992px) {
    .shop-page > .container > div {
        flex-direction: column;
    }
    
    .shop-page aside {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Cart Page Responsive */
@media (max-width: 992px) {
    .cart-summary {
        flex-direction: column;
    }
    
    .cart-total {
        width: 100%;
    }
    
    .coupon-form {
        flex-direction: column;
    }
    
    .coupon-form input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-table {
        display: block;
        overflow-x: auto;
    }
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-page > .container > div {
        grid-template-columns: 1fr;
    }
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-page .container > div:first-of-type {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-page .container > div:nth-of-type(2) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-page .container > div:nth-of-type(2) {
        grid-template-columns: 1fr;
    }
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    background: var(--gradient-dark);
    color: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    animation: toastSlide 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.success {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.toast.error {
    background: var(--gradient-primary);
}

@keyframes toastSlide {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: var(--shadow-xl);
        transition: left 0.3s ease;
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .search-box {
        width: 100%;
        max-width: 200px;
    }
}

/* Quantity Input Styling */
.quantity-input {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-input button {
    width: 40px;
    height: 44px;
    border: none;
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.quantity-input button:hover {
    background: var(--primary-color);
    color: #fff;
}

.quantity-input input {
    width: 50px;
    height: 44px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 16px;
}

/* New Arrival Cards Hover */
.arrival-card:hover img {
    transform: scale(1.05);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(219, 68, 68, 0.4);
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .scroll-top,
    .nav-arrows,
    .product-actions,
    .add-to-cart-btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #c00;
        --border-color: #000;
    }
    
    .btn-secondary,
    .btn-primary {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Mobile Menu Button - Hidden by default on desktop */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-color);
    transition: color var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

/* Show mobile menu button on tablet and mobile */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .search-box {
        display: none;
    }
}

/* Mobile Menu - Hidden by default (slides in from left) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--gradient-primary);
}

.mobile-menu-header .logo {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.mobile-menu-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.mobile-menu-nav {
    padding: 20px;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    color: var(--text-color);
    text-decoration: none;
}

.mobile-menu-nav a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.mobile-menu-nav a i {
    width: 24px;
    text-align: center;
    color: var(--primary-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ============================================
   MODERN AUTH PAGES (Login/Signup)
   ============================================ */
.auth-page-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px;
}

.auth-container {
    display: flex;
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.auth-left {
    width: 45%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.auth-left-signup {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.auth-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3731256/pexels-photo-3731256.jpeg?auto=compress&cs=tinysrgb&w=600') center/cover;
    opacity: 0.2;
}

.auth-brand {
    position: relative;
    z-index: 2;
}

.auth-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.auth-welcome {
    position: relative;
    z-index: 2;
    margin-top: auto;
    color: #fff;
}

.auth-welcome h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-welcome p {
    opacity: 0.9;
    font-size: 14px;
}

.auth-right {
    width: 55%;
    padding: 40px;
    display: flex;
    align-items: center;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.auth-form-wrapper h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.auth-subtitle {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 25px;
}

.auth-alert {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-alert.error {
    background: #fee2e2;
    color: #dc2626;
}

.auth-alert.success {
    background: #d1fae5;
    color: #059669;
}

.auth-form-compact .form-field {
    margin-bottom: 18px;
}

.auth-form-compact label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
}

.input-icon input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
    background: #f9fafb;
}

.input-icon input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(219,68,68,0.1);
}

.input-icon input::placeholder {
    color: #9ca3af;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #6b7280;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.checkbox-label.terms {
    margin-bottom: 0;
}

.checkbox-label.terms span {
    font-size: 12px;
    color: #6b7280;
}

.checkbox-label.terms a {
    color: var(--primary-color);
}

.forgot-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #9ca3af;
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    padding: 0 15px;
}

.social-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.social-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #6b7280;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Auth Page Responsive */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        max-width: 420px;
    }
    
    .auth-left {
        width: 100%;
        padding: 30px;
        min-height: 180px;
    }
    
    .auth-welcome h1 {
        font-size: 26px;
    }
    
    .auth-right {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .auth-page-modern {
        padding: 10px;
    }
    
    .auth-container {
        border-radius: 16px;
    }
    
    .auth-left {
        padding: 25px;
        min-height: 150px;
    }
    
    .auth-right {
        padding: 25px;
    }
    
    .auth-form-wrapper h2 {
        font-size: 22px;
    }
}

/* ============================================
   PROMO SPLIT BANNER - NEW DESIGN
   ============================================ */
.promo-split-banner {
    display: flex;
    width: 100%;
    min-height: 500px;
    background: #000;
}

.promo-split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.promo-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.promo-split-banner:hover .promo-split-image img {
    transform: scale(1.1);
}

.promo-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(219,68,68,0.1) 100%);
    pointer-events: none;
}

.promo-discount-tag {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(219,68,68,0.4);
    animation: tagPulse 2s ease-in-out infinite;
}

.promo-discount-tag .discount-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.promo-discount-tag .discount-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-split-content {
    flex: 1;
    background: linear-gradient(135deg, #DB4444 0%, #c53030 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.promo-split-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.promo-content-inner {
    position: relative;
    z-index: 2;
    max-width: 450px;
}

.promo-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.promo-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

.promo-timer {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.timer-block {
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    min-width: 75px;
    border: 1px solid rgba(255,255,255,0.1);
}

.timer-num {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.promo-shop-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.promo-shop-btn i {
    transition: transform 0.3s ease;
}

.promo-shop-btn:hover i {
    transform: translateX(5px);
}

.promo-banner-premium .promo-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.promo-banner-premium .banner-content {
    flex: 1;
    max-width: 550px;
    color: #fff;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(219,68,68,0.2), rgba(255,107,107,0.2));
    border: 1px solid rgba(219,68,68,0.5);
    color: #ff6b6b;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: badgeGlow 2s ease-in-out infinite;
}

.promo-badge i {
    font-size: 14px;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(219,68,68,0.2); }
    50% { box-shadow: 0 0 30px rgba(219,68,68,0.4); }
}

.promo-banner-premium .banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.promo-banner-premium .banner-content h2 .highlight-text {
    background: linear-gradient(135deg, #ff6b6b, #DB4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 450px;
}

.promo-banner-premium .banner-countdown {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.promo-banner-premium .time-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 5px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.promo-banner-premium .time-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.promo-banner-premium .time-inner {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
}

.promo-banner-premium .time-box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.promo-banner-premium .time-box small {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    animation: separatorBlink 1s ease-in-out infinite;
}

@keyframes separatorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.promo-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-promo-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #DB4444, #ff6b6b);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(219,68,68,0.4);
    position: relative;
    overflow: hidden;
}

.btn-promo-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-promo-primary:hover::before {
    left: 100%;
}

.btn-promo-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(219,68,68,0.5);
}

.btn-promo-primary i {
    transition: transform 0.3s ease;
}

.btn-promo-primary:hover i {
    transform: translateX(5px);
}

.btn-promo-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-promo-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.promo-banner-premium .banner-image {
    position: relative;
    flex-shrink: 0;
}

.promo-banner-premium .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 4px rgba(219,68,68,0.3);
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

.promo-banner-premium .banner-image:hover .image-frame {
    animation-play-state: paused;
    transform: scale(1.03);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 6px rgba(219,68,68,0.5);
}

.promo-banner-premium .image-frame img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: all 0.6s ease;
}

.promo-banner-premium .banner-image:hover .image-frame img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.promo-banner-premium .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(45,10,10,0.7) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.promo-banner-premium .banner-image:hover .image-overlay {
    opacity: 0.5;
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #DB4444, #c53030);
    color: #fff;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(219,68,68,0.5);
    animation: floatBadge 3s ease-in-out infinite, badgePulse 2s ease-in-out infinite;
    z-index: 3;
    border: 3px solid rgba(255,255,255,0.3);
}

.floating-badge .discount {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.floating-badge small {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(219,68,68,0.5); }
    50% { box-shadow: 0 10px 40px rgba(219,68,68,0.8), 0 0 20px rgba(219,68,68,0.4); }
}

/* Promo Split Banner Responsive */
@media (max-width: 1200px) {
    .promo-title {
        font-size: 36px;
    }
    
    .promo-split-content {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .promo-split-banner {
        flex-direction: column;
        min-height: auto;
    }
    
    .promo-split-image {
        height: 350px;
    }
    
    .promo-split-content {
        padding: 50px 30px;
    }
    
    .promo-content-inner {
        max-width: 100%;
        text-align: center;
    }
    
    .promo-timer {
        justify-content: center;
    }
    
    .promo-image-overlay {
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    }
}

@media (max-width: 576px) {
    .promo-split-image {
        height: 280px;
    }
    
    .promo-discount-tag {
        top: 20px;
        left: 20px;
        padding: 12px 15px;
    }
    
    .promo-discount-tag .discount-value {
        font-size: 26px;
    }
    
    .promo-title {
        font-size: 28px;
    }
    
    .promo-desc {
        font-size: 14px;
    }
    
    .promo-timer {
        gap: 10px;
    }
    
    .timer-block {
        padding: 12px 15px;
        min-width: 60px;
    }
    
    .timer-num {
        font-size: 22px;
    }
    
    .promo-shop-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
}
