/* ===================================
   Jewelry Portal - Main Stylesheet
   Inspired by High Street Jewelry
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #2d042f;
    --primary-dark: #1a0220;
    --secondary-color: #dc9814;
    --gold-gradient: linear-gradient(135deg, #dc9814 0%, #f4c654 50%, #dc9814 100%);
    --text-dark: #2d042f;
    --text-light: #6a6a6a;
    --text-muted: #999;
    --bg-light: #faf8f9;
    --bg-cream: #fff9f0;
    --white: #ffffff;
    --border-color: #dcd6dd;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow-sm: 0 2px 8px rgba(45, 4, 47, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 4, 47, 0.12);
    --shadow-lg: 0 8px 40px rgba(45, 4, 47, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

ul { list-style: none; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.btn-secondary:hover {
    background: #c4870f;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-gold {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    border: none;
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* ===================================
   Header & Navigation
   =================================== */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

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

.top-bar a {
    color: var(--secondary-color);
}

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

header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--secondary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-size: 12px;
    position: relative;
}

.header-action i {
    font-size: 22px;
}

.header-action:hover {
    color: var(--secondary-color);
}

.header-action .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Navigation */
.main-nav {
    background: var(--white);
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-menu > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ===================================
   Hero / Banner Carousel
   =================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
}

.banner-slide {
    display: none;
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    animation: fadeIn 0.8s ease;
}

.banner-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45, 4, 47, 0.85) 0%, rgba(45, 4, 47, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 600px;
    padding: 40px;
    color: var(--white);
}

.banner-content .subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.banner-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.banner-nav:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.banner-nav.prev { left: 30px; }
.banner-nav.next { right: 30px; }

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

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

.banner-dot.active,
.banner-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* ===================================
   Category Section
   =================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.category-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.category-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gold-gradient);
    color: var(--primary-dark);
}

.category-card h4 {
    margin-bottom: 5px;
}

.category-card span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   Offers Section
   =================================== */
.offers-section {
    background: var(--bg-cream);
}

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

