/* 
 * Marketplace Custom Styles
 * Extracted from index.php for better performance
 * Created: November 14, 2025
 */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #f39c12;
    --danger-color: #e74c3c;
    --success-color: #27ae60;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --gray-color: #95a5a6;
    --white-color: #ffffff;
    --black-color: #333333;
    --border-radius: 8px;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(45deg, var(--primary-color), #2980b9);
    --gradient-success: linear-gradient(45deg, var(--secondary-color), #27ae60);
    --gradient-warning: linear-gradient(45deg, var(--accent-color), #f1c40f);
    --gradient-danger: linear-gradient(45deg, var(--danger-color), #c0392b);
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black-color);
    background-color: #f8f9fa;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

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

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

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    min-height: 46px;
}

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

.btn-primary:hover {
    background: linear-gradient(45deg, #2980b9, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(52, 152, 219, 0.3);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 20px auto 0;
}

.mobile-container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 1rem);
    padding-left: var(--bs-gutter-x, 1rem);
    margin-right: auto;
    margin-left: auto;
}

/* ===== MODERN CARD STYLE ===== */
.modern-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===== MODERN HERO SECTION STYLES ===== */
.modern-hero-area {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 60px;
}

.modern-hero-banner {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Thin Red Info Bar */
.hero-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    gap: 20px;
    flex-wrap: wrap;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-bar-item i {
    font-size: 0.9rem;
}

.info-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
}

/* Top Features Bar */
.hero-top-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    color: white;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.2rem;
}

.flag-image {
    width: 28px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Sale Ticker */
.sale-ticker {
    background: rgba(0,0,0,0.04);
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    gap: 30px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    color: var(--dark-color);
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 50px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.ticker-product-name {
    font-weight: 500;
}

.ticker-price {
    font-weight: 700;
    color: var(--primary-color);
}

.ticker-tag {
    background: var(--danger-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

/* ===== ULTRA MODERN SLEEK CAROUSEL ===== */
.sleek-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 24px;
    background: #0a0a0a;
}

.sleek-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.sleek-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.sleek-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Blurred Background */
.sleek-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.4);
    transform: scale(1.1);
}

/* Content Grid */
.sleek-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100%;
    padding: 60px;
    gap: 60px;
    align-items: center;
}

/* Left Side - Product Image */
.sleek-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sleek-image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sleek-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.sleek-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    z-index: 3;
    line-height: 1;
}

/* Right Side - Product Info */
.sleek-info-side {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sleek-category a {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.sleek-category a:hover {
    color: #fff;
}

.sleek-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sleek-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.sleek-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.sleek-price-new,
.sleek-price-solo {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.sleek-price-old {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.sleek-savings {
    background: rgba(76, 217, 100, 0.2);
    color: #4cd964;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.sleek-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.sleek-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
}

.sleek-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sleek-btn:hover i {
    transform: translateX(3px);
}

.sleek-btn-secondary i {
    font-size: 1.2rem;
}

.sleek-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.sleek-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.sleek-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sleek-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.sleek-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.current-slide {
    color: #fff;
    font-weight: 700;
}

/* Navigation */
.sleek-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.sleek-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.sleek-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.sleek-nav-btn i {
    font-size: 1.2rem;
}

/* Progress Bar */
.sleek-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.sleek-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.1s linear;
}

/* Dot Indicators */
.sleek-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.sleek-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.sleek-dot.active {
    width: 30px;
    border-radius: 4px;
    background: white;
}

/* ===== HERO AREA 2 - SPLIT SCREEN WITH MINI GRID ===== */
.hero-area2 {
    --hero-height: 70vh;
    --primary-color: #10b981;
    --primary-dark: #059669;
    --secondary-color: #f97316;
    --text-color: #27272a;
    --light-text: #f8fafc;
    --gray-light: #f1f5f9;
    --gray-medium: #e2e8f0;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --bg-image: none;
    
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    color: var(--text-color);
    background: var(--gray-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Split Hero Layout */
.split-hero {
    display: flex;
    min-height: var(--hero-height);
    position: relative;
    max-height: 80vh;
}

.split-hero-image,
.split-hero-content {
    flex: 1;
    position: relative;
}

/* Image Side */
.split-hero-image {
    background: #ffffff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
}

.split-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-image: var(--bg-image);
    filter: blur(20px) saturate(120%);
    opacity: 0.2;
    z-index: 0;
    transition: background-image 0.5s ease;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition-medium);
    max-height: 100%;
}

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

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    transform: rotate(-5deg);
}

/* Content Side */
.split-hero-content {
    background: white;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.content-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInRight 1s ease;
}

.product-category {
    margin-bottom: 1.5rem;
}

.product-category a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    transition: color var(--transition-fast);
}

.product-category a:hover {
    color: var(--primary-dark);
}

.product-title {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-color);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #64748b; /* slate-500 */
}

