/* ==============================================
   🌸 CERAMIC BOUTIQUE - LUXURY PINK THEME
============================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ==============================================
   ROOT VARIABLES - ENHANCED PINK PALETTE
============================================== */
:root {
    /* Primary Pink Palette - Enhanced */
    --primary-pink: #E91E63;
    --primary-pink-light: #F8BBD9;
    --primary-pink-lighter: #FCE4EC;
    --primary-pink-dark: #AD1457;
    --primary-pink-darker: #880E4F;
    
    /* Rose Gold & Luxury Accents - Enhanced */
    --rose-gold: #E8B4B8;
    --rose-gold-light: #F5D5D8;
    --rose-gold-dark: #D4969B;
    --champagne: #F7E7CE;
    --pearl: #F8F6F0;
    --blush: #FFF0F5;
    --soft-pink: #FFEBF0; /* Thêm màu hồng nhạt mới */
    --dusty-rose: #D4A5A5; /* Thêm màu hồng cổ điển */
    
    /* Neutral Luxury Colors */
    --pure-white: #FFFFFF;
    --cream-white: #FEFEFE;
    --soft-white: #F9F9F9;
    --warm-gray: #F5F5F5;
    --light-gray: #E8E8E8;
    --text-gray: #666666;
    --dark-gray: #333333;
    --charcoal: #2C2C2C;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Design System */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --shadow-soft: 0 4px 20px rgba(233, 30, 99, 0.15);
    --shadow-medium: 0 8px 30px rgba(233, 30, 99, 0.2);
    --shadow-luxury: 0 12px 40px rgba(233, 30, 99, 0.25);
    
    /* Enhanced Luxury Gradients */
    --gradient-pink: linear-gradient(135deg, #E91E63 0%, #F8BBD9 100%);
    --gradient-rose: linear-gradient(135deg, #E8B4B8 0%, #F5D5D8 100%);
    --gradient-luxury: linear-gradient(135deg, #FCE4EC 0%, #FFFFFF 50%, #FFF0F5 100%);
    --gradient-champagne: linear-gradient(135deg, #F7E7CE 0%, #F8F6F0 100%);
    --gradient-soft-pink: linear-gradient(135deg, #FFEBF0 0%, #FFFFFF 100%); /* Gradient mới */
    --gradient-header: linear-gradient(135deg, #E91E63 0%, #F06292 50%, #F8BBD9 100%); /* Gradient đặc biệt cho header */
}

/* ==============================================
   GLOBAL RESET & BASE STYLES
============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--gradient-luxury);
    min-height: 100vh;
}

/* ==============================================
   TYPOGRAPHY - LUXURY
============================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 3rem; 
    font-weight: 700; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 { 
    font-size: 2.5rem; 
    font-weight: 600; 
}

h3 { font-size: 2rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-pink-dark);
}

/* ==============================================
   LAYOUT
============================================== */
.page-content {
    padding-top: 7.5rem; /* 45px banner + 70px navbar + margin */
    min-height: calc(100vh - 7.5rem);
}

.container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    padding: 3rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(233, 30, 99, 0.1);
}
/* ==============================================
   NAVIGATION - WHITE CLEAN HEADER
============================================== */
.navbar {
    background: var(--pure-white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    backdrop-filter: blur(15px);
    min-height: 70px;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-pink) !important;
    text-shadow: none;
    letter-spacing: -0.02em;
    padding: 0.5rem 0;
    line-height: 1.2;
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    margin: 0 0.25rem;
    font-size: 1rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.navbar-toggler {
    border: 1px solid var(--primary-pink);
    border-radius: var(--border-radius);
    padding: 0.375rem 0.5rem;
    font-size: 0.9rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28233, 30, 99, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==============================================
   BUTTONS - COMPACT LUXURY
============================================== */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.75rem 1.5rem; /* Giảm từ 1rem 2rem để phù hợp với header nhỏ */
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem; /* Giảm từ 1rem */
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--pure-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-luxury);
    color: var(--pure-white);
}

.btn-secondary {
    background: var(--gradient-rose);
    color: var(--dark-gray);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--rose-gold-dark);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-outline-primary:hover {
    background: var(--primary-pink);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-success {
    background: var(--primary-pink);
    color: var(--pure-white);
}

.btn-warning {
    background: #FF6B9D;
    color: var(--pure-white);
}

.btn-danger {
    background: #C2185B;
    color: var(--pure-white);
}

.btn-info {
    background: var(--rose-gold);
    color: var(--dark-gray);
}

/* ==============================================
   CARDS - LUXURY
============================================== */
.card {
    border: none;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    background: var(--pure-white);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.card-header {
    background: var(--gradient-champagne);
    border-bottom: 1px solid var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0 !important;
}

.card-header h5 {
    color: var(--primary-pink-dark);
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
}

.card-body {
    padding: 2.5rem;
}
/* ==============================================
   FORMS - LUXURY
============================================== */
.form-control {
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--pure-white);
    font-family: var(--font-body);
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
    background: var(--pure-white);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    background: var(--pure-white);
    font-family: var(--font-body);
}

.form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

/* ==============================================
   TABLES - LUXURY
============================================== */
.table {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.table thead th {
    background: var(--gradient-rose);
    color: var(--primary-pink-dark);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: var(--blush);
    transform: scale(1.01);
}

.table tbody td {
    padding: 1.5rem;
    border-color: var(--light-gray);
    font-size: 1rem;
}

/* ==============================================
   BADGES & ALERTS - LUXURY
============================================== */
.badge {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.badge.bg-primary {
    background: var(--gradient-pink) !important;
}

.badge.bg-success {
    background: var(--primary-pink) !important;
}

.badge.bg-warning {
    background: #FF6B9D !important;
}

.badge.bg-danger {
    background: #C2185B !important;
}

.alert {
    border: none;
    border-radius: var(--border-radius-large);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid;
}

.alert-success {
    background: var(--primary-pink-lighter);
    color: var(--primary-pink-dark);
    border-left-color: var(--primary-pink);
}

.alert-warning {
    background: var(--rose-gold-light);
    color: var(--primary-pink-dark);
    border-left-color: var(--rose-gold);
}

.alert-danger {
    background: #FFEBEE;
    color: #C2185B;
    border-left-color: #C2185B;
}

.alert-info {
    background: var(--blush);
    color: var(--primary-pink-dark);
    border-left-color: var(--primary-pink);
}

/* ==============================================
   HERO SECTION - LUXURY
============================================== */
.hero-section {
    background: var(--gradient-luxury);
    padding: 6rem 0;
    text-align: center;
    border-radius: var(--border-radius-large);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23E91E63" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23E91E63" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}
/* ==============================================
   CLEAN PRODUCTS PAGE LAYOUT
============================================== */

/* Clean Products Page Container */
.products-page-clean {
    padding: 2rem 0;
}

/* Clean Header */
.products-header {
    background: linear-gradient(135deg, var(--primary-pink-lighter) 0%, var(--pure-white) 100%);
    padding: 2rem 0;
    margin-bottom: 3rem;
    border-radius: var(--border-radius-large);
}

.header-content {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
}

.search-highlight {
    color: var(--primary-pink);
}

.products-count {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

/* Clean Controls */
.products-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    max-width: 400px;
}

.search-form {
    display: flex;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    outline: none;
    background: var(--pure-white);
}

.search-button {
    background: var(--primary-pink);
    border: none;
    color: var(--pure-white);
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: var(--primary-pink-dark);
}

.filter-controls {
    display: flex;
    gap: 1rem;
}

.category-select,
.sort-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    background: var(--pure-white);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.category-select:focus,
.sort-select:focus {
    border-color: var(--primary-pink);
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

/* Clean Products Grid - Enhanced */
.products-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

/* Clean Product Card - Enhanced */
.product-card-clean {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(233, 30, 99, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(233, 30, 99, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-pink);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.product-card-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15);
    border-color: var(--primary-pink-light);
}

.product-card-clean:hover::before {
    transform: scaleX(1);
}

/* Separate Image Container - Enhanced */
.product-image-box {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-bottom: 1px solid rgba(233, 30, 99, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-box a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card-clean:hover .product-img {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    height: 100%;
}

.no-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-pink-light);
}

.no-image-placeholder span {
    font-size: 0.9rem;
}

/* Discount Tag - Compact Circle Icon */
.discount-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    border: 3px solid white;
    animation: pulse-discount 2s infinite;
}

/* Clean Product Info - Enhanced */
.product-info-clean {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--pure-white);
}

.product-category-tag {
    font-size: 0.75rem;
    color: var(--primary-pink);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    background: var(--primary-pink-lighter);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.product-card-clean:hover .product-category-tag {
    background: var(--primary-pink);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.product-name {
    margin-bottom: 1rem;
    flex-grow: 1;
    min-height: 2.6rem;
}

.product-name a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.3;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--font-heading);
}

.product-name a:hover {
    color: var(--primary-pink);
    transform: translateY(-1px);
}

/* Clean Price Section - Enhanced */
.product-price-clean {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    font-family: var(--font-heading);
    position: relative;
}

.current-price::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.product-card-clean:hover .current-price::after {
    width: 100%;
}

.original-price {
    font-size: 1rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.8;
}

/* Product Actions - Enhanced 2 Buttons Layout */
.product-actions-clean {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

/* Add to Cart Button - Enhanced */
.add-to-cart-btn {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-pink);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.add-to-cart-btn span,
.add-to-cart-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.add-to-cart-btn:hover::before {
    left: 0;
}

.add-to-cart-btn:hover {
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Buy Now Button - Enhanced Primary */
.buy-now-btn {
    background: var(--primary-pink);
    color: var(--pure-white);
    border: 2px solid var(--primary-pink);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.buy-now-btn:hover::before {
    left: 100%;
}

.buy-now-btn:hover {
    background: var(--primary-pink-dark);
    border-color: var(--primary-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

/* Button Disabled States */
.add-to-cart-btn:disabled,
.buy-now-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.add-to-cart-btn:disabled:hover,
.buy-now-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Clean Pagination */
.pagination-clean {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.page-btn {
    background: var(--pure-white);
    border: 2px solid var(--light-gray);
    color: var(--dark-gray);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-btn:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    background: var(--primary-pink-lighter);
    text-decoration: none;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    background: var(--pure-white);
    border: 2px solid var(--light-gray);
    color: var(--dark-gray);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
}

.page-number:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    background: var(--primary-pink-lighter);
    text-decoration: none;
}

.page-number.active {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--pure-white);
}

/* No Products Clean */
.no-products-clean {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
}

.no-products-clean .no-products-icon {
    font-size: 4rem;
    color: var(--primary-pink-light);
    margin-bottom: 1.5rem;
}

.no-products-clean h3 {
    color: var(--primary-pink-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.no-products-clean p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-luxury);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
    border-left: 4px solid;
    min-width: 300px;
    max-width: 400px;
    font-weight: 500;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.toast-success {
    border-left-color: #28a745;
    color: #155724;
    background: #d4edda;
}

.toast-notification.toast-success i {
    color: #28a745;
}

.toast-notification.toast-error {
    border-left-color: #dc3545;
    color: #721c24;
    background: #f8d7da;
}

.toast-notification.toast-error i {
    color: #dc3545;
}

.toast-notification.toast-info {
    border-left-color: var(--primary-pink);
    color: var(--primary-pink-dark);
    background: var(--primary-pink-lighter);
}

.toast-notification.toast-info i {
    color: var(--primary-pink);
}

.toast-notification i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-notification span {
    flex: 1;
    line-height: 1.4;
}

/* Toast close button */
.toast-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.toast-close:hover {
    opacity: 1;
}

/* Multiple toasts stacking */
.toast-notification:nth-child(n+2) {
    top: calc(100px + (80px * var(--toast-index, 0)));
}

/* Mobile responsive toasts */
@media (max-width: 768px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
        top: 80px;
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
    
    .toast-notification:nth-child(n+2) {
        top: calc(80px + (70px * var(--toast-index, 0)));
    }
}
/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .products-grid-clean {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .products-header {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .products-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .filter-controls {
        width: 100%;
        justify-content: center;
    }
    
    .category-select,
    .sort-select {
        flex: 1;
        min-width: auto;
    }
    
    .products-grid-clean {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1rem;
        padding: 0;
    }
    
    .product-image-box {
        height: 240px;
    }
    
    .product-info-clean {
        padding: 1.5rem;
    }
    
    .product-actions-clean {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .add-to-cart-btn,
    .buy-now-btn {
        flex: none;
        padding: 0.75rem 1.5rem;
    }
    
    .pagination-clean {
        gap: 0.5rem;
    }
    
    .page-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .page-number {
        padding: 0.5rem 0.75rem;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .products-grid-clean {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-image-box {
        height: 220px;
    }
    
    .product-info-clean {
        padding: 1.25rem;
    }
    
    .filter-controls {
        flex-direction: column;
    }
    
    .pagination-clean {
        flex-direction: column;
        align-items: center;
    }
    
    .page-numbers {
        order: 2;
    }
    
    .prev-btn {
        order: 1;
    }
    
    .next-btn {
        order: 3;
    }
    
    /* Mobile button layout - keep horizontal */
    .product-actions-clean {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .add-to-cart-btn,
    .buy-now-btn {
        flex: 1;
        padding: 0.7rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ==============================================
   NOTIFICATIONS - WHITE HEADER
============================================== */
.notification-bell {
    position: relative;
    color: var(--primary-pink);
    font-size: 1.1rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: var(--primary-pink-lighter);
    border: 1px solid var(--primary-pink);
    backdrop-filter: blur(10px);
}

.notification-bell:hover {
    background: var(--primary-pink);
    color: var(--pure-white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--primary-pink);
    color: var(--pure-white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

/* ==============================================
   DROPDOWN MENUS - LUXURY
============================================== */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-luxury);
    background: var(--pure-white);
    padding: 1rem 0;
    backdrop-filter: blur(15px);
}

.dropdown-item {
    color: var(--dark-gray);
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--blush);
    color: var(--primary-pink-dark);
    transform: translateX(5px);
}

.dropdown-header {
    color: var(--primary-pink-dark);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 1rem 1.5rem 0.5rem;
}

.dropdown-divider {
    border-color: var(--primary-pink-lighter);
    margin: 0.5rem 0;
}

/* ==============================================
   UTILITY CLASSES - LUXURY
============================================== */
.text-pink {
    color: var(--primary-pink) !important;
}

.text-pink-dark {
    color: var(--primary-pink-dark) !important;
}

.text-rose-gold {
    color: var(--rose-gold-dark) !important;
}

.bg-gradient-pink {
    background: var(--gradient-pink) !important;
}

.bg-gradient-rose {
    background: var(--gradient-rose) !important;
}

.bg-gradient-luxury {
    background: var(--gradient-luxury) !important;
}

.shadow-luxury {
    box-shadow: var(--shadow-luxury) !important;
}

.rounded-luxury {
    border-radius: var(--border-radius-large) !important;
}

/* ==============================================
   ANIMATIONS - LUXURY
============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(233, 30, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.pulse-effect {
    animation: pulse 3s infinite;
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}
/* ==============================================
   CLEAN CART PAGE LAYOUT
============================================== */

/* Cart Page Container */
.cart-page-clean {
    padding: 2rem 0;
    min-height: 60vh;
}

/* Clean Header */
.cart-header-clean {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-pink-lighter) 0%, var(--pure-white) 100%);
    border-radius: var(--border-radius-large);
}

.cart-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
}

.cart-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

/* Cart Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

/* Cart Items Section */
.cart-items-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual Cart Item */
.cart-item-clean {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.cart-item-clean:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-pink);
}

.cart-item-clean.removing {
    opacity: 0.5;
    pointer-events: none;
}

/* Product Image */
.item-image-clean {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image-clean img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    background: var(--pure-white);
}

.no-image-clean {
    color: var(--primary-pink-light);
    font-size: 2rem;
}

/* Product Info */
.item-info-clean {
    flex: 1;
}

.item-name-clean {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.item-price-clean {
    font-size: 1rem;
    color: var(--primary-pink);
    font-weight: 600;
    font-family: var(--font-heading);
}

.item-unavailable {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Quantity Controls */
.quantity-section-clean {
    display: flex;
    align-items: center;
}

.quantity-controls-clean {
    display: flex;
    align-items: center;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--pure-white);
}

.qty-btn {
    background: var(--primary-pink-lighter);
    border: none;
    color: var(--primary-pink-dark);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.qty-btn:hover {
    background: var(--primary-pink);
    color: var(--pure-white);
}

.qty-input {
    border: none;
    width: 50px;
    height: 35px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-gray);
    background: var(--pure-white);
    outline: none;
    font-size: 1rem;
}

.qty-input:disabled {
    opacity: 0.7;
}

/* Item Total */
.item-total-clean {
    text-align: right;
    min-width: 100px;
}

.total-price-clean {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-pink);
    font-family: var(--font-heading);
}

/* Remove Button */
.item-remove-clean {
    display: flex;
    align-items: center;
}

.remove-btn-clean {
    background: #dc3545;
    border: none;
    color: var(--pure-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.remove-btn-clean:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* Cart Summary */
.cart-summary-clean {
    position: sticky;
    top: 2rem;
}

.summary-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.summary-title-clean {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Summary Details */
.summary-details-clean {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.summary-label {
    color: var(--text-gray);
    font-weight: 500;
}

.summary-value {
    color: var(--dark-gray);
    font-weight: 600;
    font-family: var(--font-heading);
}

.summary-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 1rem 0;
}

.total-row {
    border-top: 2px solid var(--primary-pink-lighter);
    padding-top: 1rem;
    margin-top: 1rem;
}

.total-row .summary-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
}

.total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

/* Summary Actions */
.summary-actions-clean {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-checkout-clean {
    background: var(--primary-pink);
    color: var(--pure-white);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-checkout-clean:hover {
    background: var(--primary-pink-dark);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
    text-decoration: none;
}

.btn-continue-clean {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-continue-clean:hover {
    background: var(--primary-pink);
    color: var(--pure-white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Shipping Benefits */
.shipping-benefits {
    border-top: 1px solid var(--light-gray);
    padding-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.benefit-item i {
    color: var(--primary-pink);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Clear Cart Button */
.cart-actions-clean {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.btn-clear-cart {
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-clear-cart:hover {
    background: #dc3545;
    color: var(--pure-white);
}

.btn-clear-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Empty Cart */
.empty-cart-clean {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    margin-top: 2rem;
}

.empty-icon {
    font-size: 5rem;
    color: var(--primary-pink-light);
    margin-bottom: 1.5rem;
}

.empty-cart-clean h3 {
    color: var(--primary-pink-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.empty-cart-clean p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-shop-now {
    background: var(--primary-pink);
    color: var(--pure-white);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-shop-now:hover {
    background: var(--primary-pink-dark);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
    text-decoration: none;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cart-layout {
        grid-template-columns: 1fr 320px;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-summary-clean {
        position: static;
        order: -1;
    }
    
    .cart-item-clean {
        grid-template-columns: 80px 1fr auto;
        gap: 1rem;
        padding: 1rem;
    }
    
    .item-total-clean,
    .item-remove-clean {
        grid-column: 2 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--light-gray);
    }
    
    .quantity-section-clean {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .cart-page-clean {
        padding: 1rem 0;
    }
    
    .cart-header-clean {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .cart-title {
        font-size: 1.8rem;
    }
    
    .cart-item-clean {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
    }
    
    .item-image-clean {
        width: 70px;
        height: 70px;
    }
    
    .quantity-section-clean,
    .item-total-clean,
    .item-remove-clean {
        grid-column: 1 / -1;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--light-gray);
    }
    
    .item-total-clean,
    .item-remove-clean {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cart-layout {
        gap: 1rem;
    }
    
    .cart-item-clean {
        padding: 1rem;
    }
    
    .item-name-clean {
        font-size: 1rem;
    }
    
    .qty-btn {
        width: 30px;
        height: 30px;
    }
    
    .qty-input {
        width: 40px;
        height: 30px;
    }
    
    .summary-actions-clean {
        gap: 0.75rem;
    }
    
    .btn-checkout-clean,
    .btn-continue-clean {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

/* Cart icon bounce animation */
@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

.bounce {
    animation: bounce 0.6s ease-in-out;
}

/* Add to cart button loading state */
.add-to-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.add-to-cart-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ==============================================
   RESPONSIVE DESIGN - WHITE HEADER
============================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .page-content {
        padding-top: 5.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
        margin: 0.1rem 0;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link i {
        font-size: 0.9rem !important;
        margin-right: 0.4rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
        min-height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==============================================
   SPECIFIC PAGE STYLES - LUXURY
============================================== */

/* Login Page */
.login-container {
    max-width: 500px;
    margin: 3rem auto;
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-luxury);
    padding: 4rem;
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

/* Register Page - Wider container for more fields */
.register-container {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-luxury);
    padding: 3rem;
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.register-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
}

/* Responsive adjustments for register form */
@media (max-width: 768px) {
    .register-container {
        max-width: 95%;
        margin: 1rem auto;
        padding: 2rem 1.5rem;
    }
    
    .register-container .row .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* Form improvements */
.form-control {
    border-radius: var(--border-radius);
    border: 2px solid var(--light-gray);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--soft-white);
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.15);
    background: var(--pure-white);
}

.form-label {
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Password toggle button improvements */
.position-relative .btn-link {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
}

.position-relative .btn-link:hover {
    color: var(--primary-pink-dark) !important;
}

/* ==============================================
   CART BADGE - SHOPPING CART COUNTER
============================================== */
.cart-link {
    position: relative;
}

.cart-count {
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 1.2rem;
    height: 1.2rem;
    line-height: 1.2rem;
    text-align: center;
    background: var(--primary-pink) !important;
    color: var(--pure-white) !important;
    border: 2px solid var(--pure-white);
    box-shadow: 0 2px 4px rgba(233, 30, 99, 0.3);
    animation: pulse-cart 2s infinite;
}

.cart-count:empty {
    display: none !important;
}

/* Animation for cart badge */
@keyframes pulse-cart {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Cart badge hover effect */
.cart-link:hover .cart-count {
    background: var(--primary-pink-dark) !important;
    transform: translate(-50%, -50%) scale(1.15);
    transition: all 0.3s ease;
}

/* Cart icon bounce animation */
.cart-link i.bounce {
    animation: cartBounce 0.6s ease-in-out;
}

@keyframes cartBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==============================================
   TOAST NOTIFICATIONS
============================================== */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-luxury);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-pink);
    min-width: 300px;
    max-width: 400px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.toast-success {
    border-left-color: #28a745;
}

.toast-notification.toast-success i {
    color: #28a745;
}

.toast-notification.toast-error {
    border-left-color: #dc3545;
}

.toast-notification.toast-error i {
    color: #dc3545;
}

.toast-notification.toast-info {
    border-left-color: var(--primary-pink);
}

.toast-notification.toast-info i {
    color: var(--primary-pink);
}

.toast-notification i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-notification span {
    flex: 1;
    font-weight: 500;
    color: var(--dark-gray);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: var(--light-gray);
    color: var(--dark-gray);
}

/* Mobile responsive for toast */
@media (max-width: 768px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

/* ==============================================
   TET CELEBRATION EFFECTS - 2026 🧧🎊
============================================== */

/* Tet Banner */
.tet-banner {
    background: linear-gradient(135deg, #FF6B9D 0%, #E91E63 50%, #C2185B 100%);
    color: white;
    text-align: center;
    padding: 0.6rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
    z-index: 1001;
    height: 45px; /* Cố định chiều cao */
    display: flex;
    align-items: center;
    justify-content: center;
}

.tet-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: tetShine 3s infinite;
}

.tet-banner-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes tetShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Floating Tet Elements */
.tet-floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.tet-element {
    position: absolute;
    font-size: 1.5rem;
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    opacity: 0.8;
}

.tet-element.lantern {
    animation-name: tetFloat;
    color: #FF6B9D;
}

.tet-element.coin {
    animation-name: tetSpin;
    color: #FFD700;
}

.tet-element.flower {
    animation-name: tetFloat;
    color: #FF69B4;
}

.tet-element.firework {
    animation-name: tetSparkle;
    color: #FF1493;
}

@keyframes tetFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes tetSpin {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
        transform: translateY(90vh) rotate(180deg) scale(1);
    }
    90% {
        opacity: 0.9;
        transform: translateY(10vh) rotate(1440deg) scale(1);
    }
    100% {
        transform: translateY(-100px) rotate(1800deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes tetSparkle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(50vh) scale(1.5);
        opacity: 1;
    }
}

/* Tet Card Decorations */
.tet-card-decoration {
    position: relative;
    overflow: hidden;
}

.tet-card-decoration::before {
    content: '🧧';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: tetPulse 2s infinite;
}

.tet-card-decoration::after {
    content: '🌸';
    position: absolute;
    bottom: -10px;
    left: -10px;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: tetPulse 2s infinite 1s;
}

/* Cành đào mini cho card */
.card.tet-peach-decoration {
    position: relative;
    overflow: visible;
}

.card.tet-peach-decoration::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><path d="M5 35 Q10 30 15 25 Q20 20 25 15" stroke="%23A0522D" stroke-width="2" fill="none"/><circle cx="12" cy="28" r="3" fill="%23FFB6C1"/><circle cx="18" cy="22" r="2.5" fill="%23FF69B4"/><circle cx="22" cy="18" r="2" fill="%23FFB6C1"/></svg>') no-repeat;
    background-size: contain;
    opacity: 0.6;
    z-index: 1;
}

@keyframes tetPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Tet Button Effects */
.btn-tet-special {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFD700 100%);
    border: none;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-tet-special::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    animation: tetSparkleMove 2s infinite;
}

.btn-tet-special:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FF6B9D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

@keyframes tetSparkleMove {
    0% {
        left: -30px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 30px);
        opacity: 0;
    }
}

/* Tet Header Decoration */
.navbar.tet-decorated {
    position: fixed;
    top: 45px; /* Đặt ngay dưới banner Tết */
}

.navbar.tet-decorated::after {
    content: '🎊 CHÚC MỪNG NĂM MỚI 2026 🎊';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B9D, #FFD700);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    animation: tetGlow 2s infinite alternate;
    box-shadow: 0 2px 10px rgba(255, 107, 157, 0.4);
    display: none; /* Ẩn vì đã có banner Tết ở trên */
}

@keyframes tetGlow {
    0% {
        box-shadow: 0 2px 10px rgba(255, 107, 157, 0.4);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 157, 0.8);
    }
}

/* Tet Product Card Effects */
.product-card.tet-special {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #FF6B9D, #FFD700, #FF69B4) border-box;
    position: relative;
}

.product-card.tet-special::before {
    content: '🧧 TẾT SALE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B9D, #FFD700);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    animation: tetBounce 1s infinite alternate;
}

@keyframes tetBounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3px);
    }
}

/* ==============================================
   TET EFFECTS - HOA ĐÀO, ĐÈN LỒNG, LÌ XÌ BAY 🌸🏮🧧
============================================== */

/* Tet Snow Effect (using cherry blossoms) */
.tet-snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Hoa đào bay */
.peach-blossom {
    position: absolute;
    font-size: 1.2rem;
    color: #FFB6C1;
    animation: peachFall linear infinite;
    opacity: 0.8;
    text-shadow: 0 0 3px rgba(255, 182, 193, 0.5);
}

.peach-blossom:nth-child(odd) {
    color: #FF69B4;
    animation-duration: 8s;
}

.peach-blossom:nth-child(even) {
    color: #FFB6C1;
    animation-duration: 12s;
}

.peach-blossom:nth-child(3n) {
    color: #FFC0CB;
    animation-duration: 10s;
}

@keyframes peachFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Đèn lồng bay */
.floating-lantern {
    position: absolute;
    font-size: 2rem;
    animation: lanternFloat linear infinite;
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6));
}

.floating-lantern:nth-child(odd) {
    color: #FF6B9D;
    animation-duration: 15s;
}

.floating-lantern:nth-child(even) {
    color: #FF1493;
    animation-duration: 18s;
}

.floating-lantern:nth-child(3n) {
    color: #DC143C;
    animation-duration: 20s;
}

@keyframes lanternFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    25% {
        transform: translateY(75vh) translateX(20px) rotate(5deg);
    }
    50% {
        transform: translateY(50vh) translateX(-15px) rotate(-3deg);
    }
    75% {
        transform: translateY(25vh) translateX(25px) rotate(7deg);
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(-100px) translateX(-10px) rotate(0deg);
        opacity: 0;
    }
}

/* Lì xì bay */
.flying-money {
    position: absolute;
    font-size: 1.5rem;
    animation: moneyFly linear infinite;
    opacity: 0.85;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.flying-money:nth-child(odd) {
    color: #FFD700;
    animation-duration: 12s;
}

.flying-money:nth-child(even) {
    color: #FFA500;
    animation-duration: 14s;
}

.flying-money:nth-child(3n) {
    color: #FF8C00;
    animation-duration: 16s;
}

@keyframes moneyFly {
    0% {
        transform: translateY(100vh) translateX(-50px) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
        transform: translateY(90vh) translateX(-30px) rotate(45deg) scale(1);
    }
    30% {
        transform: translateY(70vh) translateX(40px) rotate(180deg) scale(1.2);
    }
    50% {
        transform: translateY(50vh) translateX(-20px) rotate(270deg) scale(1);
    }
    70% {
        transform: translateY(30vh) translateX(60px) rotate(360deg) scale(1.1);
    }
    90% {
        opacity: 0.85;
        transform: translateY(10vh) translateX(-10px) rotate(450deg) scale(0.8);
    }
    100% {
        transform: translateY(-100px) translateX(30px) rotate(540deg) scale(0.3);
        opacity: 0;
    }
}

/* Hiệu ứng pháo hoa mini */
.mini-firework {
    position: absolute;
    font-size: 1rem;
    animation: fireworkBurst linear infinite;
    opacity: 0.7;
}

.mini-firework:nth-child(odd) {
    color: #FF69B4;
    animation-duration: 6s;
}

.mini-firework:nth-child(even) {
    color: #FF1493;
    animation-duration: 8s;
}

.mini-firework:nth-child(3n) {
    color: #FFD700;
    animation-duration: 7s;
}

@keyframes fireworkBurst {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    20% {
        transform: translateY(80vh) scale(1);
        opacity: 0.7;
    }
    40% {
        transform: translateY(60vh) scale(1.5);
        opacity: 1;
    }
    60% {
        transform: translateY(40vh) scale(2);
        opacity: 0.8;
    }
    80% {
        transform: translateY(20vh) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-50px) scale(0.5);
        opacity: 0;
    }
}

/* Container cho tất cả hiệu ứng Tết */
.tet-effects-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Hiệu ứng cành đào ở góc */
.peach-branch {
    position: fixed;
    top: 10%;
    right: -50px;
    width: 200px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><path d="M50 300 Q80 250 100 200 Q120 150 140 100 Q160 50 180 0" stroke="%23A0522D" stroke-width="4" fill="none"/><circle cx="70" cy="270" r="8" fill="%23FFB6C1" opacity="0.8"/><circle cx="90" cy="240" r="6" fill="%23FF69B4" opacity="0.9"/><circle cx="110" cy="210" r="7" fill="%23FFB6C1" opacity="0.8"/><circle cx="130" cy="180" r="5" fill="%23FF69B4" opacity="0.9"/><circle cx="150" cy="150" r="6" fill="%23FFC0CB" opacity="0.8"/><circle cx="170" cy="120" r="4" fill="%23FF69B4" opacity="0.9"/><circle cx="185" cy="90" r="5" fill="%23FFB6C1" opacity="0.8"/><circle cx="195" cy="60" r="3" fill="%23FF69B4" opacity="0.9"/><circle cx="200" cy="30" r="4" fill="%23FFC0CB" opacity="0.8"/></svg>') no-repeat;
    background-size: contain;
    opacity: 0.6;
    animation: branchSway 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.peach-branch-left {
    position: fixed;
    top: 15%;
    left: -50px;
    width: 200px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><path d="M150 300 Q120 250 100 200 Q80 150 60 100 Q40 50 20 0" stroke="%23A0522D" stroke-width="4" fill="none"/><circle cx="130" cy="270" r="8" fill="%23FFB6C1" opacity="0.8"/><circle cx="110" cy="240" r="6" fill="%23FF69B4" opacity="0.9"/><circle cx="90" cy="210" r="7" fill="%23FFB6C1" opacity="0.8"/><circle cx="70" cy="180" r="5" fill="%23FF69B4" opacity="0.9"/><circle cx="50" cy="150" r="6" fill="%23FFC0CB" opacity="0.8"/><circle cx="30" cy="120" r="4" fill="%23FF69B4" opacity="0.9"/><circle cx="15" cy="90" r="5" fill="%23FFB6C1" opacity="0.8"/><circle cx="5" cy="60" r="3" fill="%23FF69B4" opacity="0.9"/><circle cx="0" cy="30" r="4" fill="%23FFC0CB" opacity="0.8"/></svg>') no-repeat;
    background-size: contain;
    opacity: 0.6;
    animation: branchSway 4s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 2;
}

@keyframes branchSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

/* Hiệu ứng đèn lồng treo */
.hanging-lantern {
    position: fixed;
    top: 5%;
    font-size: 2.5rem;
    color: #FF6B9D;
    animation: lanternSwing 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.8));
    z-index: 2;
}

.hanging-lantern:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.hanging-lantern:nth-child(2) {
    right: 10%;
    animation-delay: 1s;
    color: #DC143C;
}

.hanging-lantern:nth-child(3) {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
    color: #FF1493;
}

@keyframes lanternSwing {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Hiệu ứng lì xì rơi từ trên xuống */
.lucky-money-rain {
    position: fixed;
    top: -50px;
    font-size: 1.8rem;
    color: #FFD700;
    animation: moneyRain linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    z-index: 1;
}

.lucky-money-rain:nth-child(odd) {
    animation-duration: 8s;
    color: #FFD700;
}

.lucky-money-rain:nth-child(even) {
    animation-duration: 10s;
    color: #FFA500;
}

.lucky-money-rain:nth-child(3n) {
    animation-duration: 12s;
    color: #FF8C00;
}

@keyframes moneyRain {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .peach-branch,
    .peach-branch-left {
        width: 120px;
        height: 180px;
        opacity: 0.4;
    }
    
    .hanging-lantern {
        font-size: 1.8rem;
    }
    
    .peach-blossom,
    .floating-lantern,
    .flying-money,
    .mini-firework,
    .lucky-money-rain {
        font-size: 0.8rem;
    }
    
    .floating-lantern {
        font-size: 1.2rem;
    }
    
    .lucky-money-rain {
        font-size: 1.2rem;
    }
}

/* Tắt hiệu ứng cho thiết bị có hiệu năng thấp */
@media (prefers-reduced-motion: reduce) {
    .peach-blossom,
    .floating-lantern,
    .flying-money,
    .mini-firework,
    .lucky-money-rain,
    .peach-branch,
    .peach-branch-left,
    .hanging-lantern {
        animation: none;
        opacity: 0.3;
    }
}

/* ==============================================
   ADDITIONAL TET EFFECTS - ENHANCED
============================================== */

/* Tet Snowflake Effect */
.tet-snowflake {
    position: absolute;
    font-size: 1rem;
    animation: tetSnowFall linear infinite;
    opacity: 0.7;
    color: #FFB6C1;
}

@keyframes tetSnowFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Petal Effect */
.petal {
    position: absolute;
    font-size: 0.8rem;
    animation: petalFall linear infinite;
    opacity: 0.6;
    color: #FF69B4;
}

@keyframes petalFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(180deg);
        opacity: 0;
    }
}

/* Golden Coin Effect */
.golden-coin {
    position: absolute;
    font-size: 1.2rem;
    animation: coinFall linear infinite;
    opacity: 0.8;
    color: #FFD700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

@keyframes coinFall {
    0% {
        transform: translateY(-100px) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateY(-50px) rotate(90deg) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(90vh) rotate(720deg) scale(1);
    }
    100% {
        transform: translateY(100vh) rotate(900deg) scale(0.3);
        opacity: 0;
    }
}

/* Dragon Effect */
.dragon {
    position: absolute;
    font-size: 3rem;
    animation: dragonFly 15s linear infinite;
    opacity: 0.9;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    top: 20%;
    left: -200px;
}

@keyframes dragonFly {
    0% {
        transform: translateX(-200px) translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    25% {
        transform: translateX(25vw) translateY(-50px) rotate(5deg);
    }
    50% {
        transform: translateX(50vw) translateY(50px) rotate(-5deg);
    }
    75% {
        transform: translateX(75vw) translateY(-30px) rotate(3deg);
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateX(calc(100vw + 200px)) translateY(0px) rotate(0deg);
        opacity: 0;
    }
}

/* Golden Leaf Effect */
.golden-leaf {
    position: absolute;
    font-size: 1rem;
    animation: leafFall linear infinite;
    opacity: 0.7;
    color: #FFA500;
}

@keyframes leafFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translateY(50vh) rotate(180deg);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Firework Effect */
.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: fireworkSpark 1.5s ease-out forwards;
}

/* Confetti Effect */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    animation: confettiFall linear infinite;
    opacity: 0.8;
}

.confetti.red {
    background: #FF6B9D;
}

.confetti.gold {
    background: #FFD700;
}

.confetti.pink {
    background: #FF69B4;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Click Spark Effect */
.spark {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: sparkFade 1s ease-out forwards;
}

@keyframes sparkFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Scroll Reveal Effect */
.tet-scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.tet-scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Magic Button Effect */
.btn-tet-magic {
    position: relative;
    overflow: hidden;
}

.btn-tet-magic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-tet-magic:hover::before {
    left: 100%;
}

/* Toast Message */
.toast-message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: var(--shadow-luxury);
    animation: toastSlideIn 0.3s ease-out;
}

.toast-message.toast-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.toast-message.toast-error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}

.toast-message.toast-info {
    background: linear-gradient(135deg, var(--primary-pink), #FF6B9D);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Peach Branch Decorations */
.peach-branch-top-left,
.peach-branch-top-right,
.peach-branch-bottom-left,
.peach-branch-bottom-right {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.peach-branch-top-left {
    top: 10%;
    left: -30px;
    transform: rotate(-30deg);
}

.peach-branch-top-right {
    top: 10%;
    right: -30px;
    transform: rotate(30deg);
}

.peach-branch-bottom-left {
    bottom: 10%;
    left: -20px;
    transform: rotate(30deg);
}

.peach-branch-bottom-right {
    bottom: 10%;
    right: -20px;
    transform: rotate(-30deg);
}

.peach-flowers-left,
.peach-flowers-right,
.peach-flowers-bottom {
    position: relative;
}

.peach-flower {
    position: absolute;
    font-size: 1.2rem;
    animation: peachBloom 3s ease-in-out infinite alternate;
}

.peach-flower.f1 { top: 0px; left: 20px; animation-delay: 0s; }
.peach-flower.f2 { top: 30px; left: 40px; animation-delay: 0.5s; }
.peach-flower.f3 { top: 60px; left: 25px; animation-delay: 1s; }
.peach-flower.f4 { top: 90px; left: 45px; animation-delay: 1.5s; }
.peach-flower.f5 { top: 120px; left: 30px; animation-delay: 2s; }

.peach-flower.fb1 { top: 0px; left: 15px; animation-delay: 0s; }
.peach-flower.fb2 { top: 25px; left: 35px; animation-delay: 0.7s; }
.peach-flower.fb3 { top: 50px; left: 20px; animation-delay: 1.4s; }

@keyframes peachBloom {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Tet Lanterns */
.tet-lanterns {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.lantern {
    position: absolute;
    font-size: 2rem;
    animation: lanternGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6));
}

.lantern.l1 { top: 20px; left: 10%; animation-delay: 0s; color: #FF6B9D; }
.lantern.l2 { top: 30px; left: 30%; animation-delay: 0.4s; color: #DC143C; }
.lantern.l3 { top: 15px; left: 50%; animation-delay: 0.8s; color: #FF1493; }
.lantern.l4 { top: 25px; left: 70%; animation-delay: 1.2s; color: #FF6B9D; }
.lantern.l5 { top: 35px; left: 90%; animation-delay: 1.6s; color: #DC143C; }

@keyframes lanternGlow {
    0% {
        filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6));
        transform: translateY(0px);
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(255, 107, 157, 1));
        transform: translateY(-5px);
    }
}

/* ==============================================
   TET EFFECTS - ADDITIONAL ANIMATIONS
============================================== */

/* Tet Snowflake Effect */
.tet-snowflake {
    position: absolute;
    color: #FFB6C1;
    font-size: 1rem;
    animation: tetSnowfall linear infinite;
    opacity: 0.7;
}

@keyframes tetSnowfall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tet-banner {
        height: 40px;
        padding: 0.5rem 0.5rem;
    }
    
    .tet-banner-text {
        font-size: 0.8rem;
    }
    
    .navbar.tet-decorated::after {
        font-size: 0.65rem;
        padding: 0.2rem 0.75rem;
        display: none; /* Ẩn trên mobile */
    }
    
    .tet-element {
        font-size: 1.2rem;
    }
    
    .page-content {
        padding-top: 6.5rem; /* Giảm padding trên mobile */
    }
    
    .navbar {
        top: 40px; /* Điều chỉnh cho banner nhỏ hơn trên mobile */
    }
    
    .navbar.tet-decorated {
        top: 40px;
    }
}

@media (max-width: 480px) {
    .tet-banner-text {
        font-size: 0.7rem;
    }
    
    .tet-banner {
        height: 35px;
    }
    
    .navbar {
        top: 35px;
    }
    
    .navbar.tet-decorated {
        top: 35px;
    }
    
    .page-content {
        padding-top: 6rem;
    }
}

/* ==============================================
   CÀNH ĐÀO TRANG TRÍ TẾT 🌸
============================================== */

/* Cành đào góc trái trên */
.peach-branch-top-left {
    position: fixed;
    top: 45px;
    left: 0;
    width: 200px;
    height: 150px;
    pointer-events: none;
    z-index: 999;
    opacity: 0.9;
}

.peach-branch-top-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, #8B4513, #A0522D);
    border-radius: 2px;
    transform: rotate(25deg);
    transform-origin: top left;
}

.peach-branch-top-left::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 15px;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #8B4513, #A0522D);
    border-radius: 1px;
    transform: rotate(45deg);
    transform-origin: top left;
}

/* Hoa đào trên cành trái */
.peach-flowers-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.peach-flower {
    position: absolute;
    font-size: 1.2rem;
    animation: peachBloom 3s infinite alternate;
}

.peach-flower.f1 { top: 20px; left: 10px; animation-delay: 0s; }
.peach-flower.f2 { top: 40px; left: 25px; animation-delay: 0.5s; }
.peach-flower.f3 { top: 60px; left: 15px; animation-delay: 1s; }
.peach-flower.f4 { top: 35px; left: 35px; animation-delay: 1.5s; }
.peach-flower.f5 { top: 55px; left: 40px; animation-delay: 2s; }

/* Cành đào góc phải trên */
.peach-branch-top-right {
    position: fixed;
    top: 45px;
    right: 0;
    width: 200px;
    height: 150px;
    pointer-events: none;
    z-index: 999;
    opacity: 0.9;
    transform: scaleX(-1);
}

.peach-branch-top-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, #8B4513, #A0522D);
    border-radius: 2px;
    transform: rotate(25deg);
    transform-origin: top left;
}

.peach-branch-top-right::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 15px;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #8B4513, #A0522D);
    border-radius: 1px;
    transform: rotate(45deg);
    transform-origin: top left;
}

/* Hoa đào trên cành phải */
.peach-flowers-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
}

/* Cành đào góc trái dưới */
.peach-branch-bottom-left {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 180px;
    height: 120px;
    pointer-events: none;
    z-index: 999;
    opacity: 0.8;
    transform: rotate(180deg);
}

.peach-branch-bottom-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, #8B4513, #A0522D);
    border-radius: 2px;
    transform: rotate(25deg);
    transform-origin: top left;
}

/* Cành đào góc phải dưới */
.peach-branch-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 0;
    width: 180px;
    height: 120px;
    pointer-events: none;
    z-index: 999;
    opacity: 0.8;
    transform: rotate(180deg) scaleX(-1);
}

.peach-branch-bottom-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, #8B4513, #A0522D);
    border-radius: 2px;
    transform: rotate(25deg);
    transform-origin: top left;
}

/* Hoa đào dưới */
.peach-flowers-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.peach-flower.fb1 { top: 15px; left: 8px; animation-delay: 0.2s; }
.peach-flower.fb2 { top: 30px; left: 20px; animation-delay: 0.7s; }
.peach-flower.fb3 { top: 45px; left: 12px; animation-delay: 1.2s; }

/* Animation cho hoa đào */
@keyframes peachBloom {
    0% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }
}

/* Cánh hoa rơi */
.falling-petals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    font-size: 0.8rem;
    color: #FFB6C1;
    animation: petalFall linear infinite;
    opacity: 0.8;
}

@keyframes petalFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive cho cành đào */
@media (max-width: 768px) {
    .peach-branch-top-left,
    .peach-branch-top-right {
        width: 150px;
        height: 120px;
        top: 40px;
    }
    
    .peach-branch-bottom-left,
    .peach-branch-bottom-right {
        width: 120px;
        height: 100px;
    }
    
    .peach-flower {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .peach-branch-top-left,
    .peach-branch-top-right {
        width: 120px;
        height: 100px;
        top: 35px;
    }
    
    .peach-branch-bottom-left,
    .peach-branch-bottom-right {
        width: 100px;
        height: 80px;
    }
    
    .peach-flower {
        font-size: 0.9rem;
    }
}

/* ==============================================
   THÊM NHIỀU HIỆU ỨNG TẾT ĐẶC SẮC 🎊🧧🌸
============================================== */

/* Đèn lồng đỏ treo */
.tet-lanterns {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 998;
}

.lantern {
    position: absolute;
    font-size: 2rem;
    animation: lanternSwing 4s ease-in-out infinite;
    transform-origin: top center;
}

.lantern.l1 { left: 15%; animation-delay: 0s; }
.lantern.l2 { left: 35%; animation-delay: 1s; }
.lantern.l3 { left: 55%; animation-delay: 2s; }
.lantern.l4 { left: 75%; animation-delay: 0.5s; }
.lantern.l5 { left: 85%; animation-delay: 1.5s; }

@keyframes lanternSwing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* Pháo hoa nổ */
.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: fireworkExplode 2s ease-out forwards;
}

@keyframes fireworkExplode {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(20);
        opacity: 0.8;
    }
    100% {
        transform: scale(40);
        opacity: 0;
    }
}

/* Tiền vàng bay */
.golden-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.golden-coin {
    position: absolute;
    font-size: 1.5rem;
    color: #FFD700;
    animation: coinFloat 8s linear infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

@keyframes coinFloat {
    0% {
        transform: translateY(100vh) rotateY(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotateY(720deg);
        opacity: 0;
    }
}

/* Rồng vàng bay */
.dragon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.dragon {
    position: absolute;
    font-size: 3rem;
    animation: dragonFly 15s linear infinite;
    opacity: 0.8;
}

@keyframes dragonFly {
    0% {
        left: -200px;
        top: 20%;
        transform: rotate(0deg);
    }
    25% {
        left: 25%;
        top: 40%;
        transform: rotate(10deg);
    }
    50% {
        left: 50%;
        top: 60%;
        transform: rotate(-5deg);
    }
    75% {
        left: 75%;
        top: 30%;
        transform: rotate(15deg);
    }
    100% {
        left: 120%;
        top: 50%;
        transform: rotate(0deg);
    }
}

/* Lá vàng rơi */
.golden-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.golden-leaf {
    position: absolute;
    font-size: 1.2rem;
    color: #DAA520;
    animation: leafFall 6s linear infinite;
    opacity: 0.7;
}

@keyframes leafFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Hiệu ứng hover cho buttons */
.btn-tet-magic {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #FF6B9D, #FFD700, #FF69B4, #FF6B9D);
    background-size: 400% 400%;
    animation: tetMagicGradient 3s ease infinite;
    border: none;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-tet-magic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-tet-magic:hover::before {
    left: 100%;
}

@keyframes tetMagicGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hiệu ứng click tạo pháo hoa */
.click-firework {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: sparkFly 1s ease-out forwards;
}

@keyframes sparkFly {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Hiệu ứng scroll xuất hiện */
.tet-scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.tet-scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hiệu ứng typing cho text */
.tet-typing-text {
    overflow: hidden;
    border-right: 3px solid #FF6B9D;
    white-space: nowrap;
    animation: typing 4s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #FF6B9D; }
}

/* Hiệu ứng confetti */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    animation: confettiFall 3s linear infinite;
}

.confetti.red { background: #FF6B9D; }
.confetti.gold { background: #FFD700; }
.confetti.pink { background: #FF69B4; }

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive cho hiệu ứng mới */
@media (max-width: 768px) {
    .tet-lanterns {
        top: 40px;
        height: 80px;
    }
    
    .lantern {
        font-size: 1.5rem;
    }
    
    .dragon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lantern {
        font-size: 1.2rem;
    }
    
    .dragon {
        font-size: 1.5rem;
    }
    
    .golden-coin {
        font-size: 1.2rem;
    }
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
}

.login-header {
    text-align: center;
    margin-bottom: 3rem;
}

.login-title {
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Orders Page */
.order-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-pink);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-pink);
}

.order-card:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.order-status {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.status-pending {
    background: var(--rose-gold-light);
    color: var(--primary-pink-dark);
}

.status-processing {
    background: var(--primary-pink-lighter);
    color: var(--primary-pink-dark);
}

.status-shipped {
    background: #F48FB1;
    color: var(--pure-white);
}

.status-delivered {
    background: var(--primary-pink);
    color: var(--pure-white);
}

.status-cancelled {
    background: #C2185B;
    color: var(--pure-white);
}

/* Admin Dashboard */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--gradient-champagne);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-luxury);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Cart Styles */
.cart-item {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cart-summary {
    background: var(--gradient-rose);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 2rem;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 1rem;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .notification-bell {
        display: none !important;
    }
    
    .page-content {
        padding-top: 0;
    }
    
    .container {
        box-shadow: none;
        background: white;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* ==============================================
   ENHANCED HEADER EFFECTS - WHITE CLEAN
============================================== */

/* Ultra compact container */
.navbar .container {
    padding: 0 1rem;
}

/* Tối ưu cho navbar items */
.navbar-nav {
    align-items: center;
}

/* Cart badge styling */
.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-pink);
    color: var(--pure-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

/* Icon sizing trong nav links */
.navbar-nav .nav-link i {
    font-size: 1rem;
    margin-right: 0.5rem;
    display: inline-block;
    color: var(--primary-pink);
}

/* Giỏ hàng chỉ hiển thị icon */
.navbar-nav .nav-link.cart-link {
    padding: 0.75rem !important;
    min-width: 50px;
}

.navbar-nav .nav-link.cart-link i {
    font-size: 1.2rem;
    margin-right: 0;
    color: var(--primary-pink);
}

.navbar-nav .nav-link.cart-link .cart-text {
    display: none;
}

/* Dropdown toggle arrow nhỏ hơn */
.dropdown-toggle::after {
    font-size: 0.6rem;
    margin-left: 0.3rem;
}

/* Navbar actions container */
.navbar-actions {
    gap: 0.75rem !important;
}

.navbar-actions .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.2;
    border-radius: var(--border-radius);
    font-weight: 500;
}

/* Auth buttons styling */
.btn-outline-primary {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-pink);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary {
    background: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: var(--primary-pink-dark);
    border-color: var(--primary-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

/* User menu dropdown styling */
.user-menu .btn {
    background: var(--primary-pink-lighter);
    border: 1px solid var(--primary-pink);
    color: var(--primary-pink-dark);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    line-height: 1.2;
}

.user-menu .btn:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--pure-white);
    transform: translateY(-1px);
}

.user-menu .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Enhanced dropdown styling */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-luxury);
    background: var(--pure-white);
    padding: 1rem 0;
    backdrop-filter: blur(15px);
    margin-top: 0.5rem;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--pure-white);
    filter: drop-shadow(0 -2px 4px rgba(0,0,0,0.1));
}

/* Compact notification dropdown */
.notification-dropdown {
    min-width: 300px;
    max-height: 400px;
    overflow-y: auto;
}

.notification-dropdown .dropdown-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.notification-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.notification-dropdown .dropdown-item:hover {
    background: var(--soft-pink);
    transform: translateX(3px);
}

/* Enhanced mobile navbar */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: var(--border-radius-large);
        margin-top: 0.5rem; /* Giảm margin */
        padding: 0.75rem; /* Giảm padding */
        box-shadow: var(--shadow-medium);
        backdrop-filter: blur(15px);
    }
    
    .navbar-collapse .navbar-nav .nav-link {
        color: var(--primary-pink-dark) !important;
        padding: 0.5rem 0.75rem !important;
        border-radius: var(--border-radius);
        margin: 0.125rem 0;
        font-size: 0.85rem;
        justify-content: flex-start;
    }
    
    .navbar-collapse .navbar-nav .nav-link i {
        font-size: 0.85rem !important;
        margin-right: 0.5rem;
    }
    
    .navbar-collapse .navbar-nav .nav-link:hover {
        background: var(--soft-pink);
        color: var(--primary-pink) !important;
    }
    
    .navbar-actions {
        margin-top: 0.75rem; /* Giảm margin */
        padding-top: 0.75rem; /* Giảm padding */
        border-top: 1px solid var(--light-gray);
        justify-content: center;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.navbar-nav .nav-link:focus,
.btn:focus,
.notification-bell:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Loading animation for navbar brand */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pure-white);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}
/* ==============================================
   ENHANCED NAVIGATION HOVER EFFECTS
============================================== */

/* Enhanced hover effect cho navigation */
.navbar-nav .nav-link:hover {
    background: var(--primary-pink-lighter);
    color: var(--primary-pink-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.1);
    color: var(--primary-pink-dark);
}
/* Mobile navbar collapse styling */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--pure-white);
        border-radius: var(--border-radius-large);
        margin-top: 0.75rem;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--light-gray);
    }
    
    .navbar-collapse .navbar-nav .nav-link {
        color: var(--dark-gray) !important;
        padding: 0.75rem 1rem !important;
        border-radius: var(--border-radius);
        margin: 0.25rem 0;
        font-size: 1rem;
        justify-content: flex-start;
    }
    
    .navbar-collapse .navbar-nav .nav-link:hover {
        background: var(--primary-pink-lighter);
        color: var(--primary-pink-dark) !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link i {
        font-size: 1rem !important;
        margin-right: 0.5rem;
        color: var(--primary-pink);
    }
    
    .navbar-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--light-gray);
        justify-content: center;
    }
}
/* ==============================================
   HERO BANNER SECTION
============================================== */
.hero-banner-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Chiều cao banner */
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Banner overlay cho text trên ảnh */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(233, 30, 99, 0.7) 0%, 
        rgba(233, 30, 99, 0.4) 50%, 
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    opacity: 0.95;
}

.banner-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-large);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.banner-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.banner-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

/* Responsive Banner */
@media (max-width: 768px) {
    .hero-banner-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .banner-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-banner-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-content {
        padding: 1rem;
    }
}

/* Banner chỉ có hình ảnh (không có overlay text) */
.hero-banner-section.image-only .banner-overlay {
    display: none;
}

.hero-banner-section.image-only {
    margin-bottom: 2rem;
}

/* Banner với hiệu ứng parallax (tùy chọn) */
.hero-banner-section.parallax .hero-banner-image {
    transform: scale(1.1);
    transition: transform 0.5s ease-out;
}

.hero-banner-section.parallax:hover .hero-banner-image {
    transform: scale(1.05);
}

/* ==============================================
   ORDER DETAILS PAGE - LUXURY LAYOUT
============================================== */

/* Order Details Page Container */
.order-details-page {
    padding: 2rem 0;
    min-height: 70vh;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.order-container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.15);
    padding: 3rem;
    margin: 0 auto 2rem auto;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(233, 30, 99, 0.1);
    overflow: visible;
    max-width: 1200px;
    width: 95%;
}

.order-details-page .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    position: relative;
    z-index: 2;
}

.order-details-page .col-lg-8 {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.order-details-page .col-lg-4 {
    position: relative;
    z-index: 3;
    padding: 0 15px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

/* Breadcrumb Styling */
.order-breadcrumb {
    margin-bottom: 2rem;
}

.order-breadcrumb .breadcrumb {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.order-breadcrumb .breadcrumb-item a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.order-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-pink-dark);
    text-decoration: underline;
}

.order-breadcrumb .breadcrumb-item.active {
    color: var(--text-gray);
    font-weight: 600;
}

/* Order Header Section */
.order-header-section {
    background: linear-gradient(135deg, var(--primary-pink-lighter) 0%, var(--pure-white) 100%);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.order-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
}

.order-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.order-date {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-large);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.status-badge.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.status-badge.status-pending {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #E65100;
    border: 2px solid #FFB74D;
}

.status-badge.status-processing {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #0D47A1;
    border: 2px solid #42A5F5;
}

.status-badge.status-shipped {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #4A148C;
    border: 2px solid #AB47BC;
}

.status-badge.status-delivered {
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    color: #1B5E20;
    border: 2px solid #66BB6A;
}

.status-badge.status-cancelled {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    color: #B71C1C;
    border: 2px solid #EF5350;
}

/* Order Section */
.order-section {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    clear: both;
}

.order-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-pink-lighter);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-pink);
}

/* Order Items */
.order-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--warm-gray);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.order-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-pink);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-item:hover {
    background: var(--pure-white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.order-item:hover::before {
    opacity: 1;
}

/* Item Image */
.item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--light-gray);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
}

