* { 
    box-sizing: border-box; 
}

/* Enhanced Category Navigation Styles */
.category-card-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.category-nav {
    margin: 48px 0;
}

.category-nav-title {
    margin-bottom: 18px;
}

.category-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.category-card-enhanced {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 240, 248, 0.92) 100%);
    border: 1px solid rgba(233, 30, 99, 0.16);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card-enhanced:hover {
    border-color: rgba(233, 30, 99, 0.22);
    box-shadow: 0 14px 44px rgba(233, 30, 99, 0.16);
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card-header {
    text-align: center;
    margin-bottom: 14px;
}

.category-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.10) 0%, rgba(142, 68, 173, 0.10) 100%);
    border: 1px solid rgba(233, 30, 99, 0.14);
}

.category-card-name {
    margin: 0;
    font-size: 18px;
    color: #2c2c2c;
    font-weight: 750;
    letter-spacing: 0.2px;
}

.category-card-count {
    margin: 6px 0 0;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
}

.category-card-sub {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 14px;
}

.category-card-subtitle {
    margin: 0 0 10px;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.category-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-chip {
    background: rgba(255, 255, 255, 0.85);
    color: #4b4b4b;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    text-decoration: none;
    border: 1px solid rgba(233, 30, 99, 0.12);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.category-chip:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(142, 68, 173, 0.08) 100%);
    border-color: rgba(233, 30, 99, 0.22);
    transform: translateY(-1px);
}

.category-chip-more {
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    color: #fff;
    border-color: rgba(233, 30, 99, 0.35);
}