.offer-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.offer-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--secondary-color);
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.offer-timer {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(45, 4, 47, 0.9);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-content {
    padding: 25px;
}

.offer-content h4 {
    margin-bottom: 8px;
}

.offer-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

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

.offer-price .current {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

/* ===================================
   Shows Section
   =================================== */
.shows-section {
    background: var(--primary-color);
    color: var(--white);
}

.shows-section .section-header h2 {
    color: var(--white);
}

.shows-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

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

.show-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.show-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.show-thumbnail {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, rgba(220, 152, 20, 0.3), rgba(45, 4, 47, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-thumbnail i {
    font-size: 50px;
    color: var(--secondary-color);
}

.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.show-content {
    padding: 20px;
}

.show-content h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 16px;
}

.show-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.show-meta i {
    color: var(--secondary-color);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 280px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image i {
    font-size: 80px;
    color: var(--secondary-color);
    opacity: 0.5;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(45, 4, 47, 0.9));
    transition: var(--transition);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-actions button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.product-actions button:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge.new { background: var(--success); color: var(--white); }
.product-badge.sale { background: var(--danger); color: var(--white); }
.product-badge.hot { background: var(--secondary-color); color: var(--white); }

.product-content {
    padding: 20px;
}

.product-content .category {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-content h4 a:hover {
    color: var(--secondary-color);
}

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

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

.product-rating span {
    color: var(--text-muted);
    font-size: 13px;
}

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

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

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

/* ===================================
   Features Section
   =================================== */
.features-section {
    background: var(--bg-light);
}

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

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-dark);
}

.feature-card h4 {
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
    background: var(--gold-gradient);
    padding: 60px 0;
}

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

.newsletter-text h2 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.newsletter-text p {
    color: var(--primary-color);
}

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

.newsletter-form input {
    width: 350px;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
}

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

/* ===================================
   Footer
   =================================== */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 80px;
}

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

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

.footer-about .logo-text {
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 16px;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

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

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

/* ===================================
   Page Header / Breadcrumb
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

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

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Forms
   =================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group label span {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-control.error {
    border-color: var(--danger);
}

.form-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

.form-text.error {
    color: var(--danger);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236a6a6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

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

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary-color);
}

/* ===================================
   Auth Pages
   =================================== */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: var(--bg-light);
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.auth-header {
    background: var(--primary-color);
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.auth-header .logo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    font-size: 30px;
}

.auth-header h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.auth-body {
    padding: 40px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    color: var(--text-muted);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.social-btn i {
    font-size: 20px;
}

.social-btn.google i { color: #db4437; }
.social-btn.facebook i { color: #4267b2; }

.auth-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    font-size: 14px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--secondary-color);
    font-weight: 600;
}

.auth-footer a:hover {
    color: var(--primary-color);
}

/* ===================================
   Filter Sidebar
   =================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.filter-sidebar {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}

.filter-section h4 i {
    color: var(--text-muted);
    font-size: 12px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.filter-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary-color);
}

.filter-option span {
    color: var(--text-muted);
    margin-left: auto;
    font-size: 12px;
}

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

.price-slider {
    width: 100%;
    margin: 15px 0;
    accent-color: var(--secondary-color);
}

.price-inputs {
    display: flex;
    gap: 10px;
}

.price-inputs input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 13px;
    text-align: center;
}

/* ===================================
   Product Details Page
   =================================== */
.product-detail-section {
    padding: 60px 0;
}

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

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

.main-image {
    width: 100%;
    height: 500px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.main-image i {
    font-size: 150px;
    color: var(--secondary-color);
    opacity: 0.5;
}

.main-image .zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.thumbnail-list {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--secondary-color);
}

.thumbnail i {
    font-size: 30px;
    color: var(--secondary-color);
    opacity: 0.5;
}

.product-info .category-link {
    font-size: 13px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-info h1 {
    margin: 15px 0;
}

.product-info .sku {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.product-info .stars i {
    color: var(--secondary-color);
}

.product-info .review-count {
    color: var(--text-light);
    font-size: 14px;
}

.product-info .price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: var(--border-radius);
}

.product-info .current-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.product-info .discount-badge {
    background: var(--danger);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

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

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

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

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

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

.size-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: var(--white);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    width: fit-content;
}

.quantity-selector button {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    font-size: 18px;
}

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

.add-to-cart-section {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-section .btn {
    flex: 1;
}

.wishlist-btn {
    width: 55px;
    height: 55px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--white);
    cursor: pointer;
    font-size: 20px;
    color: var(--text-light);
    transition: var(--transition);
}

.wishlist-btn:hover {
    border-color: var(--danger);
    color: var(--danger);
}

.product-meta {
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
}

.meta-item strong {
    min-width: 120px;
    color: var(--text-dark);
}

.meta-item span {
    color: var(--text-light);
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-nav button {
    padding: 15px 30px;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-nav button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-nav button.active,
.tab-nav button:hover {
    color: var(--primary-color);
}

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

.tab-content {
    display: none;
}

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

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

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

.cart-items {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 20px;
    padding: 20px 25px;
    background: var(--bg-light);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-image i {
    font-size: 40px;
    color: var(--secondary-color);
    opacity: 0.5;
}

.cart-product-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-product-info h4 a:hover {
    color: var(--secondary-color);
}

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

.cart-price {
    font-weight: 600;
    font-size: 16px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    width: fit-content;
}

.cart-quantity button {
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    cursor: pointer;
}

.cart-quantity input {
    width: 40px;
    height: 35px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.cart-total {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.cart-remove {
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

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

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

.summary-row span:first-child {
    color: var(--text-light);
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.coupon-form {
    display: flex;
    gap: 10px;
    margin: 25px 0;
}

.coupon-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
}

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

/* ===================================
   Checkout Page
   =================================== */
.checkout-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.step.active {
    color: var(--primary-color);
}

.step.completed {
    color: var(--success);
}

.step-number {
    width: 35px;
    height: 35px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step.active .step-number {
    background: var(--primary-color);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.checkout-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 35px;
}

.checkout-form h3 {
    margin-bottom: 25px;
}

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

.saved-addresses {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.address-card {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.address-card:hover,
.address-card.selected {
    border-color: var(--secondary-color);
}

.address-card.selected {
    background: var(--bg-cream);
}

.address-card h5 {
    margin-bottom: 8px;
}

.address-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover,
.payment-option.selected {
    border-color: var(--secondary-color);
}

.payment-option.selected {
    background: var(--bg-cream);
}

.payment-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-color);
}

.payment-option i {
    font-size: 24px;
    color: var(--secondary-color);
}

.payment-option span {
    font-weight: 600;
}

/* Order Summary (Checkout) */
.order-summary {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item-image i {
    font-size: 28px;
    color: var(--secondary-color);
    opacity: 0.5;
}

.order-item-info {
    flex: 1;
}

.order-item-info h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.order-item-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.order-item-price {
    font-weight: 600;
}

/* ===================================
   Orders Page
   =================================== */
.orders-section {
    padding: 60px 0;
}

.orders-filters {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.orders-filters .search-orders {
    flex: 1;
    max-width: 300px;
}

.orders-filters select {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
}

.order-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    overflow: hidden;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.order-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.order-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.order-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.order-status.delivered {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.order-status.processing {
    background: rgba(255, 193, 7, 0.1);
    color: #b8860b;
}

.order-status.shipped {
    background: rgba(220, 152, 20, 0.1);
    color: var(--secondary-color);
}

.order-status.cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.order-card-body {
    padding: 25px;
}

.order-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-product {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.order-product:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-product-image {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-product-image i {
    font-size: 40px;
    color: var(--secondary-color);
    opacity: 0.5;
}

.order-product-details {
    flex: 1;
}

.order-product-details h5 {
    margin-bottom: 5px;
}

.order-product-details p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.order-product-details .price {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-color);
}

.order-total {
    font-size: 18px;
}

.order-total strong {
    font-size: 22px;
    color: var(--primary-color);
}

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

/* Order Tracking */
.tracking-timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.tracking-step {
    position: relative;
    padding-bottom: 30px;
}

.tracking-step:last-child {
    padding-bottom: 0;
}

.tracking-step::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--border-color);
    border: 3px solid var(--white);
}

.tracking-step.completed::before {
    background: var(--success);
}

.tracking-step.active::before {
    background: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(220, 152, 20, 0.2);
}

.tracking-step h5 {
    font-size: 15px;
    margin-bottom: 5px;
}

.tracking-step p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   Wishlist Page
   =================================== */
.wishlist-section {
    padding: 60px 0;
}

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

.wishlist-card {
    position: relative;
}

.wishlist-card .remove-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.wishlist-card .remove-wishlist:hover {
    background: var(--danger);
    color: var(--white);
}

/* ===================================
   Profile Page
   =================================== */
.profile-section {
    padding: 60px 0;
}

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

.profile-sidebar {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    height: fit-content;
}

.profile-avatar {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.avatar-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-dark);
}

.profile-avatar h4 {
    margin-bottom: 5px;
}

.profile-avatar p {
    font-size: 14px;
    color: var(--text-muted);
}

.profile-menu li {
    margin-bottom: 5px;
}

.profile-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.profile-menu li a:hover,
.profile-menu li a.active {
    background: var(--bg-cream);
    color: var(--secondary-color);
}

.profile-menu li a i {
    width: 20px;
    text-align: center;
}

.profile-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 35px;
}

.profile-content h3 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

/* ===================================
   Shows Page
   =================================== */
.shows-page-section {
    padding: 60px 0;
}

.shows-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.shows-tabs button {
    padding: 15px 30px;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.shows-tabs button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.shows-tabs button.active,
.shows-tabs button:hover {
    color: var(--primary-color);
}

.shows-tabs button.active::after {
    transform: scaleX(1);
}

.live-show-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.live-player {
    background: var(--primary-dark);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
}

.player-area {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.player-area i {
    font-size: 80px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.player-area i:hover {
    transform: scale(1.1);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.player-controls button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

.live-chat {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--danger);
    font-size: 14px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 350px;
}

.chat-message {
    margin-bottom: 15px;
}

.chat-message .username {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 13px;
}

.chat-message p {
    font-size: 14px;
    color: var(--text-dark);
}

.chat-input {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
}

.chat-input button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.show-products {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin-top: 30px;
}

.show-products h3 {
    margin-bottom: 20px;
}

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

/* ===================================
   Empty States
   =================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 25px;
}

.empty-state h3 {
    margin-bottom: 15px;
}

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

/* ===================================
   Alerts & Notifications
   =================================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #b8860b;
    border: 1px solid var(--warning);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.alert-info {
    background: rgba(220, 152, 20, 0.1);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

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

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

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

@media (max-width: 992px) {
    .shop-layout,
    .profile-layout,
    .checkout-layout,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar,
    .profile-sidebar {
        position: static;
    }

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

    .product-gallery {
        position: static;
    }

    .live-show-featured {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .header-main .container {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu > li > a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

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

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

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

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

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

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

    .cart-header {
        display: none;
    }

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

    .cart-product {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

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

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

@media (max-width: 480px) {
    .categories-grid,
    .products-grid,
    .wishlist-grid,
    .offers-grid,
    .shows-grid,
    .show-products-grid {
        grid-template-columns: 1fr;
    }

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

    .banner-slide {
        min-height: 450px;
    }

    .banner-content {
        padding: 20px;
    }

    .banner-content h1 {
        font-size: 1.5rem;
    }

    .auth-body {
        padding: 25px;
    }

    .social-login {
        flex-direction: column;
    }

    .add-to-cart-section {
        flex-direction: column;
    }

    .add-to-cart-section .btn {
        width: 100%;
    }

    .wishlist-btn {
        width: 100%;
        height: auto;
        padding: 15px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }

.hidden { display: none; }
.visible { display: block; }