.no-image {
    color: var(--primary-pink-light);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Item Details */
.item-details {
    flex: 1;
}

.item-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.item-price {
    font-size: 1.1rem;
    color: var(--primary-pink);
    font-weight: 600;
    font-family: var(--font-heading);
}

.item-quantity {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    background: var(--primary-pink-lighter);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
}

/* Item Total */
.item-total {
    text-align: right;
    min-width: 120px;
}

.total-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
}

/* Order Summary Card */
.order-summary-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: sticky;
    top: 2rem;
    height: fit-content;
    z-index: 10;
    margin-bottom: 2rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-pink-lighter);
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-pink);
}

/* Summary Section */
.summary-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.summary-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item .label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 1rem;
    flex: 1;
}

.summary-item .value {
    font-weight: 600;
    color: var(--dark-gray);
    text-align: right;
    flex: 1;
    font-family: var(--font-heading);
}

.summary-item.total {
    border-top: 2px solid var(--primary-pink);
    padding-top: 1rem;
    margin-top: 1rem;
}

.summary-item.total .label {
    font-size: 1.3rem;
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
}

.summary-item.total .value {
    font-size: 1.5rem;
    color: var(--primary-pink);
    font-weight: 700;
}

/* Order Actions */
.order-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-block:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-block.btn-primary {
    background: var(--primary-pink);
    color: var(--pure-white);
    border-color: var(--primary-pink);
}