.category-chip-more:hover {
    background: linear-gradient(45deg, #ff6b9d, #e91e63);
    border-color: rgba(233, 30, 99, 0.5);
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a:hover {
    text-decoration: underline !important;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
}

.subcategory-nav .btn:hover {
    background-color: #007bff !important;
    color: white !important;
    transform: translateY(-1px);
}

.results-summary {
    animation: fadeInUp 0.5s ease-out;
}

/* Comprehensive Responsive Design for 10+ Device Types */

/* 1. Large Desktop & 4K Monitors (2560px+) */
@media (min-width: 2560px) {
    .container { max-width: 2400px; margin: 0 auto; }
    .grid { grid-template-columns: repeat(6, 1fr); gap: 32px; }
    .product-grid { grid-template-columns: repeat(6, 1fr) !important; gap: 24px !important; }
    .hero h1 { font-size: 4rem; }
    .category-card-enhanced { padding: 30px; }
}

/* 2. Standard Desktop (1920px-2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .container { max-width: 1800px; }
    .grid { grid-template-columns: repeat(5, 1fr); gap: 28px; }
    .product-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 22px !important; }
    .hero h1 { font-size: 3.5rem; }
}

/* 3. Large Laptop/Desktop (1440px-1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container { max-width: 1320px; }
    .grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .product-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 20px !important; }
    .hero h1 { font-size: 3rem; }
}

/* 4. Standard Laptop (1200px-1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .container { max-width: 1140px; }
    .grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .product-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 18px !important; }
    .hero h1 { font-size: 2.5rem; }
}

/* 5. Small Laptop (1024px-1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container { max-width: 960px; }
    .grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .product-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 16px !important; }
    .hero h1 { font-size: 2.2rem; }
    .category-card-enhanced { padding: 18px; }
}

/* 6. Large Tablet Landscape (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container { max-width: 720px; }
    .grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .product-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }
    .hero h1 { font-size: 2rem; }
    .category-card-enhanced { padding: 16px; }
    .nav-container { flex-direction: column; height: auto; padding: 15px 0; }
}

/* 7. Standard Tablet Portrait (600px-767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .container { max-width: 540px; }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .hero h1 { font-size: 1.8rem; }
    .category-card-enhanced { padding: 14px; }
    .subcategory-nav { padding: 8px !important; }
}

/* 8. Large Mobile/Small Tablet (480px-599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .container { max-width: 100%; padding: 0 15px; }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .hero h1 { font-size: 1.6rem; }
    .category-card-enhanced { padding: 12px; }
    .subcategory-nav .btn { font-size: 11px !important; padding: 4px 8px !important; }
}

/* 9. Standard Mobile (375px-479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .container { max-width: 100%; padding: 0 12px; }
    .grid { grid-template-columns: 1fr; gap: 10px; }
    .product-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
    .hero h1 { font-size: 1.4rem; }
    .category-card-enhanced { padding: 10px; }
    .subcategory-nav .btn { font-size: 10px !important; padding: 3px 6px !important; }
    .btn { padding: 8px 12px; font-size: 13px; }
}

/* 10. Small Mobile (320px-374px) */
@media (min-width: 320px) and (max-width: 374px) {
    .container { max-width: 100%; padding: 0 10px; }
    .grid { grid-template-columns: 1fr; gap: 8px; }
    .product-grid { grid-template-columns: 1fr !important; gap: 6px !important; }
    .hero h1 { font-size: 1.2rem; }
    .category-card-enhanced { padding: 8px; }
    .subcategory-nav .btn { font-size: 9px !important; padding: 2px 4px !important; }
    .btn { padding: 6px 10px; font-size: 12px; }
}

/* 11. Extra Small Mobile (<320px) */
@media (max-width: 319px) {
    .container { max-width: 100%; padding: 0 8px; }
    .grid { grid-template-columns: 1fr; gap: 6px; }
    .product-grid { grid-template-columns: 1fr !important; gap: 4px !important; }
    .hero h1 { font-size: 1rem; }
    .category-card-enhanced { padding: 6px; }
    .subcategory-nav .btn { font-size: 8px !important; padding: 2px 3px !important; }
    .btn { padding: 4px 8px; font-size: 11px; }
}

/* Touch-Friendly Enhancements for Mobile Devices */
@media (max-width: 1023px) {
    .btn, .category-card-enhanced, .product-card {
        min-height: 44px; /* Apple's recommended touch target size */
        cursor: pointer;
    }
    
    .nav-container a, .subcategory-nav .btn {
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve spacing for touch */
    .category-navigation > div {
        gap: 8px;
    }
    
    /* Larger tap targets */
    .pagination .btn {
        min-width: 44px;
        min-height: 44px;
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 30px rgba(255, 182, 193, 0.2);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 182, 193, 0.4);
    }
}

/* Product Image Hover Animations */
@keyframes imageFlip {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(90deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

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

@keyframes imageSlide {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes imageBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
body { 
    margin: 0; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeef7 0%, #f8e8ff 100%);
    min-height: 100vh;
    position: relative;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(221, 160, 221, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 192, 203, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}
.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

.page-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.page-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.content-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(255, 182, 193, 0.2);
}

.content-card-lg {
  padding: 40px;
  margin-bottom: 30px;
}

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

.grid-2-gap-lg {
  gap: 40px;
}

.bulk-mode-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: start;
}

.bulk-sidebar {
  position: sticky;
  top: 90px;
}

.bulk-sidebar-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.bulk-selected-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
}

.bulk-selected-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.bulk-selected-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bulk-selected-name {
  font-weight: 800;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bulk-selected-meta {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.bulk-qty-controls {
  display: flex;
  gap: 6px;
  align-items: center;
}

.bulk-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(233, 30, 99, 0.08);
  color: #8e44ad;
  font-weight: 900;
  cursor: pointer;
}

.bulk-qty-input {
  width: 60px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
}

/* Main content with sidebar space */
.main-with-sidebar {
  display: flex;
  gap: 15px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  flex: 1;
  max-width: calc(100% - 250px);
}

.sidebar-space {
  width: 240px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.site-header { 
    border-bottom: none; 
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(15px);
    position: sticky; 
    top: 0; 
    z-index: 10;
    box-shadow: 0 4px 30px rgba(255, 182, 193, 0.2);
    border-bottom: 1px solid rgba(255, 182, 193, 0.1);
    animation: slideDown 0.8s ease-out, glow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.site-header:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 40px rgba(255, 182, 193, 0.3);
    transform: translateY(-1px);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { 
    font-weight: 700; 
    font-size: 28px; 
    background: linear-gradient(45deg, #e91e63, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    position: relative;
    animation: float 4s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1;
    padding-left: 6px;
    margin-left: 3cm;
}
.logo::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -20px;
    font-size: 16px;
    animation: pulse 2s infinite;
}
.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #e91e63, #ff6b9d, #c44569);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
    border-radius: 8px;
    opacity: 0.1;
}
.logo:hover { 
    transform: scale(1.1); 
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}
.nav a { 
    margin-left: 16px; 
    color: #8e44ad; 
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Georgia', serif;
}
.nav a:hover {
    color: #e91e63;
    transform: translateY(-2px);
}
.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    transition: all 0.3s ease;
}
.nav a:hover::after {
    width: 100%;
    left: 0;
}
.nav a.cart-link { 
    font-weight: 700;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
    position: relative;
}
.nav a.cart-link::before {
    content: '💕';
    margin-right: 5px;
}
.nav a.cart-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.4);
}

.hero { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    gap: 32px; 
    align-items: center; 
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    margin: 30px 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(255, 182, 193, 0.2);
    border: 1px solid rgba(255, 182, 193, 0.2);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}
.hero h1 { 
    font-size: 48px; 
    margin: 0 0 20px;
    background: linear-gradient(45deg, #e91e63, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.1;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 1;
}
.hero h1::after {
    content: '💄';
    position: absolute;
    top: -10px;
    right: -40px;
    font-size: 24px;
    animation: pulse 3s infinite;
}
.hero p { 
    margin: 0 0 30px; 
    color: #8e44ad;
    font-size: 20px;
    opacity: 0.9;
    font-style: italic;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 1;
}
.btn { 
    display: inline-block; 
    background: linear-gradient(45deg, #e91e63, #ff6b9d); 
    color: white; 
    padding: 12px 24px; 
    text-decoration: none; 
    border-radius: 25px; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    border: none; 
    cursor: pointer; 
    font-family: 'Georgia', serif;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover { 
    transform: translateY(-2px) scale(1.05); 
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}
.btn:disabled { 
    background: #ddd; 
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

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

/* Ensure product grid takes priority over general grid */
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 20px 0 !important;
    width: 100% !important;
}
.card { 
    border: none;
    border-radius: 20px; 
    overflow: hidden; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    display: flex; 
    flex-direction: column; 
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 182, 193, 0.2);
    position: relative;
    border: 1px solid rgba(255, 182, 193, 0.2);
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.05), rgba(255, 107, 157, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.card::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}
.card:hover::before {
    opacity: 1;
}
.card:hover::after {
    opacity: 1;
    transform: scale(1.02);
}
.card:hover { 
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.25);
}
.card img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* Product Image Hover Effects */
.card:hover img {
    animation: imageZoom 0.6s ease-in-out;
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
}

.card:nth-child(odd):hover img {
    animation: imageFlip 0.8s ease-in-out;
}

.card:nth-child(even):hover img {
    animation: imageBounce 0.6s ease-in-out;
}

.card:nth-child(3n):hover img {
    animation: imageSlide 0.5s ease-in-out;
}

/* Image overlay effect for "another side" simulation */
.card img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover img::before {
    transform: translateX(100%);
}

/* Touch/mobile hover effects */
@media (hover: none) and (pointer: coarse) {
    .card:active img {
        animation: imageZoom 0.3s ease-in-out;
        transform: scale(1.02);
    }
}
.card .info { 
    padding: 20px; 
    flex: 1; 
    display: flex; 
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.card .title { 
    font-weight: 700; 
    margin: 0 0 8px;
    color: #8e44ad;
    font-size: 16px;
    font-family: 'Georgia', serif;
}
.price { 
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 20px;
    font-family: 'Georgia', serif;
}
.price::before {
    content: '💎 ';
    font-size: 14px;
}
/* Card Actions Styling */
.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.view-btn {
    flex: 1;
    text-align: center;
    min-width: 120px;
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    font-size: 13px;
    padding: 10px 16px;
}

.view-btn:hover {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    transform: translateY(-2px) scale(1.02);
}

.quick-add-btn {
    flex: 1;
    text-align: center;
    min-width: 120px;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    font-size: 13px;
    padding: 10px 16px;
}

.quick-add-btn:hover {
    background: linear-gradient(45deg, #ff6b9d, #e91e63);
    transform: translateY(-2px) scale(1.02);
}
.quick-add { 
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    color: #fff; 
    padding: 10px 18px; 
    border: none; 
    border-radius: 25px; 
    cursor: pointer; 
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}
.quick-add::after {
    content: ' 💕';
    font-size: 10px;
}
.quick-add:hover { 
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.category-card { 
    border: none;
    border-radius: 16px; 
    padding: 32px 24px; 
    text-align: center; 
    transition: all 0.3s ease;
    text-decoration: none; 
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category-card:hover::before {
    opacity: 1;
}
.category-card:hover { 
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}
.category-card h3 {
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.site-footer { 
    border-top: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px 0; 
    margin-top: 48px; 
    color: #2c3e50;
    text-align: center;
    font-weight: 500;
}

.site-main { 
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 20px 0;
    backdrop-filter: blur(5px);
}

.product-layout { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 32px;
    background: rgba(255, 255, 255, 0.9);
    padding: 32px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.related-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}
.product-layout img { 
    width: 100%; 
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.product-layout img:hover {
    transform: scale(1.02);
}
.qty { 
    width: 80px; 
    padding: 10px; 
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: all 0.3s ease;
}
.qty:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.cart-table { 
    width: 100%; 
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.cart-table th, .cart-table td { 
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    padding: 16px; 
    text-align: left;
}
.cart-table th {
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    font-weight: 700;
    color: #2c3e50;
}
.cart-actions { 
    display: flex; 
    justify-content: space-between; 
    margin-top: 24px;
    gap: 16px;
}

.success-message { 
    background: linear-gradient(45deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
    border: 2px solid rgba(46, 204, 113, 0.3);
    padding: 20px; 
    border-radius: 16px; 
    margin-bottom: 24px; 
    color: #27ae60;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.1);
}

/* Form Styling */
input[type="text"], input[type="email"], input[type="search"], select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Georgia', serif;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="search"]:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    transform: translateY(-1px);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #8e44ad;
    font-family: 'Georgia', serif;
}

/* Section Headings */
h1, h2, h3 {
    animation: fadeInUp 0.6s ease-out;
}

h2 {
    color: #8e44ad;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    font-family: 'Georgia', serif;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    border-radius: 2px;
}

/* Enhanced Animations */
.card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

.category-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.filters-sidebar { 
    width: 250px;
    background: rgba(255, 255, 255, 0.8);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.products-main { 
    flex: 1;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .cart-actions { flex-direction: column; gap: 16px; }
  .filters-sidebar { width: 100%; margin-bottom: 24px; }
  .products-main { width: 100%; }

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

  .grid-2-gap-lg {
    gap: 20px;
  }

  .content-card,
  .content-card-lg {
    padding: 20px;
  }

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

  .bulk-sidebar {
    position: static;
    top: auto;
  }
}

/* Beautiful Feminine Footer */
.site-footer { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 248, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 60px 0 30px; 
    margin-top: 60px; 
    border-top: 2px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(221, 160, 221, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 24px;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Georgia', serif;
    margin-bottom: 16px;
    font-weight: 800;
}

.footer-section h4 {
    color: #8e44ad;
    font-size: 18px;
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    border-radius: 1px;
}

.footer-section p {
    color: #8e44ad;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    color: #8e44ad;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #e91e63;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(233, 30, 99, 0.2);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(233, 30, 99, 0.1);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #8e44ad;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1400px) {
  .container { max-width: 95%; }
  .main-with-sidebar { max-width: 95%; }
}

@media (max-width: 1200px) {
  .container { max-width: 95%; }
  .hero { padding: 40px 0; }
  .hero div { text-align: center; }
  .hero img { max-width: 80%; }
  
  /* Stack layout for better mobile experience */
  .main-with-sidebar {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }
  
  .main-content {
    max-width: 100%;
    order: 1;
  }
  
  .sidebar-space {
    width: 100%;
    order: 2;
    margin-top: 20px;
  }
  
  .sidebar-assistant {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    min-height: 150px;
  }
}

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero { flex-direction: column; gap: 30px; padding: 30px 0; }
  .hero h1 { font-size: 2rem; line-height: 1.2; }
  .hero p { font-size: 16px; }

  .site-header {
    animation: none;
    transform: none;
    padding-top: 12px;
    padding-top: max(12px, env(safe-area-inset-top));
  }

  .site-header:hover {
    transform: none;
  }

  .logo {
    margin-left: 0;
    margin-top: 10px;
    animation: none;
    top: 0;
  }

  .logo::after {
    display: none;
  }
  
  .nav-container { 
    flex-wrap: wrap; 
    justify-content: center; 
    height: auto;
    padding-top: 10px;
    padding: 12px 0; 
  }
  
  .nav { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 8px; 
  }
  
  .nav a { 
    margin: 4px 8px; 
    padding: 8px 12px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 15px;
    font-size: 14px;
  }
  
  /* Category grid improvements */
  .category-card {
    padding: 15px;
    text-align: center;
  }
  
  /* Card improvements */
  .card {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
  }
}

@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; gap: 15px; }
  .category-grid { grid-template-columns: 1fr; gap: 15px; }

  .site-header {
    padding-top: 14px;
    padding-top: max(14px, env(safe-area-inset-top));
  }
  
  .nav-container { 
    flex-direction: column; 
    height: auto; 
    padding: 16px 0; 
    text-align: center;
  }
  
  .logo { 
    font-size: 24px; 
    margin-top: 10px;
    margin-bottom: 12px;
    animation: none;
  }
  
  .nav { 
    margin-top: 16px; 
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav a { 
    margin: 4px 6px; 
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  .hero { 
    padding: 20px 0;
    text-align: center;
  }
  
  .hero h1 { 
    font-size: 1.8rem; 
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .hero p { 
    font-size: 15px; 
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .btn { 
    padding: 12px 20px; 
    font-size: 14px;
    display: inline-block;
  }
  
  .card { 
    padding: 15px; 
    margin-bottom: 15px;
  }
  
  .card img {
    height: 250px;
  }
  
  .card h3 { 
    font-size: 16px; 
    margin-bottom: 8px;
  }
  
  .card p { 
    font-size: 13px; 
    line-height: 1.4;
  }
  
  .card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }
  
  .card-actions .btn,
  .card-actions button {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 13px;
  }
  
  /* Category navigation responsive */
  section[style*="margin: 48px 0"] {
    margin: 30px 0 !important;
  }
  
  section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 25px;
      text-align: center;
  }
  
  .footer-section h3 { 
    font-size: 20px; 
  }
  
  .footer-section h4 { 
    font-size: 16px; 
  }
  
  .footer-badges {
      flex-direction: column;
      align-items: center;
      gap: 10px;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .main-with-sidebar { padding: 0 12px; }
  
  .hero { 
    padding: 15px 0;
  }
  
  .hero h1 { 
    font-size: 1.5rem; 
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .logo { 
    font-size: 20px; 
  }
  
  .nav a { 
    font-size: 12px; 
    padding: 6px 10px;
    margin: 2px 4px;
  }
  
  .card { 
    padding: 12px; 
    margin-bottom: 12px;
  }
  
  .card img {
    height: 200px;
  }
  
  .card h3 {
    font-size: 14px;
  }
  
  .card p {
    font-size: 12px;
  }
  
  .btn { 
    padding: 10px 16px; 
    font-size: 13px;
  }
  
  .sidebar-assistant {
    width: 100%;
    max-width: 300px;
    min-height: 120px;
  }
  
  .assistant-content {
    padding: 15px;
  }
  
  .assistant-text h3 {
    font-size: 1rem;
  }
  
  .assistant-text p {
    font-size: 0.8rem;
  }
  
  .assistant-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 8px;
  margin-left: 16px;
}

.lang-btn {
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
  background: rgba(255, 182, 193, 0.3);
  font-weight: bold;
}

/* Testimonials */
.testimonials-section {
  margin: 48px 0;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 240, 245, 0.1) 100%);
  border-radius: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 182, 193, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-name {
  font-weight: bold;
  color: #333;
}

.testimonial-location {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.testimonial-rating {
  color: #f90;
  font-size: 18px;
}

.testimonial-text {
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

.testimonial-keywords {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.keyword-tag {
  background: linear-gradient(135deg, #ff6b9d, #c44569);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: bold;
}

/* Dynamic Sidebar Assistant */
.sidebar-assistant {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  width: 220px;
  min-height: 180px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
  z-index: 100;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.92;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: float 10s ease-in-out infinite;
}

.sidebar-assistant:hover {
  transform: translateY(-50%);
  box-shadow: 0 20px 70px rgba(102, 126, 234, 0.38);
  opacity: 1;
}

.assistant-content {
  padding: 20px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.assistant-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

.assistant-avatar {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: pulse 2.5s infinite;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.assistant-text {
  position: relative;
  z-index: 2;
}

.assistant-text h3 {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

.assistant-text p {
  margin: 0 0 25px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.assistant-actions {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.assistant-btn {
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.assistant-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;
}

.assistant-btn:hover::before {
  left: 100%;
}

.assistant-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.assistant-text.fade-in {
  animation: fadeInUp 0.8s ease-out, glow 2s ease-in-out infinite alternate;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
  }
  to {
    text-shadow: 0 0 15px rgba(255,255,255,0.6);
  }
}

@media (max-width: 1400px) {
  .main-with-sidebar {
    max-width: 1400px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
  }
  
  .hero {
    padding: 50px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .card {
    padding: 20px;
  }
  
  .main-with-sidebar {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-content {
    max-width: 100%;
  }
  
  .sidebar-space {
    width: 100%;
  }
  
  .sidebar-assistant {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .main-with-sidebar {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-content {
    max-width: 100%;
  }
  
  .sidebar-space {
    width: 100%;
  }
  
  .sidebar-assistant {
    position: relative;
    right: auto;
    top: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 768px) {
  .sidebar-assistant {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .sidebar-assistant {
    right: 5px;
    width: 250px;
    top: 10%;
  }
  
  .assistant-content {
    padding: 20px;
  }
  
  .assistant-avatar {
    font-size: 2.5rem;
  }
  
  .assistant-text h3 {
    font-size: 1.1rem;
  }
  
  .assistant-text p {
    font-size: 0.85rem;
  }
  
  .assistant-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

/* VIP Bonus Section Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

.vip-bonus-section {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for VIP section */
@media (max-width: 768px) {
    .vip-bonus-section {
        margin: 20px 0 !important;
        padding: 20px 15px !important;
    }
    
    .vip-bonus-section h2 {
        font-size: 20px !important;
    }
    
    .vip-bonus-section h3 {
        font-size: 16px !important;
    }
    
    .vip-bonus-section p {
        font-size: 13px !important;
    }
    
    .vip-bonus-section div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}