.product-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2.5rem;
}

.current-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-color);
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #94a3b8; /* slate-400 */
    margin-left: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-view, .btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-view {
    background: var(--primary-color);
    color: white;
    flex: 2;
}

.btn-view:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-cart {
    background: var(--gray-light);
    color: var(--text-color);
    flex: 1;
    border: 1px solid var(--gray-medium);
}

.btn-cart:hover {
    background: var(--gray-medium);
    box-shadow: var(--shadow-sm);
}

.btn-view svg, .btn-cart svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.btn-cart svg {
    margin-right: 8px;
    margin-left: 0;
}

/* Mini Product Grid */
.mini-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.mini-product {
    position: relative;
    background: white;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.mini-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mini-product-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
}

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

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

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

.mini-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
}

.mini-product-info {
    padding: 1rem;
}

.mini-product-name {
    font-size: 0.95rem;
    font-weight: 100;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.mini-current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.mini-original-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #94a3b8; /* slate-400 */
}

.mini-add-to-cart {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(10px);
}

.mini-add-to-cart svg {
    width: 18px;
    height: 18px;
}

.mini-product:hover .mini-add-to-cart {
    opacity: 1;
    transform: translateY(0);
}

.mini-add-to-cart:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    transform: scale(1.1) !important;
}

/* No Products Message */
.no-products-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--hero-height);
    background: white;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.message-content {
    max-width: 500px;
    padding: 2rem;
}

.message-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.message-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.message-content p {
    font-size: 1.1rem;
    color: #64748b; /* slate-500 */
}

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