.btn-block.btn-primary:hover {
    background: var(--primary-pink-dark);
    border-color: var(--primary-pink-dark);
    color: var(--pure-white);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.btn-block.btn-outline-success {
    background: transparent;
    color: #28a745;
    border-color: #28a745;
}

.btn-block.btn-outline-success:hover {
    background: #28a745;
    color: var(--pure-white);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.btn-block.btn-outline-danger {
    background: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

.btn-block.btn-outline-danger:hover {
    background: #dc3545;
    color: var(--pure-white);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.btn-block.btn-outline-primary {
    background: transparent;
    color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.btn-block.btn-outline-primary:hover {
    background: var(--primary-pink);
    color: var(--pure-white);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

/* Support Card */
.support-card {
    background: linear-gradient(135deg, var(--primary-pink-lighter) 0%, var(--pure-white) 100%);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 5;
}

.support-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: none;
    padding-bottom: 0;
}

.support-card .card-title::after {
    display: none;
}

.support-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-actions .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-actions .btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* Enhanced Alert Messages */
.alert {
    border: none;
    border-radius: var(--border-radius-large);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentColor;
}

.alert-success {
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    color: #1B5E20;
    border-left-color: #4CAF50;
}

.alert-danger {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    color: #B71C1C;
    border-left-color: #F44336;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .order-summary-card {
        position: static;
        margin-bottom: 2rem;
    }
    
    .order-container {
        padding: 1.5rem;
        width: 98%;
    }
}

@media (max-width: 992px) {
    .order-details-page .row {
        flex-direction: column-reverse;
    }
    
    .order-details-page .col-lg-8,
    .order-details-page .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .order-summary-card {
        margin-bottom: 2rem;
        position: static;
    }
    
    .order-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }
    
    .item-total {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--light-gray);
    }
    
    .order-details-page {
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .order-details-page {
        padding: 1rem 0;
    }
    
    .order-container {
        padding: 2rem;
        margin: 0 auto;
        width: 95%;
    }
    
    .order-header-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .order-title {
        font-size: 2rem;
    }
    
    .order-section {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .order-summary-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
        position: static;
    }
    
    .order-item {
        grid-template-columns: 80px 1fr;
        padding: 1rem;
    }
    
    .item-image {
        width: 80px;
        height: 80px;
    }
    
    .item-name {
        font-size: 1.1rem;
    }
    
    .support-actions {
        flex-direction: column;
    }
    
    .support-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .order-container {
        padding: 1rem;
        margin: 0 auto;
        width: 98%;
    }
    
    .order-header-section {
        padding: 1.5rem;
    }
    
    .order-title {
        font-size: 1.8rem;
    }
    
    .order-section {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .order-summary-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .order-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem;
    }
    
    .item-image {
        justify-self: center;
        width: 100px;
        height: 100px;
    }
    
    .item-details {
        text-align: center;
    }
    
    .item-meta {
        justify-content: center;
    }
    
    .item-total {
        text-align: center;
        border-top: 1px solid var(--light-gray);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .summary-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .summary-item .value {
        text-align: center;
    }
    
    .order-header-section .row {
        flex-direction: column;
        text-align: center;
    }
    
    .order-header-section .col-md-4 {
        margin-top: 1rem;
    }
}

/* Loading Animation for Buttons */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Hover Effects */
.order-item:hover .item-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.order-item:hover .item-name {
    color: var(--primary-pink);
}

.order-item:hover .total-price {
    color: var(--primary-pink-dark);
    transform: scale(1.05);
}

/* Smooth Transitions */
.order-item,
.order-section,
.order-summary-card,
.support-card,
.btn-block,
.item-image,
.item-name,
.total-price {
    transition: all 0.3s ease;
}
/* ==============================================
   ORDER TIMELINE - LUXURY DESIGN
============================================== */

.order-timeline {
    position: relative;
    padding: 2rem 0;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-pink-lighter) 0%, var(--primary-pink) 50%, var(--primary-pink-lighter) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-left: 80px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.completed {
    opacity: 1;
}

.timeline-item.active {
    opacity: 1;
    animation: pulse 2s infinite;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    border: 3px solid var(--light-gray);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-pink);
    color: var(--pure-white);
    border-color: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.timeline-item.active .timeline-icon {
    background: var(--primary-pink-lighter);
    color: var(--primary-pink-dark);
    border-color: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
    animation: pulse-icon 2s infinite;
}

.timeline-content {
    flex: 1;
    background: var(--pure-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--light-gray);
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-content {
    border-color: var(--primary-pink-lighter);
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--primary-pink-lighter) 100%);
}

.timeline-item.active .timeline-content {
    border-color: var(--primary-pink);
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--primary-pink-lighter) 100%);
    box-shadow: var(--shadow-medium);
}

.timeline-content h6 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.timeline-item.completed .timeline-content h6 {
    color: var(--primary-pink-dark);
}

.timeline-item.completed .timeline-content p {
    color: var(--dark-gray);
}

/* Timeline Animations */
@keyframes pulse-icon {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
    }
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .order-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1rem;
        margin-left: 0.75rem;
    }
    
    .timeline-content h6 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .order-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 2rem;
    }
    
    .timeline-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 0.75rem;
        margin-left: 0.5rem;
    }
}
/* ==============================================
   FIX OVERLAP ISSUES - ORDER DETAILS
============================================== */

/* Ensure proper spacing and no overlaps */
.order-container {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.order-details-page .row {
    margin: 0;
    padding: 0;
}

.order-details-page .col-lg-8,
.order-details-page .col-lg-4 {
    padding: 0 15px;
}

/* Fix sticky positioning issues */
@media (min-width: 992px) {
    .order-summary-card {
        position: sticky;
        top: 2rem;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }
}

@media (max-width: 991px) {
    .order-summary-card {
        position: static !important;
        top: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
}

/* Ensure buttons don't overlap */
.order-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.btn-block {
    position: relative;
    z-index: 3;
    margin-bottom: 0;
}

/* Fix timeline positioning */
.order-timeline {
    position: relative;
    z-index: 2;
    margin: 2rem 0;
    clear: both;
}

.timeline-item {
    position: relative;
    z-index: 3;
    margin-bottom: 2.5rem;
    clear: both;
}

/* Ensure proper spacing between sections */
.order-section + .order-section {
    margin-top: 2rem;
}

/* Fix breadcrumb positioning */
.order-breadcrumb {
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

/* Fix header positioning */
.order-header-section {
    position: relative;
    z-index: 5;
    margin-bottom: 3rem;
    clear: both;
}

/* Prevent floating issues */
.order-details-page::after {
    content: "";
    display: table;
    clear: both;
}

/* Fix support card positioning */
.support-card {
    position: relative;
    z-index: 4;
    clear: both;
    margin-top: 2rem;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .order-container {
        width: 95%;
        max-width: 95%;
        padding: 2rem;
        margin: 0 auto;
    }
    
    .order-details-page .row {
        flex-direction: column;
        width: 100%;
    }
    
    .order-details-page .col-lg-8,
    .order-details-page .col-lg-4 {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 1rem;
    }
    
    /* Ensure no sticky positioning on mobile */
    .order-summary-card {
        position: static !important;
        top: auto !important;
        transform: none !important;
    }
}

/* Fix any transform issues */
.order-item:hover,
.order-section:hover,
.order-summary-card:hover {
    transform: translateY(-2px);
    z-index: 10;
}

/* Ensure proper stacking context */
.order-details-page * {
    box-sizing: border-box;
}

/* Fix any absolute positioning issues */
.timeline-icon {
    position: absolute;
    z-index: 5;
}

.timeline-content {
    position: relative;
    z-index: 3;
}

/* Additional mobile safety */
@media (max-width: 480px) {
    .order-details-page {
        overflow-x: hidden;
    }
    
    .order-container {
        padding: 1rem;
        margin: 0 auto;
        width: 98%;
    }
    
    .order-section,
    .order-summary-card,
    .support-card {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}
/* ==============================================
   ORDERS INDEX PAGE - LUXURY LAYOUT
============================================== */

/* Orders Page Container */
.orders-page {
    padding: 2rem 0;
    min-height: 70vh;
    position: relative;
    z-index: 1;
}

.orders-page .container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    padding: 3rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    position: relative;
}

.page-header .breadcrumb {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
    margin-bottom: 2rem;
}

.page-header .breadcrumb-item a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: var(--primary-pink-dark);
    text-decoration: underline;
}

.page-header .breadcrumb-item.active {
    color: var(--text-gray);
    font-weight: 600;
}

.page-title h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-pink-lighter);
    position: relative;
}