/* ===== RESPONSIVE STYLES ===== */
/* Mobile Responsiveness for Hero Carousel */
@media (max-width: 991px) {
    .hero-slide-inner {
        flex-direction: column;
        gap: 30px;
    }

    .hero-image-container, .hero-content {
        flex: 0 0 100%;
    }

    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .hero-description {
        text-align: center;
    }

    .hero-price, .hero-category {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-arrows {
        position: static;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .modern-hero-area {
        margin-bottom: 40px;
    }

    .hero-info-bar {
        padding: 6px 15px;
        font-size: 0.75rem;
        gap: 12px;
    }

    .info-bar-item i {
        font-size: 0.8rem;
    }

    .info-bar-divider {
        height: 12px;
    }

    .hero-top-features {
        padding: 10px;
        gap: 10px;
    }

    .feature-item {
        font-size: 0.8rem;
    }

    .feature-icon, .flag-image {
        width: 18px;
        height: 18px;
    }

    .hero-slide {
        padding: 30px 15px;
    }

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

    .price-sale, .price-regular.no-sale {
        font-size: 1.7rem;
    }

    .hero-button-details, .hero-button-cart {
        min-width: 160px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modern-hero-area {
        margin-bottom: 30px;
    }

    .hero-info-bar {
        padding: 5px 10px;
        font-size: 0.7rem;
        gap: 8px;
    }

    .info-bar-item {
        gap: 4px;
    }

    .info-bar-item span {
        max-width: 140px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .info-bar-divider {
        display: none;
    }

    .hero-slide {
        padding: 20px 10px;
    }

    .hero-top-features {
        justify-content: center;
    }

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

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .price-sale, .price-regular.no-sale {
        font-size: 1.5rem;
    }

    .price-regular {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-button-details, .hero-button-cart {
        width: 100%;
        min-width: 0;
    }

    .hero-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    .hero-arrows {
        margin-right: 0;
    }
}

/* Responsive Design for Sleek Carousel */
@media (max-width: 1200px) {
    .sleek-carousel-wrapper {
        height: 550px;
    }

    .sleek-content-grid {
        padding: 40px;
        gap: 40px;
    }

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

    .sleek-image-frame {
        max-width: 380px;
    }
}

@media (max-width: 992px) {
    .sleek-carousel-wrapper {
        height: auto;
        min-height: 600px;
    }

    .sleek-content-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 25px;
        display: flex;
        flex-direction: column;
    }

    .sleek-image-side {
        order: 1;
        height: auto;
    }

    .sleek-info-side {
        order: 2;
        text-align: center;
    }

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

    .sleek-image-frame {
        max-width: 320px;
        margin: 0 auto;
    }

    .sleek-actions {
        justify-content: center;
    }

    .sleek-counter {
        justify-content: center;
    }

    .sleek-category {
        text-align: center;
    }

    /* Split Hero Responsive */
    .split-hero {
        flex-direction: column;
        max-height: none;
    }
    
    .split-hero-image {
        height: auto;
        min-height: 350px;
        max-height: 50vh;
        padding: 1.5rem;
    }
    
    .split-hero-content {
        padding: 3rem 2rem;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .mini-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-wrapper {
        height: 100%;
    }
    
    .split-hero-image img {
        max-height: 300px;
        width: auto;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sleek-carousel-wrapper {
        height: auto;
        min-height: 680px;
        border-radius: 16px;
    }

    .sleek-content-grid {
        padding: 25px 20px;
        gap: 20px;
    }

    .sleek-image-frame {
        max-width: 280px;
        padding: 25px;
    }

    .sleek-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .sleek-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .sleek-price-new,
    .sleek-price-solo {
        font-size: 2.2rem;
    }

    .sleek-price-old {
        font-size: 1.2rem;
    }

    .sleek-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .sleek-btn {
        width: 100%;
        justify-content: center;
    }

    .sleek-nav {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .sleek-nav-btn {
        width: 45px;
        height: 45px;
    }

    .sleek-dots {
        bottom: 20px;
    }

    /* Split Hero Mobile */
    .product-actions {
        flex-direction: column;
    }
    
    .btn-view, .btn-cart {
        width: 100%;
    }
    
    .product-title {
        font-size: 2.25rem;
    }
    
    .mini-product-grid {
        padding: 0.75rem;
        grid-gap: 0.75rem;
    }
    
    .split-hero-image {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .sleek-carousel-wrapper {
        height: auto;
        min-height: auto;
        border-radius: 12px;
    }

    .sleek-content-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    .sleek-image-side {
        order: 1;
        height: auto;
        width: 100%;
    }

    .sleek-image-frame {
        max-width: 100%;
        width: 100%;
        padding: 0;
        aspect-ratio: 1/1;
        max-height: 400px;
    }

    .sleek-info-side {
        order: 2;
        padding: 20px 15px;
        text-align: left;
    }

    .sleek-category a {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .sleek-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .sleek-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .sleek-pricing {
        gap: 12px;
        margin: 8px 0;
    }

    .sleek-price-new,
    .sleek-price-solo {
        font-size: 2rem;
    }

    .sleek-price-old {
        font-size: 1.1rem;
    }

    .sleek-savings {
        font-size: 0.85rem;
        padding: 5px 10px;
    }

    .sleek-actions {
        gap: 8px;
        margin-top: 8px;
    }

    .sleek-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .sleek-btn i {
        font-size: 1rem;
    }

    .sleek-nav {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .sleek-nav-btn {
        width: 40px;
        height: 40px;
    }

    .sleek-nav-btn i {
        font-size: 1rem;
    }

    .sleek-dots {
        bottom: 15px;
        gap: 8px;
    }

    .sleek-dot {
        width: 6px;
        height: 6px;
    }

    .sleek-dot.active {
        width: 24px;
    }

    .sleek-counter {
        font-size: 1rem;
        margin-top: 15px;
    }

    .sleek-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    /* Split Hero Small Mobile */
    .hero-area2 {
        border-radius: calc(var(--border-radius-lg) / 2);
    }
    
    .split-hero-image {
        min-height: 220px;
        padding: 1rem;
    }
    
    .split-hero-content {
        padding: 2rem 1.5rem;
    }
    
    .product-category {
        margin-bottom: 1rem;
    }
    
    .product-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .product-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .product-price {
        margin-bottom: 1.5rem;
    }
    
    .current-price {
        font-size: 1.75rem;
    }
    
    .original-price {
        font-size: 1.1rem;
    }
    
    .sale-badge {
        top: 10px;
        left: 10px;
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .mini-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mini-product-image {
        height: 130px;
    }
    
    .mini-add-to-cart {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 400px) {
    .sleek-carousel-wrapper {
        min-height: 750px;
    }

    .sleek-content-grid {
        padding: 18px 12px;
        gap: 15px;
    }

    .sleek-image-frame {
        max-width: 200px;
        padding: 18px;
    }

    .sleek-title {
        font-size: 1.5rem;
    }

    .sleek-desc {
        font-size: 0.85rem;
    }

    .sleek-price-new,
    .sleek-price-solo {
        font-size: 1.75rem;
    }

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

/* ===== BASE RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 9px 20px;
    }
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 16px;
        min-height: 42px;
        font-size: 0.9rem;
    }

    .modern-color-plate {
        width: 300px;
        right: -300px;
    }
    
    .color-option {
        width: 35px;
        height: 35px;
    }
    
    .bg-option {
        width: 45px;
        height: 45px;
    }
}

/* ===== THEME-SPECIFIC BUTTON STYLES ===== */
.theme-orange .btn-primary, 
.theme-orange .hero-button-cart {
    background: linear-gradient(45deg, #F7941D, #f9b066);
}

.theme-orange .btn-primary:hover, 
.theme-orange .hero-button-cart:hover {
    background: linear-gradient(45deg, #E67E00, #F7941D);
}

.theme-blue .btn-primary, 
.theme-blue .hero-button-cart {
    background: linear-gradient(45deg, #0088CC, #4db8ff);
}

.theme-blue .btn-primary:hover, 
.theme-blue .hero-button-cart:hover {
    background: linear-gradient(45deg, #0077B3, #0088CC);
}

.theme-green .btn-primary, 
.theme-green .hero-button-cart {
    background: linear-gradient(45deg, #32B87D, #7ddab4);
}

.theme-green .btn-primary:hover, 
.theme-green .hero-button-cart:hover {
    background: linear-gradient(45deg, #2CA36E, #32B87D);
}

.theme-coral .btn-primary, 
.theme-coral .hero-button-cart {
    background: linear-gradient(45deg, #FE754A, #fea47d);
}

.theme-coral .btn-primary:hover, 
.theme-coral .hero-button-cart:hover {
    background: linear-gradient(45deg, #FE6331, #FE754A);
}

.theme-pink .btn-primary, 
.theme-pink .hero-button-cart {
    background: linear-gradient(45deg, #F82F56, #fa779a);
}

.theme-pink .btn-primary:hover, 
.theme-pink .hero-button-cart:hover {
    background: linear-gradient(45deg, #F71642, #F82F56);
}

.theme-teal .btn-primary, 
.theme-teal .hero-button-cart {
    background: linear-gradient(45deg, #00cec9, #4ddcd8);
}

.theme-teal .btn-primary:hover, 
.theme-teal .hero-button-cart:hover {
    background: linear-gradient(45deg, #00B5B0, #00cec9);
}

.theme-purple .btn-primary, 
.theme-purple .hero-button-cart {
    background: linear-gradient(45deg, #6c5ce7, #a59eee);
}

.theme-purple .btn-primary:hover, 
.theme-purple .hero-button-cart:hover {
    background: linear-gradient(45deg, #5445E3, #6c5ce7);
}

/* ===== MODERN HERO SECTION STYLES ===== */
/* Modern Hero Section Styles - 2025 Design */
.modern-hero-area {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 60px;
}

.modern-hero-banner {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Thin Red Info Bar */
.hero-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    gap: 20px;
    flex-wrap: wrap;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-bar-item i {
    font-size: 0.9rem;
}

.info-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
}

/* Top Features Bar */
.hero-top-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    color: white;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.2rem;
}

.flag-image {
    width: 28px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Sale Ticker */
.sale-ticker {
    background: rgba(0,0,0,0.04);
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    gap: 30px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    color: var(--dark-color);
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 50px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.ticker-product-name {
    font-weight: 500;
}

.ticker-price {
    font-weight: 700;
    color: var(--primary-color);
}

.ticker-tag {
    background: var(--danger-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

/* Ultra Modern Sleek Carousel - 2025 */
.sleek-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 24px;
    background: #0a0a0a;
}

.sleek-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.sleek-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.sleek-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Blurred Background */
.sleek-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.4);
    transform: scale(1.1);
}

/* Content Grid */
.sleek-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100%;
    padding: 60px;
    gap: 60px;
    align-items: center;
}

/* Left Side - Product Image */
.sleek-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sleek-image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sleek-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.sleek-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    z-index: 3;
    line-height: 1;
}

/* Right Side - Product Info */
.sleek-info-side {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sleek-category a {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.sleek-category a:hover {
    color: #fff;
}

.sleek-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sleek-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.sleek-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.sleek-price-new,
.sleek-price-solo {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.sleek-price-old {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.sleek-savings {
    background: rgba(76, 217, 100, 0.2);
    color: #4cd964;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.sleek-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.sleek-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
}

.sleek-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sleek-btn:hover i {
    transform: translateX(3px);
}

.sleek-btn-secondary i {
    font-size: 1.2rem;
}

.sleek-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.sleek-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.sleek-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sleek-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.sleek-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.current-slide {
    color: #fff;
    font-weight: 700;
}

/* Navigation */
.sleek-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.sleek-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.sleek-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.sleek-nav-btn i {
    font-size: 1.2rem;
}

/* Progress Bar */
.sleek-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.sleek-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.1s linear;
}

/* Dot Indicators */
.sleek-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.sleek-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.sleek-dot.active {
    width: 30px;
    border-radius: 4px;
    background: white;
}

/* ===== STANDALONE THEME CUSTOMIZER BUTTON ===== */
.color-plate-icon {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.modern-color-plate.active ~ .color-plate-icon,
.color-plate-icon.active-panel {
    right: 320px; /* Move left when panel is open */
}

.color-plate-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.color-plate-icon i {
    font-size: 20px;
}