.filter-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-pink);
}

/* Status Filters */
.status-filters {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--warm-gray);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
}

.status-filter:hover {
    background: var(--primary-pink-lighter);
    color: var(--primary-pink-dark);
    text-decoration: none;
    transform: translateX(5px);
    border-color: var(--primary-pink);
}

.status-filter.active {
    background: var(--primary-pink);
    color: var(--pure-white);
    border-color: var(--primary-pink-dark);
    box-shadow: var(--shadow-medium);
}

.status-filter.active:hover {
    background: var(--primary-pink-dark);
    color: var(--pure-white);
}

.filter-label {
    font-weight: 600;
}

.filter-count {
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
}

.status-filter.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Badge Colors for Status Dots */
.badge-warning { color: #FF6B35; }
.badge-info { color: #4ECDC4; }
.badge-primary { color: var(--primary-pink); }
.badge-success { color: #45B7D1; }
.badge-danger { color: #E74C3C; }

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-buttons .btn {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Order Card */
.order-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.order-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-pink);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-pink);
}

.order-card:hover::before {
    opacity: 1;
}

/* Order Header */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.order-info h6.order-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
}

.order-date {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-date::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-pink);
}

/* Order Status */
.order-status .status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-large);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

/* Status Badge Colors */
.status-badge.status-pending {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #E65100;
    border: 2px solid #FFB74D;
}

.status-badge.status-processing {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #0D47A1;
    border: 2px solid #42A5F5;
}

.status-badge.status-shipped {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #4A148C;
    border: 2px solid #AB47BC;
}

.status-badge.status-delivered {
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    color: #1B5E20;
    border: 2px solid #66BB6A;
}

.status-badge.status-cancelled {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    color: #B71C1C;
    border: 2px solid #EF5350;
}

/* Order Summary */
.order-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--warm-gray);
    border-radius: var(--border-radius);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item .label {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
}

.summary-item .value {
    color: var(--dark-gray);
    font-weight: 600;
    font-family: var(--font-heading);
}

.summary-item .total-amount {
    color: var(--primary-pink);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Order Actions */
.order-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-actions .btn {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.order-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.order-actions .btn-outline-primary {
    background: transparent;
    color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.order-actions .btn-outline-primary:hover {
    background: var(--primary-pink);
    color: var(--pure-white);
}

.order-actions .btn-primary {
    background: var(--primary-pink);
    color: var(--pure-white);
    border-color: var(--primary-pink);
}

.order-actions .btn-primary:hover {
    background: var(--primary-pink-dark);
    border-color: var(--primary-pink-dark);
}

.order-actions .btn-outline-danger {
    background: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

.order-actions .btn-outline-danger:hover {
    background: #dc3545;
    color: var(--pure-white);
}

/* Pagination */
.pagination-nav {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.pagination .page-item .page-link {
    color: var(--primary-pink);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    margin: 0 0.25rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-item .page-link:hover {
    background: var(--primary-pink-lighter);
    border-color: var(--primary-pink);
    color: var(--primary-pink-dark);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--pure-white);
    box-shadow: var(--shadow-medium);
}

/* No Orders State */
.no-orders {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.no-orders-icon {
    font-size: 5rem;
    color: var(--primary-pink-light);
    margin-bottom: 2rem;
}

.no-orders h4 {
    color: var(--primary-pink-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 2rem;
}

.no-orders p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.no-orders .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.no-orders .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-luxury);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .orders-page .container {
        padding: 2rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .order-summary {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .order-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .orders-page {
        padding: 1rem 0;
    }
    
    .orders-page .container {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .filters-sidebar {
        padding: 1.5rem;
    }
    
    .order-card {
        padding: 1.5rem;
    }
    
    .order-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .order-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .order-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .orders-page .container {
        padding: 1rem;
        margin: 0.25rem;
    }
    
    .page-title h1 {
        font-size: 1.6rem;
    }
    
    .filters-sidebar {
        padding: 1rem;
    }
    
    .order-card {
        padding: 1rem;
    }
    
    .order-info h6.order-number {
        font-size: 1.2rem;
    }
    
    .status-filters {
        gap: 0.5rem;
    }
    
    .status-filter {
        padding: 0.75rem 1rem;
    }
    
    .no-orders {
        padding: 3rem 1rem;
    }
    
    .no-orders-icon {
        font-size: 4rem;
    }
    
    .no-orders h4 {
        font-size: 1.6rem;
    }
}

/* Loading Animation for Cancel Button */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced Hover Effects */
.order-card:hover .order-number {
    color: var(--primary-pink);
}

.order-card:hover .total-amount {
    color: var(--primary-pink-dark);
    transform: scale(1.05);
}

/* Smooth Transitions */
.order-card,
.status-filter,
.btn,
.order-number,
.total-amount {
    transition: all 0.3s ease;
}
/* ==============================================
   ENHANCED PRODUCT CARD ANIMATIONS & EFFECTS
============================================== */

/* Loading skeleton for product cards */
.product-card-skeleton {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: pulse-skeleton 1.5s ease-in-out infinite alternate;
}

.skeleton-image {
    height: 280px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.skeleton-content {
    padding: 1.75rem;
    flex-grow: 1;
}

.skeleton-line {
    height: 12px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-line.medium {
    width: 80%;
}

.skeleton-line.long {
    width: 100%;
}

@keyframes pulse-skeleton {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

/* Enhanced product card hover effects */
.product-card-clean {
    transform-origin: center bottom;
}

.product-card-clean:hover {
    animation: cardHover 0.6s ease-out;
}

@keyframes cardHover {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.02);
    }
    100% {
        transform: translateY(-8px) scale(1);
    }
}

/* Staggered animation for product grid */
.products-grid-clean .product-card-clean {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.products-grid-clean .product-card-clean:nth-child(1) { animation-delay: 0.1s; }
.products-grid-clean .product-card-clean:nth-child(2) { animation-delay: 0.2s; }
.products-grid-clean .product-card-clean:nth-child(3) { animation-delay: 0.3s; }
.products-grid-clean .product-card-clean:nth-child(4) { animation-delay: 0.4s; }
.products-grid-clean .product-card-clean:nth-child(5) { animation-delay: 0.5s; }
.products-grid-clean .product-card-clean:nth-child(6) { animation-delay: 0.6s; }
.products-grid-clean .product-card-clean:nth-child(7) { animation-delay: 0.7s; }
.products-grid-clean .product-card-clean:nth-child(8) { animation-delay: 0.8s; }
.products-grid-clean .product-card-clean:nth-child(n+9) { animation-delay: 0.9s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced button interactions */
.add-to-cart-btn:active,
.buy-now-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Product card focus states for accessibility */
.product-card-clean:focus-within {
    outline: 2px solid var(--primary-pink);
    outline-offset: 4px;
}

/* Enhanced no image placeholder */
.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    height: 100%;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    transition: all 0.3s ease;
}

.product-card-clean:hover .no-image-placeholder {
    background: linear-gradient(135deg, var(--primary-pink-lighter) 0%, var(--blush) 100%);
    color: var(--primary-pink);
}

.no-image-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-pink-light);
    transition: all 0.3s ease;
}

.product-card-clean:hover .no-image-placeholder i {
    color: var(--primary-pink);
    transform: scale(1.1);
}

.no-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Quick view button (optional enhancement) */
.product-quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(233, 30, 99, 0.9);
    color: var(--pure-white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.product-image-box:hover .product-quick-view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.product-quick-view:hover {
    background: var(--primary-pink-dark);
    transform: translate(-50%, -50%) scale(1.2);
}

/* Enhanced search and filter styling */
.products-controls {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-large);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

/* Enhanced pagination */
.pagination-clean {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-large);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .products-grid-clean .product-card-clean {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .product-card-clean:hover {
        animation: none;
        transform: translateY(-4px);
    }
    
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Print styles for product pages */
@media print {
    .products-controls,
    .pagination-clean,
    .product-actions-clean {
        display: none !important;
    }
    
    .products-grid-clean {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .product-card-clean {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
/* ==============================================
   ENHANCED PRODUCT DETAILS PAGE
============================================== */

/* Product Details Container */
.product-details-page {
    padding: 2rem 0;
}

/* Enhanced Breadcrumb */
.product-breadcrumb {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-large);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-pink-dark);
    transform: translateX(2px);
}

.breadcrumb-item.active {
    color: var(--text-gray);
    font-weight: 600;
}

/* Enhanced Product Details Container */
.product-details-container {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 25px rgba(233, 30, 99, 0.1);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(233, 30, 99, 0.05);
}

/* Enhanced Product Images */
.product-images {
    position: sticky;
    top: 2rem;
}

.main-image {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.05);
    overflow: hidden;
    position: relative;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: var(--border-radius);
    transition: transform 0.4s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

/* Enhanced Thumbnail Images */
.thumbnail-images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--warm-gray);
    position: relative;
}

.thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(233, 30, 99, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover::before,
.thumbnail.active::before {
    opacity: 1;
}

.thumbnail.active {
    border-color: var(--primary-pink);
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: var(--pure-white);
}

/* Enhanced Product Info */
.product-info {
    padding-left: 2rem;
}

.product-category {
    display: inline-block;
    background: var(--primary-pink-lighter);
    color: var(--primary-pink-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Enhanced Product Price */
.product-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-price .current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    font-family: var(--font-heading);
}

.product-price .original-price {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(135deg, #FF6B9D 0%, var(--primary-pink) 100%);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

/* Enhanced Product Description */
.product-description {
    background: var(--blush);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-pink);
}

.product-description h6 {
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-description p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Enhanced Product Actions */
.product-actions {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

/* Enhanced Quantity Selector */
.quantity-selector {
    margin-bottom: 2rem;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pure-white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: fit-content;
}

.btn-quantity {
    background: var(--primary-pink-lighter);
    border: none;
    color: var(--primary-pink-dark);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-quantity:hover {
    background: var(--primary-pink);
    color: var(--pure-white);
}

.quantity-controls input {
    border: none;
    width: 60px;
    height: 45px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-gray);
    background: var(--pure-white);
    outline: none;
    font-size: 1.1rem;
}

/* Enhanced Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-add-cart {
    flex: 2;
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-add-cart:hover::before {
    left: 100%;
}

.btn-wishlist {
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.2);
}

/* Enhanced Product Meta */
.product-meta {
    background: var(--warm-gray);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    font-size: 1rem;
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-item strong {
    color: var(--primary-pink-dark);
    font-weight: 600;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-available {
    background: var(--primary-pink-lighter);
    color: var(--primary-pink-dark);
}

/* Enhanced Product Features */
.product-features {
    background: linear-gradient(135deg, var(--primary-pink-lighter) 0%, var(--blush) 100%);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    margin-bottom: 2rem;
}

.product-features h6 {
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.product-features li i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Enhanced Related Products */
.related-products-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: 0 4px 25px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.related-products-grid .product-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(233, 30, 99, 0.05);
}

.related-products-grid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
}

/* Enhanced No Image Large */
.no-image-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    color: var(--text-gray);
    border-radius: var(--border-radius-large);
}

.no-image-large i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--primary-pink-light);
}

.no-image-large span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Responsive Design for Product Details */
@media (max-width: 992px) {
    .product-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-price .current-price {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-add-cart,
    .btn-wishlist {
        flex: none;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .product-details-container {
        padding: 2rem;
    }
    
    .main-image {
        padding: 1rem;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-details-container {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price .current-price {
        font-size: 1.8rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   ADMIN PAGES - HEADER OVERLAP FIX
============================================== */

/* Admin pages specific padding to prevent header overlap */
.admin-orders,
.admin-products,
.admin-users,
.admin-dashboard {
    padding-top: 2rem;
    min-height: calc(100vh - 8rem);
}

/* Admin page headers */
.admin-orders .page-header,
.admin-products .page-header,
.admin-users .page-header,
.admin-dashboard .page-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

/* Admin page titles */
.admin-orders .page-title,
.admin-products .page-title,
.admin-users .page-title,
.admin-dashboard .page-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-orders .page-title i,
.admin-products .page-title i,
.admin-users .page-title i,
.admin-dashboard .page-title i {
    color: var(--primary-pink);
    font-size: 2rem;
}

/* Admin breadcrumb styling */
.admin-orders .breadcrumb,
.admin-products .breadcrumb,
.admin-users .breadcrumb,
.admin-dashboard .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.admin-orders .breadcrumb-item,
.admin-products .breadcrumb-item,
.admin-users .breadcrumb-item,
.admin-dashboard .breadcrumb-item {
    font-size: 0.95rem;
}

.admin-orders .breadcrumb-item a,
.admin-products .breadcrumb-item a,
.admin-users .breadcrumb-item a,
.admin-dashboard .breadcrumb-item a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-orders .breadcrumb-item a:hover,
.admin-products .breadcrumb-item a:hover,
.admin-users .breadcrumb-item a:hover,
.admin-dashboard .breadcrumb-item a:hover {
    color: var(--primary-pink-dark);
}

.admin-orders .breadcrumb-item.active,
.admin-products .breadcrumb-item.active,
.admin-users .breadcrumb-item.active,
.admin-dashboard .breadcrumb-item.active {
    color: var(--text-gray);
    font-weight: 600;
}

/* Admin filters card */
.filters-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
    margin-bottom: 2rem;
}

.filters-form .form-label {
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.filters-form .form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filters-form .form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

.results-info {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Admin orders table card */
.orders-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
    overflow: hidden;
}

/* Enhanced admin table styling */
.orders-card .table {
    margin: 0;
    background: transparent;
}

.orders-card .table thead th {
    background: linear-gradient(135deg, var(--primary-pink-lighter) 0%, var(--blush) 100%);
    color: var(--primary-pink-dark);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-card .table tbody td {
    padding: 1.25rem 1.5rem;
    border-color: rgba(233, 30, 99, 0.1);
    vertical-align: middle;
}

.orders-card .table tbody tr {
    transition: all 0.3s ease;
}

.orders-card .table tbody tr:hover {
    background: var(--blush);
    transform: scale(1.005);
}

/* Admin status dropdown */
.status-dropdown .status-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
}

.status-dropdown .status-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

/* Admin action buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.action-buttons .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 36px;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Customer info styling */
.customer-info strong {
    color: var(--primary-pink-dark);
    font-weight: 600;
}

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.empty-state i {
    font-size: 4rem;
    color: var(--primary-pink-light);
    margin-bottom: 1.5rem;
}

.empty-state h5 {
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Admin responsive design */
@media (max-width: 992px) {
    .admin-orders,
    .admin-products,
    .admin-users,
    .admin-dashboard {
        padding-top: 1.5rem;
    }
    
    .admin-orders .page-title,
    .admin-products .page-title,
    .admin-users .page-title,
    .admin-dashboard .page-title {
        font-size: 1.8rem;
    }
    
    .filters-card {
        padding: 1.5rem;
    }
    
    .orders-card .table thead th,
    .orders-card .table tbody td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .admin-orders,
    .admin-products,
    .admin-users,
    .admin-dashboard {
        padding-top: 1rem;
    }
    
    .admin-orders .page-header,
    .admin-products .page-header,
    .admin-users .page-header,
    .admin-dashboard .page-header {
        padding: 1.5rem;
    }
    
    .admin-orders .page-title,
    .admin-products .page-title,
    .admin-users .page-title,
    .admin-dashboard .page-title {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .filters-card {
        padding: 1rem;
    }
    
    .filters-form .row {
        gap: 1rem;
    }
    
    .filters-form .col-md-3,
    .filters-form .col-md-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .results-info {
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Mobile table responsive */
    .orders-card .table-responsive {
        border-radius: var(--border-radius-large);
    }
    
    .orders-card .table {
        font-size: 0.85rem;
    }
    
    .orders-card .table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .orders-card .table tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    .status-dropdown .status-select {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        min-width: 120px;
    }
    
    .action-buttons .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 36px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .admin-orders .container-fluid,
    .admin-products .container-fluid,
    .admin-users .container-fluid,
    .admin-dashboard .container-fluid {
        padding: 0 1rem;
    }
    
    .admin-orders .page-title,
    .admin-products .page-title,
    .admin-users .page-title,
    .admin-dashboard .page-title {
        font-size: 1.4rem;
    }
    
    .filters-card,
    .orders-card {
        margin: 0 -0.5rem 1rem;
        border-radius: var(--border-radius);
    }
    
    .empty-state {
        padding: 3rem 1rem;
    }
    
    .empty-state i {
        font-size: 3rem;
    }
    
    .empty-state h5 {
        font-size: 1.3rem;
    }
}

/* Enhanced loading states for admin */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success/Error message styling for admin */
.admin-message {
    position: fixed;
    top: 120px;
    right: 20px;
    background: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-luxury);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
    border-left: 4px solid;
    min-width: 300px;
    max-width: 400px;
    font-weight: 500;
}

.admin-message.show {
    transform: translateX(0);
}

.admin-message.success {
    border-left-color: #28a745;
    color: #155724;
    background: #d4edda;
}

.admin-message.error {
    border-left-color: #dc3545;
    color: #721c24;
    background: #f8d7da;
}

.admin-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.admin-message span {
    flex: 1;
    line-height: 1.4;
}
/* ==============================================
   BUY NOW BUTTON STYLING
============================================== */

/* Buy Now button for product details page */
.btn-buy-now {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: 2px solid #28a745;
    color: var(--pure-white);
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-buy-now:hover::before {
    left: 100%;
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
    border-color: #218838;
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-buy-now:focus {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
    border-color: #218838;
    color: var(--pure-white);
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.btn-buy-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-buy-now:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
}

/* Action buttons layout for product details */
.product-details-page .action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-top: 2rem;
}

.product-details-page .btn-add-cart {
    grid-column: 1;
    grid-row: 1;
}

.product-details-page .btn-buy-now {
    grid-column: 2;
    grid-row: 1;
}

.product-details-page .btn-wishlist {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    max-width: 200px;
}

/* Responsive design for action buttons */
@media (max-width: 768px) {
    .product-details-page .action-buttons {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .product-details-page .btn-add-cart {
        grid-column: 1;
        grid-row: 1;
    }
    
    .product-details-page .btn-buy-now {
        grid-column: 1;
        grid-row: 2;
    }
    
    .product-details-page .btn-wishlist {
        grid-column: 1;
        grid-row: 3;
        justify-self: stretch;
        max-width: none;
    }
}

/* Toast notification styling for product pages */
.toast-notification {
    position: fixed;
    top: 120px;
    right: 20px;
    background: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-luxury);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
    border-left: 4px solid;
    min-width: 300px;
    max-width: 400px;
    font-weight: 500;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.toast-success {
    border-left-color: #28a745;
    color: #155724;
    background: #d4edda;
}

.toast-notification.toast-success i {
    color: #28a745;
}

.toast-notification.toast-error {
    border-left-color: #dc3545;
    color: #721c24;
    background: #f8d7da;
}

.toast-notification.toast-error i {
    color: #dc3545;
}

.toast-notification.toast-info {
    border-left-color: var(--primary-pink);
    color: var(--primary-pink-dark);
    background: var(--primary-pink-lighter);
}

.toast-notification.toast-info i {
    color: var(--primary-pink);
}

.toast-notification i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-notification span {
    flex: 1;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.toast-close:hover {
    opacity: 1;
}

/* Mobile responsive toasts */
@media (max-width: 768px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
        top: 80px;
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

/* Enhanced button loading states */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Button focus improvements for accessibility */
.btn-add-cart:focus,
.btn-buy-now:focus,
.btn-wishlist:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Enhanced button group styling */
.action-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.action-buttons .btn i {
    font-size: 1.1rem;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.action-buttons .btn:active {
    transform: translateY(0);
}
/* ==============================================
   ORDER DETAILS PAGE - HEADER OVERLAP FIX
============================================== */

/* Order details page specific padding to prevent header overlap */
.order-details-page {
    padding-top: 2rem;
    min-height: calc(100vh - 8rem);
}

.order-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Order breadcrumb styling */
.order-breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-large);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

.order-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.order-breadcrumb .breadcrumb-item {
    font-size: 0.95rem;
}

.order-breadcrumb .breadcrumb-item a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-pink-dark);
    transform: translateX(2px);
}

.order-breadcrumb .breadcrumb-item.active {
    color: var(--text-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-breadcrumb .breadcrumb-item i {
    font-size: 0.9rem;
}

/* Order header section */
.order-header-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

.order-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-title i {
    color: var(--primary-pink);
    font-size: 2rem;
}

.order-date {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.order-date i {
    color: var(--primary-pink);
}

/* Status badge large */
.status-badge.large {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-large);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Order sections */
.order-section {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-pink-lighter);
}

.section-title i {
    color: var(--primary-pink);
    font-size: 1.3rem;
}

/* Order items styling */
.order-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--warm-gray);
    border-radius: var(--border-radius-large);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.05);
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
    border-color: var(--primary-pink-light);
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.item-image .no-image {
    color: var(--primary-pink-light);
    font-size: 2rem;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.item-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.item-price,
.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.item-price i,
.item-quantity i {
    color: var(--primary-pink);
    font-size: 0.9rem;
}

.item-total {
    text-align: right;
}

.total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-pink);
    font-family: var(--font-heading);
}

/* Order timeline */
.order-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-gray);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-pink);
    color: var(--pure-white);
}

.timeline-item.active .timeline-icon {
    background: var(--primary-pink-light);
    color: var(--primary-pink-dark);
    animation: pulse 2s infinite;
}

.timeline-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Order summary card */
.order-summary-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
    position: sticky;
    top: 2rem;
    margin-bottom: 2rem;
}

.order-summary-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-pink-lighter);
}

.order-summary-card .card-title i {
    color: var(--primary-pink);
    font-size: 1.3rem;
}

.summary-section {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    gap: 1rem;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    border-top: 2px solid var(--primary-pink-lighter);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.summary-item .label {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.summary-item .label i {
    color: var(--primary-pink);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.summary-item .value {
    color: var(--dark-gray);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.summary-item.total .value {
    color: var(--primary-pink);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Order actions */
.order-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.order-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.order-actions .btn-block {
    width: 100%;
}

/* Support card */
.support-card {
    background: linear-gradient(135deg, var(--primary-pink-lighter) 0%, var(--blush) 100%);
    border-radius: var(--border-radius-large);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
}

.support-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-pink-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-card .card-title i {
    color: var(--primary-pink);
}

.support-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.support-actions {
    display: flex;
    gap: 0.75rem;
}

.support-actions .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.support-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

/* Responsive design */
@media (max-width: 992px) {
    .order-details-page {
        padding-top: 1.5rem;
    }
    
    .order-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .order-summary-card {
        position: static;
        margin-top: 2rem;
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .item-details {
        text-align: center;
    }
    
    .item-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .order-details-page {
        padding-top: 1rem;
    }
    
    .order-container {
        padding: 0 0.5rem;
    }
    
    .order-header-section {
        padding: 1.5rem;
    }
    
    .order-title {
        font-size: 1.6rem;
    }
    
    .order-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .order-item {
        padding: 1rem;
    }
    
    .item-image {
        width: 60px;
        height: 60px;
    }
    
    .item-name {
        font-size: 1rem;
    }
    
    .order-timeline {
        gap: 1.5rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .order-timeline::before {
        left: 20px;
    }
    
    .order-summary-card {
        padding: 1.5rem;
    }
    
    .support-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .order-breadcrumb {
        padding: 0.75rem 1rem;
    }
    
    .order-breadcrumb .breadcrumb-item {
        font-size: 0.85rem;
    }
    
    .order-title {
        font-size: 1.4rem;
    }
    
    .order-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .order-item {
        padding: 0.75rem;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .summary-item .value {
        text-align: left;
    }
    
    .order-actions .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Enhanced animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

/* Loading states */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Print styles */
@media print {
    .order-details-page {
        padding-top: 0;
    }
    
    .order-breadcrumb,
    .order-actions,
    .support-card {
        display: none !important;
    }
    
    .order-summary-card {
        position: static;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .order-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
/* ==============================================
   ADMIN USERS PAGE - ENHANCED LAYOUT
============================================== */

/* Admin users page specific styling */
.admin-users {
    padding-top: 2rem;
    min-height: calc(100vh - 8rem);
}

/* Header with actions */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.header-content {
    flex: 1;
}

.header-actions {
    flex-shrink: 0;
}

/* Stats cards row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-pink-lighter);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-icon.admin {
    background: linear-gradient(135deg, #FF6B9D 0%, var(--primary-pink) 100%);
    color: var(--pure-white);
}

.stat-icon.customer {
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    color: var(--pure-white);
}

.stat-icon.active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--pure-white);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced search input */
.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-group .form-control {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: none;
    padding-right: 3rem;
}

.search-btn {
    background: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    color: var(--pure-white);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--primary-pink-dark);
    border-color: var(--primary-pink-dark);
    transform: translateY(-1px);
}

/* Users table card */
.users-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.05);
    overflow: hidden;
}

/* Enhanced table styling */
.users-card .table {
    margin: 0;
    background: transparent;
}

.users-card .table thead th {
    background: linear-gradient(135deg, var(--primary-pink-lighter) 0%, var(--blush) 100%);
    color: var(--primary-pink-dark);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.th-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.th-content i {
    color: var(--primary-pink);
    font-size: 0.9rem;
}

.users-card .table tbody td {
    padding: 1.5rem;
    border-color: rgba(233, 30, 99, 0.1);
    vertical-align: middle;
}

.user-row {
    transition: all 0.3s ease;
}

.user-row:hover {
    background: var(--blush);
    transform: scale(1.002);
}

.table-row-hover {
    background: var(--blush) !important;
    transform: scale(1.002) !important;
}

/* User data styling */
.user-id strong {
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.user-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-email strong {
    color: var(--primary-pink-dark);
    font-weight: 600;
}

.user-name,
.user-phone,
.user-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
}

/* Role badges */
.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-large);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.role-badge.admin {
    background: linear-gradient(135deg, #FF6B9D 0%, var(--primary-pink) 100%);
    color: var(--pure-white);
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

.role-badge.customer {
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    color: var(--pure-white);
    box-shadow: 0 2px 10px rgba(76, 205, 196, 0.3);
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-large);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-badge.active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--pure-white);
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.status-badge.inactive {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--pure-white);
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 36px;
    border: 2px solid transparent;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.action-buttons .btn-outline-primary {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

.action-buttons .btn-outline-primary:hover {
    background: var(--primary-pink);
    color: var(--pure-white);
}

.action-buttons .btn-outline-warning {
    border-color: #ffc107;
    color: #ffc107;
}

.action-buttons .btn-outline-warning:hover {
    background: #ffc107;
    color: var(--dark-gray);
}

.action-buttons .btn-outline-success {
    border-color: #28a745;
    color: #28a745;
}

.action-buttons .btn-outline-success:hover {
    background: #28a745;
    color: var(--pure-white);
}

.action-buttons .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.action-buttons .btn-outline-danger:hover {
    background: #dc3545;
    color: var(--pure-white);
}

/* Pagination navigation */
.pagination-nav {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--warm-gray);
    border-top: 1px solid rgba(233, 30, 99, 0.1);
}

.pagination-nav .pagination {
    margin: 0;
}

.pagination-nav .page-link {
    color: var(--primary-pink);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    margin: 0 0.25rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-nav .page-link:hover {
    background: var(--primary-pink-lighter);
    border-color: var(--primary-pink);
    color: var(--primary-pink-dark);
    transform: translateY(-2px);
}

.pagination-nav .page-item.active .page-link {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--pure-white);
    box-shadow: var(--shadow-medium);
}

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.empty-icon {
    font-size: 5rem;
    color: var(--primary-pink-light);
    margin-bottom: 2rem;
}

.empty-state h5 {
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Enhanced alerts */
.alert {
    border: none;
    border-radius: var(--border-radius-large);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive design */
@media (max-width: 1200px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .admin-users {
        padding-top: 1.5rem;
    }
    
    .page-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-actions {
        align-self: stretch;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .users-card .table thead th,
    .users-card .table tbody td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .admin-users {
        padding-top: 1rem;
    }
    
    .admin-users .container-fluid {
        padding: 0 1rem;
    }
    
    .admin-users .page-title {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .filters-card {
        padding: 1rem;
    }
    
    .filters-form .row {
        gap: 1rem;
    }
    
    .filters-form .col-md-6,
    .filters-form .col-md-3 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .results-info {
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Mobile table responsive */
    .users-card .table-responsive {
        border-radius: var(--border-radius-large);
    }
    
    .users-card .table {
        font-size: 0.85rem;
    }
    
    .users-card .table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .users-card .table tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    .th-content {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .action-buttons .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 32px;
        height: 32px;
    }
    
    .role-badge,
    .status-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .admin-users .container-fluid {
        padding: 0 0.5rem;
    }
    
    .admin-users .page-title {
        font-size: 1.4rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .filters-card,
    .users-card {
        margin: 0 -0.25rem 1rem;
        border-radius: var(--border-radius);
    }
    
    .empty-state {
        padding: 3rem 1rem;
    }
    
    .empty-icon {
        font-size: 4rem;
    }
    
    .empty-state h5 {
        font-size: 1.5rem;
    }
}

/* Loading states */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced hover effects */
.stat-card:hover .stat-number {
    color: var(--primary-pink);
    transform: scale(1.05);
}

.user-row:hover .user-id strong {
    color: var(--primary-pink);
}

.user-row:hover .role-badge,
.user-row:hover .status-badge {
    transform: scale(1.05);
}

/* Smooth transitions */
.stat-card,
.user-row,
.role-badge,
.status-badge,
.action-buttons .btn,
.stat-number,
.user-id strong {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.action-buttons .btn:focus,
.search-btn:focus,
.pagination-nav .page-link:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .admin-users {
        padding-top: 0;
    }
    
    .page-header,
    .filters-card,
    .action-buttons,
    .pagination-nav {
        display: none !important;
    }
    
    .users-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .stats-row {
        display: none !important;
    }
}


/* ==============================================
   PRODUCT IMAGE GALLERY - ENHANCED
============================================== */

/* Product Images Container */
.product-images {
    position: relative;
    margin-bottom: 2rem;
}

/* Main Image Display */
.main-image {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(233, 30, 99, 0.1);
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.main-image:hover {
    box-shadow: var(--shadow-luxury);
    transform: translateY(-2px);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

/* Thumbnail Images */
.thumbnail-images {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-pink) var(--light-gray);
}

.thumbnail-images::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-images::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.thumbnail-images::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 3px;
}

.thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--warm-gray);
    position: relative;
}

.thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.thumbnail:hover::before {
    background: rgba(233, 30, 99, 0.1);
}

.thumbnail:hover {
    border-color: var(--primary-pink-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.thumbnail.active {
    border-color: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Image Navigation Arrows */
.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.image-nav:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.image-nav.prev {
    left: 15px;
}

.image-nav.next {
    right: 15px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-pink);
    font-size: 1.5rem;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--primary-pink);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-pink);
    font-size: 1.5rem;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

/* Image Counter */
.image-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--primary-pink-dark);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10001;
}

/* Zoom Icon */
.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-pink);
    font-size: 1rem;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zoom-icon:hover {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

/* No Image Placeholder */
.no-image-large {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: var(--border-radius-large);
    color: var(--text-gray);
    border: 2px dashed var(--light-gray);
}

.no-image-large i {
    font-size: 4rem;
    color: var(--primary-pink-light);
    margin-bottom: 1rem;
}

.no-image-large span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Image Loading Animation */
.main-image.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-image {
        height: 350px;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
    }
    
    .image-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .image-nav.prev {
        left: 10px;
    }
    
    .image-nav.next {
        right: 10px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .image-counter {
        bottom: 15px;
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .no-image-large {
        height: 350px;
    }
    
    .no-image-large i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 280px;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .thumbnail-images {
        gap: 0.5rem;
    }
    
    .no-image-large {
        height: 280px;
    }
}


/* ==============================================
   DISCOUNT & PRICING STYLES
============================================== */

/* Product Price Container */
.product-price-clean,
.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0.75rem 0;
}

/* Original Price (Strikethrough) */
.original-price {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 400;
    opacity: 0.7;
}

/* Current/Discounted Price */
.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    font-family: var(--font-heading);
}

/* Discount Badge/Tag */
.discount-tag,
.discount-badge {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    animation: pulse-discount 2s infinite;
    white-space: nowrap;
}

/* Discount Tag on Product Card Image */
.product-image-box .discount-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
}

/* Discount Badge in Product Details */
.product-info .discount-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

/* Pulse Animation for Discount */
@keyframes pulse-discount {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(255, 71, 87, 0.5);
    }
}

/* Product Details Page - Enhanced Pricing */
.product-details-page .product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--gradient-soft-pink);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-pink-lighter);
}

.product-details-page .original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-gray);
}

.product-details-page .current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.product-details-page .discount-badge {
    padding: 0.6rem 1.2rem;
    font-size: 1.1rem;
    animation: pulse-discount 2s infinite;
}

/* Savings Display */
.savings-amount {
    display: inline-block;
    background: var(--gradient-luxury);
    color: var(--primary-pink-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--primary-pink-lighter);
}

.savings-amount::before {
    content: "💰 Tiết kiệm: ";
    font-weight: 400;
}

/* Product Card - Clean Layout with Discount */
.product-card-clean .product-price-clean {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--light-gray);
}

/* Related Products - Compact Pricing */
.related-products-grid .product-price {
    gap: 0.5rem;
}

.related-products-grid .original-price {
    font-size: 0.85rem;
}

.related-products-grid .current-price {
    font-size: 1.2rem;
}

.related-products-grid .discount-badge {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
}

/* Cart Page - Pricing with Discount */
.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.cart-item-price .original-price {
    font-size: 0.9rem;
}

.cart-item-price .current-price {
    font-size: 1.3rem;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .product-price-clean,
    .product-price {
        gap: 0.5rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .original-price {
        font-size: 0.85rem;
    }
    
    .discount-tag,
    .discount-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .product-details-page .current-price {
        font-size: 2rem;
    }
    
    .product-details-page .original-price {
        font-size: 1rem;
    }
}

/* Hover Effects for Discount Elements */
.discount-tag:hover,
.discount-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.5);
    transition: all 0.3s ease;
}

/* Special Promotion Banner Integration */
.promotion-banner {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
}

.promotion-banner .discount-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}


/* ==============================================
   HIDE ANALYTICS LINK
============================================== */
a[href*="Analytics"],
a[asp-controller="Analytics"],
.analytics-link,
button[onclick*="Analytics"] {
    display: none !important;
}
