/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mega Hero Section */
.mega-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #2a0845, #6441a5);
    overflow: hidden;
    padding: 4rem 0;
    display: flex;
    align-items: center;
}

/* Animated Stars */
.mega-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 4s infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

.mega-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.mega-hero-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    max-width: 600px;
}

.mega-hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                 0 0 40px rgba(255, 215, 0, 0.3);
}

.mega-hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.mega-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5),
                 0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: 600;
}

.stat-label.launching-soon {
    font-size: 0.9rem;
    color: #FF6B6B;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    font-style: italic;
}

@media (max-width: 768px) {
    .stat-label {
        font-size: 1.1rem;
    }
    
    .stat-label.launching-soon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-label {
    font-size: 1rem;
    }
    
    .stat-label.launching-soon {
        font-size: 0.9rem;
    }
}

.mega-hero-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.rotating-plushies {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.plushie-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.plushie-item.active {
    opacity: 1;
}

.plushie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .mega-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    text-align: center;
    }

    .mega-hero-text {
        max-width: 100%;
    }

    .mega-hero-stats {
    justify-content: center;
    }

    .mega-hero-showcase {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .mega-hero {
        min-height: auto;
        padding: 5rem 0;
    }

    .mega-hero-content {
        padding: 0 2rem;
        gap: 3rem;
    }

    .mega-hero-text h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.6),
                     0 0 50px rgba(255, 215, 0, 0.4);
    }

    .mega-hero-text p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 3rem;
    }

    .mega-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat {
        min-height: 120px;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                     0 0 40px rgba(255, 215, 0, 0.4);
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .mega-hero-showcase {
        display: none;
    }
}

@media (max-width: 480px) {
    .mega-hero {
        padding: 4rem 0;
    }

    .mega-hero-content {
        padding: 0 1.5rem;
    }

    .mega-hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .mega-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .stat {
        min-height: 110px;
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Products Hero Section */
.products-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #ffffff 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.products-hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Filter Sections */
.filter-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-bubble {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--neon-gradient);
}

.filter-bubble.active {
    background: var(--neon-gradient);
    border: none;
    box-shadow: 0 0 20px var(--accent-glow);
}

.bubble-content {
    text-align: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.filter-bubble:hover .bubble-content,
.filter-bubble.active .bubble-content {
    color: white;
}

.bubble-content i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.bubble-content span {
    font-size: 0.9rem;
    display: block;
}

.bubble-content .count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Mood Filter */
.mood-filter {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
}

.filter-title i {
    color: var(--accent);
}

.filter-title::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--accent);
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
    text-shadow: 0 0 10px var(--accent-glow);
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
  100% {
    opacity: 0.5;
    transform: translateX(0);
  }
}

.mood-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mood-btn {
    background: white;
    border: 1px solid var(--accent);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.mood-btn:hover {
    background: var(--neon-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 156, 0.2);
    border-color: transparent;
}

.mood-btn.active {
    background: var(--neon-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px var(--accent-glow);
}

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

.mood-btn .count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    min-width: 1.8rem;
    text-align: center;
    margin-left: 0.5rem;
}

.mood-btn.active .count {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .category-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.8rem;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-bubble {
        flex: 0 0 auto;
        width: 80px;
        height: 80px;
    }

    .bubble-content i {
        font-size: 1.2rem;
    }

    .bubble-content span {
        font-size: 0.8rem;
    }

    .mood-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.8rem;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .mood-buttons::-webkit-scrollbar {
        display: none;
    }

    .mood-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* --- New Glassmorphism Size Guide Popup - Enhanced Colors --- */
.size-guide-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.size-guide-popup.active {
    opacity: 1;
}

.size-guide-content {
  position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    padding: 2rem;
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.size-guide-popup.active .size-guide-content {
    transform: translateY(0);
}

.size-guide-title {
    font-size: 2rem;
    color: #4a3b8a;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
  position: relative;
    padding-bottom: 1rem;
}

.size-guide-title::after {
  content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #6a5acd, #20b2aa);
  border-radius: 3px;
}

.size-guide-close {
  position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
  border: none;
    font-size: 1.8rem;
    color: #4a3b8a;
  cursor: pointer;
    width: 40px;
    height: 40px;
  display: flex;
  align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.size-guide-close:hover {
    background: rgba(106, 90, 205, 0.1);
    transform: rotate(90deg);
}

.size-guide-glass-cards {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  margin-bottom: 1rem;
}

.glass-card { 
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
  box-shadow: 0 5px 20px rgba(106, 90, 205, 0.2), 0 0 0 3px rgba(106,90,205,0.1);
    border: 2px solid rgba(106,90,205,0.15);
    padding: 1.5rem;
  display: flex; 
  flex-direction: column; 
    gap: 1rem;
    color: #4a3b8a;
    font-weight: 600;
    transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(106, 90, 205, 0.3);
}

.glass-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a3b8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.glass-card h3 i {
    font-size: 1.4rem;
    color: #6a5acd;
    background: rgba(255, 255, 255, 0.9);
  border-radius: 50%; 
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(106, 90, 205, 0.2);
    transition: all 0.3s ease;
}

.glass-card:hover h3 i {
    background: #6a5acd;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(106, 90, 205, 0.3);
}

.glass-card-list { 
    display: flex; 
    flex-direction: column; 
    gap: 0.8rem;
}

.glass-card-item { 
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    display: flex; 
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #4a3b8a;
    font-weight: 500; 
    transition: all 0.3s ease;
    border: 1px solid rgba(106,90,205,0.1);
}

.glass-card-item:hover { 
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(106,90,205,0.15);
}

.glass-card-item i {
    font-size: 1.2rem;
  color: #6a5acd; 
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(106, 90, 205, 0.2);
  transition: all 0.3s ease;
}

.glass-card-item:hover i {
    background: #6a5acd;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(106, 90, 205, 0.3);
}

@media (max-width: 768px) {
.size-guide-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem auto;
  }

.size-guide-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
  }

    .size-guide-glass-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
  }

  .glass-card { 
        padding: 1.2rem;
    }

    .glass-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

  .glass-card-item { 
        padding: 0.7rem 0.9rem;
        font-size: 0.95rem;
  }

    .glass-card-item i {
        font-size: 1.1rem;
        padding: 0.4rem;
  }

  .size-guide-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .size-guide-content {
        padding: 1rem;
        margin: 0.5rem auto;
    border-radius: 1.5rem;
  }

  .size-guide-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
  }

    .size-guide-glass-cards {
        gap: 1rem;
  }

  .glass-card {
      padding: 1rem;
      border-radius: 1.2rem;
  }

    .glass-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

  .glass-card-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        border-radius: 0.8rem;
  }

    .glass-card-item i {
        font-size: 1rem;
        padding: 0.35rem;
  }
}

/* --- Overlay Button Fixes --- */
.product-overlay, .overlay-buttons {
  pointer-events: auto !important;
  z-index: 10 !important;
}
.quick-view-btn, .size-guide-btn {
  pointer-events: auto !important;
  z-index: 11 !important;
  background: rgba(255,255,255,0.95);
  color: #7f8fa6;
    border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
    cursor: pointer;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(161,196,253,0.12);
}
.quick-view-btn:hover, .size-guide-btn:hover, .quick-view-btn:focus, .size-guide-btn:focus {
  background: linear-gradient(90deg, #a1c4fd 0%, #c2e9fb 100%);
  color: #fff;
  box-shadow: 0 8px 25px #a1c4fd55;
  outline: none;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 768px) {
  .product-overlay {
    display: none !important;
  }
  .mobile-action-btn {
    display: flex !important;
    pointer-events: auto !important;
    z-index: 12 !important;
    background: rgba(255,255,255,0.95);
    color: #7f8fa6;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(161,196,253,0.15);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .mobile-action-btn:hover, .mobile-action-btn:focus {
    background: linear-gradient(90deg, #a1c4fd 0%, #c2e9fb 100%);
    color: #fff;
    transform: scale(1.08);
    outline: none;
  }
}
/* Remove old/duplicate size guide styles below this line */

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .size-guide-content {
        width: 95%;
        margin: 20px auto;
        padding: 30px 20px;
    }

    .size-guide-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .perfect-for-grid,
    .huggability-grid,
    .care-instructions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .perfect-item,
    .huggability-item,
    .care-instructions li {
        padding: 1rem;
        font-size: 1rem;
    }

    .perfect-item i,
    .huggability-item i,
    .care-instructions li i {
        font-size: 1.2rem;
        padding: 0.6rem;
    }

    .size-guide-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* Ensure proper stacking context */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    width: 90%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.size-guide-popup {
    z-index: 9999;
}

/* Visual Comparison */
.size-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-image {
    text-align: center;
}

.plushie-image {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.comparison-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.comparison-item span {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.comparison-item small {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Perfect For Section */
.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.perfect-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.perfect-item i {
    font-size: 1.2rem;
    color: var(--accent);
}

.perfect-item span {
    color: var(--text);
    font-size: 0.9rem;
}

/* Care Instructions */
.care-instructions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.care-instructions li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: var(--text);
    font-size: 0.9rem;
}

.care-instructions li i {
    color: var(--accent);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .size-guide-content {
        padding: 1.5rem;
    }

    .measurements,
    .comparison-items,
    .care-instructions {
        grid-template-columns: repeat(2, 1fr);
    }

    .perfect-for-grid {
        grid-template-columns: 1fr;
    }

    .size-section {
        padding: 1rem;
    }

    .size-guide-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .filter-bubble {
        width: 70px;
        height: 70px;
        margin: 0 0.3rem;
    }

    .bubble-content i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .bubble-content span {
        font-size: 0.8rem;
    }

    .bubble-content .count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: 5px;
        right: 5px;
    }

    .mood-filter {
        padding: 1rem;
        margin: 1rem 0;
    }

    .filter-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .mood-buttons {
        gap: 0.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .mood-buttons::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .mood-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .category-filter {
        gap: 0.5rem;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-sections {
        gap: 1rem;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .measurements,
    .comparison-items,
    .care-instructions {
        grid-template-columns: 1fr;
    }

    .size-guide-content {
        padding: 1rem;
    }
}

/* Products Grid */
.products-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f7ff 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
}

.product-info {
    padding: 1.8rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1));
}

.product-name {
    font-size: 1.4rem;
    margin: 0 0 0.8rem;
    color: var(--text);
    font-weight: 600;
    background: linear-gradient(135deg, var(--text) 0%, #ff6b9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.personality-traits {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 0.8rem 0;
}

.trait {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.trait:hover {
    background: var(--neon-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 156, 0.3);
}

.trait i {
    color: var(--accent);
    transition: color 0.3s ease;
}

.trait:hover i {
    color: white;
}

.product-story {
    font-size: 1rem;
    color: var(--text-light);
    margin: 1rem 0;
    line-height: 1.6;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(255, 107, 156, 0.2);
}

/* --- Modal and Order Button Unified Styles --- */
.order-btn {
    background: linear-gradient(90deg,#ff6b9c 0%,#18b6f6 100%);
    color: #fff;
    border: none;
    padding: 1.1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 4px 16px #a1c4fd22;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    width: 100%;
    justify-content: center;
    z-index: 10;
    margin-top: 2rem;
}
.order-btn i {
    font-size: 1.5rem;
}
.order-btn:hover {
    background: linear-gradient(90deg,#18b6f6 0%,#ff6b9c 100%);
    box-shadow: 0 8px 32px #ff6b9c33;
    transform: translateY(-2px) scale(1.03);
}
.order-btn::before,
.order-btn::after {
    display: none;
}

/* Remove all .whatsapp-order-btn rules */
.whatsapp-order-btn { display: none !important; }

/* Modal Layout Fixes */
.modal-content {
    overflow-y: auto;
    max-height: 95vh;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f7ff 100%);
    border-radius: 2rem;
    box-shadow: 0 12px 48px rgba(161,196,253,0.18), 0 0 0 4px #a1c4fd22;
    padding: 0;
    max-width: 900px;
    margin: 2.5rem auto;
    border: none;
}
.modal-body {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    background: none;
}
.quick-view-slider {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    background: none;
    border-radius: 1.5rem;
    padding: 0;
}
.quick-view-info {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.2rem;
    padding: 0 0 0 1.5rem;
    min-width: 0;
    position: relative;
}
.quick-view-info .order-btn {
    margin-top: auto;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .modal-content {
        max-width: 98vw;
        padding-bottom: 80px;
    }
    .modal-body {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .quick-view-info {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
    width: 100%;
    height: 100%;
        border-radius: 0;
        max-height: 100vh;
        overflow-y: auto;
        padding-bottom: 80px;
    }
    .modal-body {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        min-height: auto;
    }
    .quick-view-slider {
        padding: 0;
    }
    .quick-view-info {
        padding: 0;
    }
    .order-btn {
        font-size: 1rem;
        padding: 1rem;
        margin-top: 1.2rem;
    }
}

/* Remove the overlay that was blocking clicks */
.order-btn::after {
    display: none;
}


/* Update product footer to ensure button is clickable */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

/* Ensure the button is above other elements */
.product-card .order-btn {
    position: relative;
    z-index: 10;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .order-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .order-btn::before {
        display: none; /* Hide tooltip on mobile */
    }

    .product-info::before {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .overlay-buttons {
    transform: translateY(0);
}

.quick-view-btn,
.size-guide-btn {
    background: white;
    color: var(--text);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-view-btn:hover,
.size-guide-btn:hover {
    background: var(--neon-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .products-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .trait {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .product-story {
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }

    .product-footer {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .order-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Button click fixes */
    .product-image {
        position: relative;
    }

    .mobile-action-left,
    .mobile-action-right {
        position: absolute;
        z-index: 1000;
        pointer-events: auto;
    }

    .mobile-action-btn {
        position: relative;
        z-index: 1001;
        pointer-events: auto;
        display: flex !important;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.1rem;
        box-shadow: 0 2px 8px rgba(161, 196, 253, 0.15);
        transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    .image-slider {
        pointer-events: none;
    }

    .image-slider img {
        pointer-events: none;
        transform: none !important;
    }

    .product-card:hover .product-image img {
        transform: none !important;
    }

    .product-overlay {
        display: none !important;
    }

    .product-image::before {
        z-index: 1;
    }
}

/* Add a subtle shine effect */
.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.product-card:hover::after {
    opacity: 1;
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Mobile Corner Actions */
.mobile-action-right {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
}

.mobile-action-left {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2;
}

.mobile-action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: none; /* Hidden by default, shown on mobile */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mobile-action-btn:active {
    transform: scale(0.95);
    background: var(--neon-gradient);
    color: white;
}

/* Gradient overlay for better button visibility */
.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.2) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Media Queries */
@media (max-width: 768px) {
    .product-overlay {
        display: none; /* Hide hover overlay on mobile */
    }

    .mobile-action-btn {
        display: flex; /* Show corner buttons on mobile */
    }

    /* Add hover effect for touch devices */
    .mobile-action-btn:hover {
        background: var(--neon-gradient);
        color: white;
        transform: scale(1.05);
    }
}

/* Desktop Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    gap: 1rem;
}

.quick-view-btn,
.size-guide-btn {
    background: white;
    color: var(--text);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.product-card:hover .quick-view-btn,
.product-card:hover .size-guide-btn {
    transform: translateY(0);
}

.quick-view-btn:hover,
.size-guide-btn:hover {
    background: var(--neon-gradient);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.product-trait {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.action-buttons {
    display: flex;
    gap: 0.8rem;
}

.call-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--accent-glow);
}

.call-btn.primary {
    width: auto;
    border-radius: 20px;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-view-actions .order-btn,
.quick-view-actions .call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
}

.quick-view-actions .order-btn {
    background: var(--neon-gradient);
}

.quick-view-actions .call-btn {
    background: var(--accent);
}

.quick-view-actions .order-btn:hover,
.quick-view-actions .call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-glow);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

.order-btn {
    background: var(--neon-gradient);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* --- Button Click Fix for Mobile & Overlay --- */
.product-image {
    position: relative;
}
.mobile-action-left, .mobile-action-right {
  z-index: 10000 !important;
  pointer-events: auto !important;
}
.mobile-action-btn {
  z-index: 10001 !important;
  pointer-events: auto !important;
}
.image-slider, .image-slider img {
  pointer-events: none !important;
}

@media (max-width: 768px) {
  .image-slider, .image-slider img {
    pointer-events: auto !important;
  }
  .mobile-action-left, .mobile-action-right {
    z-index: 10000 !important;
  }
  .mobile-action-btn {
    z-index: 10001 !important;
    pointer-events: auto !important;
  }
  .product-image::before {
    z-index: 1;
  }
}

/* Size Filter Styles */
.size-filter {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.size-filter .filter-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.size-filter .filter-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.size-filter .filter-bubble {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.size-filter .filter-bubble:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.size-filter .filter-bubble.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.size-filter .bubble-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.size-filter .bubble-content i {
        font-size: 1rem;
    }

.size-filter .bubble-content span {
    font-size: 0.9rem;
    font-weight: 500;
}

.size-filter .bubble-content .count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.size-filter .filter-bubble.active .count {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .size-filter .filter-bubbles {
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .size-filter .filter-bubbles::-webkit-scrollbar {
        display: none;
    }

    .size-filter .filter-bubble {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* Product Card Badges */
.size-badge,
.quantity-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.size-badge {
    top: 1rem;
    left: 1rem;
}

.quantity-badge {
    top: 1rem;
    right: 1rem;
    background: rgba(255, 107, 156, 0.15);
    border-color: rgba(255, 107, 156, 0.3);
    color: #ff6b9c;
    animation: pulse 2s infinite;
}

.size-badge i,
.quantity-badge i {
    font-size: 1rem;
}

.quantity-badge i {
    color: #ff6b9c;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 156, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 156, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 156, 0);
    }
}

.product-card:hover .size-badge,
.product-card:hover .quantity-badge {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .size-badge,
    .quantity-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .size-badge {
        top: 0.5rem;
        left: 0.5rem;
    }

    .quantity-badge {
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* Update product card to accommodate badges - consolidated with main .product-card rule */

.product-image {
        position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

/* --- Quick View Modal Premium Redesign --- */
.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    width: 90%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    }

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.quick-view-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-view-slider .main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Loading Spinner for Images */
.image-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.image-loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 156, 0.2);
    border-top-color: #ff6b9c;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile optimization for images */
@media (max-width: 768px) {
    .quick-view-slider .main-image {
        height: 300px;
    }
    
    .drop-product-image img,
    .product-image img {
        will-change: transform;
        transform: translateZ(0); /* Force GPU acceleration */
    }
}

.quick-view-slider .main-image:hover {
    transform: scale(1.02);
}

.quick-view-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.quick-view-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-view-thumbnails img.active,
.quick-view-thumbnails img:hover {
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-nav.prev { left: 1rem; }
.slider-nav.next { right: 1rem; }

.slider-nav:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.quick-view-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-view-info h2 {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.quick-view-info .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b6b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-view-info .price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.quick-view-info .price .sale-price {
    color: #ff6b6b;
    font-size: 1.5rem;
}

.quick-view-info .price .sale-badge {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.quick-view-info .description {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.quick-view-info .traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0;
}

.quick-view-info .trait {
    background: rgba(255, 107, 107, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    color: #ff6b6b;
}

.quick-view-info .trait:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
}

.quick-view-info .trait i {
    color: #ff6b6b;
}

.quick-view-info .order-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
        justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.quick-view-info .order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.quick-view-info .order-btn i {
    font-size: 1.2rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    background: #ff6b6b;
    color: white;
    transform: rotate(90deg);
    }
    
@media (max-width: 900px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-view-slider .main-image {
        height: 300px;
    }

    .quick-view-info {
        padding: 0;
    }
    
    .quick-view-info h2 {
        font-size: 1.5rem;
    }

    .quick-view-info .price {
        font-size: 1.2rem;
    }

    .quick-view-info .description {
        font-size: 1rem;
    }
    
    .quick-view-info .trait {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .quick-view-info .order-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .quick-view-slider .main-image {
        height: 250px;
    }
    
    .quick-view-thumbnails img {
        width: 60px;
        height: 60px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .close-modal {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Sale Badge Styles */
/* Note: .product-card rule consolidated with main definition at line 1183 */

.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.sale-badge.special-offer {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #2a0845;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: specialOfferPulse 1.5s infinite;
  border: 2px solid #FF6B6B;
}

@keyframes specialOfferPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  }
}

.sale-badge::before {
    content: '';
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(255, 107, 156, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Sale Banner */
.sale-banner {
    background: linear-gradient(45deg, #ff6b9c, #ff4757);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 156, 0.3);
    animation: slideIn 0.5s ease-out;
}

.sale-banner h2 {
    font-size: 2rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sale-banner p {
    margin: 0.5rem 0 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

/* Sale Timer */
.sale-timer {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    margin-top: 0.5rem;
    display: inline-block;
    }
    
.sale-timer span {
    font-weight: 600;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sale-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
}

    .sale-badge::before {
        font-size: 1rem;
}

    .sale-banner h2 {
        font-size: 1.5rem;
}

    .sale-banner p {
        font-size: 1rem;
    }
}

.quick-view-info .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b6b;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-view-info .price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    }
    
.quick-view-info .price .sale-price {
    color: #ff6b6b;
    font-size: 1.5rem;
    }
    
.quick-view-info .price .sale-badge {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
    }

.quick-view-info .traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.quick-view-info .trait {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.quick-view-info .trait:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.quick-view-info .trait i {
    color: #ff6b6b;
}

@media (max-width: 768px) {
    .quick-view-info .price {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .quick-view-info .price .original-price {
        font-size: 1rem;
    }

    .quick-view-info .price .sale-price {
        font-size: 1.2rem;
}

    .quick-view-info .price .sale-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Add sale badge styles for quick view */
.quick-view-info .price .sale-badge {
    position: static;
    display: inline-block;
    margin-left: 1rem;
    animation: pulse 2s infinite;
}

/* Giveaway Card Styles */
.giveaway-card {
    position: relative;
    background: linear-gradient(45deg, #fff5f5, #fff);
    border: 2px solid #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
    animation: giveawayGlow 2s infinite;
}

@keyframes giveawayGlow {
    0% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 107, 0.4); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.2); }
}

.giveaway-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
    animation: bounce 1s infinite;
}

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

.giveaway-quantity {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e) !important;
    color: white !important;
}

.giveaway-price {
    color: #ff6b6b !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
}

.giveaway-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e) !important;
    color: white !important;
    font-weight: 600 !important;
    animation: pulse 2s infinite;
}

.giveaway-card .product-name {
    color: #ff6b6b;
    font-weight: 700;
}

.giveaway-card .trait {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.giveaway-card .trait i {
    color: #ff6b6b;
}

.giveaway-card .product-story {
    color: #ff6b6b;
    font-weight: 500;
}

/* Mobile Responsive for Giveaway Card */
@media (max-width: 768px) {
    .giveaway-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .giveaway-price {
        font-size: 1.2rem !important;
    }
    
    .giveaway-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* --- Size Selector Pills for Product Cards --- */
.size-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.2rem 0 1.5rem 0;
  z-index: 20;
  position: relative;
}
.size-pill {
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  border: 1.5px solid #e0e0e0;
  background: #f8f8fa;
  color: #7f8fa6;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 8px rgba(161,196,253,0.08);
  outline: none;
  z-index: 21;
  position: relative;
  pointer-events: auto;
}
.size-pill:hover, .size-pill:focus {
  background: linear-gradient(90deg, #a1c4fd 0%, #c2e9fb 100%);
  color: #fff;
  border-color: #a1c4fd;
  box-shadow: 0 4px 15px #a1c4fd33;
}
.size-pill.active {
  background: linear-gradient(90deg, #ff6b9c 0%, #a1c4fd 100%);
  color: #fff;
  border-color: #ff6b9c;
  box-shadow: 0 0 20px #ff6b9c33;
}
@media (max-width: 600px) {
  .size-selector {
    gap: 0.5rem;
    margin: 0.8rem 0 1.2rem 0;
  }
  .size-pill {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 110px;
    text-align: center;
    z-index: 21;
  }
}

/* Sold Out Styles */
.sold-out-card {
  opacity: 0.7;
  filter: grayscale(30%);
  position: relative;
}

.sold-out-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

.sold-out-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  z-index: 10;
  animation: soldOutPulse 2s infinite;
}

@keyframes soldOutPulse {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 4px 25px rgba(255, 107, 107, 0.5);
    transform: scale(1.05);
  }
}

.sold-out-quantity {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.sold-out-quantity i {
  color: white !important;
  animation: soldOutIcon 1.5s infinite;
}

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

.sold-out-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  cursor: not-allowed !important;
  opacity: 0.8 !important;
  position: relative;
  overflow: hidden;
}

.sold-out-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;
}

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

.sold-out-btn:hover {
  transform: none !important;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
}

.sold-out-btn i {
  color: white !important;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .sold-out-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
  
  .sold-out-card {
    opacity: 0.7;
  }
}

/* Pricing Includes Section */
.pricing-includes {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border: 2px solid #FF6B6B;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  animation: pricingGlow 2s ease-in-out infinite alternate;
  text-align: center;
}

.pricing-includes p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a0845;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.pricing-includes i {
  color: #FF6B6B;
  margin-right: 0.5rem;
  animation: checkPulse 1.5s ease-in-out infinite;
}

@keyframes pricingGlow {
  0% {
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transform: translateY(0);
  }
  100% {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
  }
}

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

@media (max-width: 768px) {
  .pricing-includes {
    padding: 0.8rem 1rem;
    margin-top: 0.8rem;
  }
  
  .pricing-includes p {
    font-size: 1rem;
  }
}

/* Special Offer Banner */
.special-offer-banner {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  animation: specialOfferGlow 3s ease-in-out infinite alternate;
  border: 3px solid #FFD700;
}

.special-offer-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.special-offer-banner p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.special-offer-timer {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFD700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes specialOfferGlow {
  0% {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .special-offer-banner {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .special-offer-banner h2 {
    font-size: 1.5rem;
  }
  
  .special-offer-banner p {
    font-size: 1rem;
  }
}

/* New Drop Hero Banner */
.new-drop-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #FF6B9C, #FF8E53, #FFD700);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/perfect.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.drop-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.drop-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.drop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.drop-badge i {
  color: #FFD700;
  animation: sparkle 1.5s ease-in-out infinite;
}

.drop-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B9C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.drop-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.drop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.drop-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.drop-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.drop-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFD700;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
  margin-bottom: 0.5rem;
}

.drop-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.drop-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.drop-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.drop-btn.primary {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #2a0845;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  animation: buttonGlow 2s ease-in-out infinite alternate;
}

.drop-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

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

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

.drop-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-plushie {
  position: absolute;
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1.5s;
}

.floating-3 {
  top: 30%;
  right: 25%;
  animation-delay: 3s;
}

.floating-4 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4.5s;
}

/* New Drop Section */
.new-drop-section {
  padding: 0;
  background: transparent;
  position: relative;
  overflow: visible;
}

.new-drop-section::before {
  display: none;
}

/* Featured collection products are copied to all-products-grid by JavaScript */

/* Ensure main collection flows directly from hero */
#main-collection {
  margin-top: 0;
  padding-top: 2rem;
}

.drop-header {
  text-align: center;
  margin-bottom: 3rem;
}

.drop-section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2a0845;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #FF6B9C, #FF8E53, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.drop-section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.drop-timer {
  background: linear-gradient(45deg, #FF6B9C, #FF8E53);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 156, 0.3);
  animation: timerPulse 2s ease-in-out infinite;
}

.drop-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.drop-product-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(239, 220, 228, 0.95);
  box-shadow: 0 14px 36px rgba(231, 188, 203, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}

.drop-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 177, 198, 0.92);
  box-shadow: 0 24px 56px rgba(231, 188, 203, 0.22);
}

.lainika-original-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.75), transparent 24%),
    radial-gradient(circle at 90% 100%, rgba(255, 213, 232, 0.78), transparent 30%),
    linear-gradient(150deg, #ffe2ef 0%, #ffcfe5 48%, #ffe7f3 100%);
  border: 1px solid rgba(175, 54, 110, 0.78);
  box-shadow: 0 24px 60px rgba(170, 44, 103, 0.28);
  position: relative;
  overflow: visible;
  transform-origin: center;
}

.lainika-original-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 25px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.lainika-original-card::before {
  content: 'Lainika Originals';
  position: absolute;
  top: -12px;
  right: 14px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #98265b 0%, #d74f88 100%);
  box-shadow: 0 10px 20px rgba(151, 39, 89, 0.28);
  z-index: 4;
}

.lainika-original-card:hover {
  border-color: rgba(146, 34, 86, 0.94);
  box-shadow: 0 30px 70px rgba(157, 37, 90, 0.36);
  transform: translateY(-10px) scale(1.01);
}

.lainika-original-card .drop-badge-limited {
  background: linear-gradient(135deg, #8f1f54 0%, #d14580 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 28px rgba(160, 37, 95, 0.34);
  top: 0.8rem;
  left: 0.8rem;
}

.lainika-original-card .drop-quantity-badge {
  background: rgba(255, 255, 255, 0.96);
  color: #8f2653;
  border: 1px solid rgba(214, 125, 165, 0.9);
  right: 0.8rem;
  left: auto;
}

.lainika-original-card .drop-product-image {
  border: 1px solid rgba(198, 97, 144, 0.45);
  border-radius: 16px 16px 28px 28px;
  margin: 0.75rem;
  margin-bottom: 0.4rem;
  height: 250px;
  box-shadow: 0 12px 30px rgba(159, 52, 99, 0.22);
}

.lainika-original-card .drop-product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.lainika-original-card .drop-product-info {
  background: linear-gradient(180deg, rgba(255, 251, 253, 0.94) 0%, rgba(255, 236, 246, 0.98) 100%);
  border-top: 1px solid rgba(201, 112, 156, 0.44);
  border-radius: 18px;
  margin: 0 0.75rem 0.75rem;
  padding-top: 1.15rem;
}

.lainika-original-card .drop-product-name {
  color: #8f2854;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.lainika-original-card .drop-product-story {
  color: #74445a;
}

.lainika-original-card .drop-trait {
  background: rgba(255, 225, 239, 0.98);
  color: #8f2b59;
  border: 1px solid rgba(214, 131, 172, 0.9);
  border-radius: 999px;
  font-weight: 700;
}

.lainika-original-card .drop-trait i {
  color: #bc3f73;
}

.lainika-original-card .drop-order-btn-primary,
.lainika-original-card .drop-order-btn,
.lainika-original-card .drop-quick-view-btn {
  box-shadow: 0 12px 26px rgba(157, 37, 90, 0.24);
}

.lainika-original-card .drop-order-btn-primary {
  background: linear-gradient(135deg, #a3265f, #df5f95);
}

.lainika-original-card .drop-order-btn-primary:hover {
  background: linear-gradient(135deg, #8b1f50, #cf4d85);
}

@media (max-width: 768px) {
  .lainika-original-card .drop-product-image {
    height: 290px;
  }

  .lainika-original-card .drop-product-image img {
    object-fit: contain;
    background: linear-gradient(180deg, rgba(255, 241, 248, 0.82), rgba(255, 248, 252, 0.96));
    padding: 0.4rem;
  }
}

.originals-drop-card {
  order: -1;
  background:
    radial-gradient(circle at top right, rgba(255, 218, 229, 0.95), transparent 36%),
    linear-gradient(160deg, #fff7fb 0%, #fffdf7 48%, #fff2f7 100%);
  border: 1px solid rgba(232, 166, 191, 0.95);
  box-shadow: 0 20px 50px rgba(225, 150, 180, 0.2);
}

.originals-drop-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 25px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.originals-drop-card:hover {
  border-color: rgba(220, 131, 169, 0.95);
  box-shadow: 0 28px 64px rgba(225, 150, 180, 0.28);
}

.originals-drop-card .drop-badge-limited {
  background: linear-gradient(135deg, #ff6f91 0%, #ff9671 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 30px rgba(255, 111, 145, 0.28);
}

.originals-drop-card .drop-quantity-badge {
  background: rgba(255, 251, 253, 0.96);
  color: #b23c68;
  border: 1px solid rgba(255, 173, 197, 0.9);
}

.originals-drop-card .drop-product-info {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 243, 248, 0.98) 100%);
}

.originals-drop-card .drop-product-name {
  color: #9f2f5d;
}

.originals-drop-card .drop-product-story {
  color: #7e4560;
}

.originals-drop-card .drop-trait {
  background: rgba(255, 230, 239, 0.9);
  color: #a33861;
  border: 1px solid rgba(245, 183, 204, 0.9);
}

.originals-drop-card .drop-trait i {
  color: #d95d8a;
}

.originals-drop-card .drop-order-btn-primary,
.originals-drop-card .drop-order-btn,
.originals-drop-card .drop-quick-view-btn {
  box-shadow: 0 12px 26px rgba(225, 150, 180, 0.18);
}

.originals-drop-card.originals-drop-card--new {
  background:
    radial-gradient(circle at top left, rgba(255, 242, 248, 0.95), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 214, 226, 0.8), transparent 24%),
    linear-gradient(160deg, #fff8fb 0%, #fff4f8 50%, #fff0f5 100%);
  border-color: rgba(229, 145, 176, 0.95);
}

.originals-drop-card.originals-drop-card--new::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 25px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 0 0 12px rgba(255, 191, 208, 0.08);
  pointer-events: none;
}

.originals-drop-card.originals-drop-card--new .drop-product-image {
  position: relative;
}

.originals-drop-card.originals-drop-card--new .drop-product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.originals-drop-card.originals-drop-card--new .drop-product-info {
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(255, 208, 220, 0.8);
}

.originals-drop-card.originals-drop-card--new .drop-product-name {
  color: #b2416d;
}

.originals-drop-card.originals-drop-card--new .drop-trait {
  background: rgba(255, 232, 240, 0.95);
  color: #b04f76;
  border-color: rgba(245, 186, 212, 0.9);
}

.originals-badge-glow {
  background: linear-gradient(135deg, rgba(255, 230, 241, 0.95), rgba(255, 192, 212, 0.95));
  box-shadow: 0 12px 24px rgba(255, 134, 175, 0.18);
}

.originals-signature-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 34%),
    linear-gradient(145deg, #fff3f8 0%, #ffe8f2 45%, #ffeef7 100%);
  border: 1px solid rgba(214, 108, 152, 0.72);
  box-shadow: 0 20px 52px rgba(214, 108, 152, 0.2);
}

.originals-signature-card .drop-product-image {
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95), rgba(255, 232, 242, 0.92));
  border: 1px solid rgba(232, 154, 187, 0.45);
}

.originals-signature-card .drop-product-image::after {
  content: 'Originals Lens';
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.28rem 0.66rem;
  border-radius: 999px;
  background: rgba(186, 56, 113, 0.88);
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
}

.originals-signature-card .drop-badge-limited {
  background: linear-gradient(135deg, #ba3871 0%, #f06b98 100%);
}

.originals-signature-card .drop-product-name {
  color: #972b5c;
}

.originals-signature-card .drop-product-story {
  color: #7d3b58;
}

.originals-signature-card .drop-trait {
  background: rgba(255, 233, 243, 0.95);
  border-color: rgba(234, 157, 189, 0.88);
  color: #a03f68;
}

.originals-v2-card {
  border-radius: 26px;
  overflow: hidden;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #ffe9f3 0%, #ffdcec 54%, #ffeef6 100%);
  border: 1px solid rgba(206, 88, 139, 0.55);
  box-shadow: 0 22px 54px rgba(191, 73, 126, 0.25);
}

.originals-v2-card .drop-badge-limited,
.originals-v2-card .drop-quantity-badge {
  display: none;
}

.originals-v2-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, #b72f6f 0%, #de5f95 100%);
  color: #fff;
}

.originals-v2-stamp {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.originals-v2-lookaround {
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.originals-v2-card .drop-product-image {
  margin: 0.85rem;
  margin-bottom: 0.6rem;
  border-radius: 18px;
}

.originals-v2-card .drop-product-image::after {
  content: 'ORIGINALS LENS';
}

.originals-v2-info {
  padding-top: 0.3rem;
  background: linear-gradient(180deg, rgba(255, 247, 251, 0.88) 0%, rgba(255, 236, 246, 0.96) 100%);
  border-top: 1px solid rgba(227, 148, 184, 0.5);
}

.originals-v2-card .drop-product-name {
  font-size: 1.38rem;
}

.originals-v2-card .drop-product-story {
  min-height: 2.6rem;
}

.originals-v2-traits {
  margin-top: 0.4rem;
}

.originals-fresh-card {
  padding-top: 0;
  border: 1px solid rgba(200, 96, 143, 0.7);
  box-shadow: 0 20px 52px rgba(196, 88, 138, 0.24);
  background: linear-gradient(155deg, #fff1f7 0%, #ffe4f0 52%, #fff4fa 100%);
}

.originals-fresh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(221, 151, 183, 0.45);
  background: linear-gradient(135deg, rgba(182, 53, 108, 0.95) 0%, rgba(224, 113, 156, 0.95) 100%);
}

.originals-fresh-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.originals-fresh-pill--alt {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.69rem;
}

.originals-fresh-card .drop-product-image {
  margin: 0.85rem;
  margin-bottom: 0.65rem;
  border-radius: 18px;
}

.originals-fresh-card .drop-product-info {
  background: linear-gradient(180deg, rgba(255, 248, 252, 0.88) 0%, rgba(255, 235, 246, 0.95) 100%);
}

.originals-fresh-card .drop-product-name {
  color: #9f2f5d;
}

.originals-drop-card--restock .drop-badge-limited {
  background: linear-gradient(135deg, #ff8fab 0%, #fb6f92 100%);
}

.drop-badge-limited {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 246, 250, 0.92);
  color: #b44f77;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  border: 1px solid rgba(255, 193, 214, 0.9);
  box-shadow: 0 10px 24px rgba(231, 188, 203, 0.18);
  animation: limitedPulse 2s ease-in-out infinite;
}

.drop-quantity-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: #c15780;
  border: 1px solid rgba(255, 193, 214, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 10px 24px rgba(231, 188, 203, 0.18);
  animation: quantityPulse 1.5s ease-in-out infinite;
}

.drop-product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.drop-product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.3s ease;
}

.drop-product-image img.active {
  opacity: 1;
}

.drop-product-card:hover .drop-product-image img {
  transform: scale(1.05);
}

.drop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(35, 18, 29, 0.12), rgba(35, 18, 29, 0.72));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.drop-product-card:hover .drop-overlay {
  opacity: 1;
}

.drop-overlay-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.drop-quick-view-btn,
.drop-order-btn {
  min-height: 2.9rem;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.drop-quick-view-btn {
  background: rgba(255, 255, 255, 0.92);
  color: #7d3455;
}

.drop-order-btn {
  background: linear-gradient(135deg, #ff84aa, #ef6e95);
  color: #fff;
  box-shadow: 0 12px 26px rgba(239, 110, 149, 0.22);
}

.drop-quick-view-btn:hover,
.drop-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.drop-product-info {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 250, 0.98));
}

.drop-product-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2130;
  line-height: 1.18;
  margin-bottom: 0.9rem;
}

.drop-product-traits {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.drop-trait {
  background: rgba(255, 239, 245, 0.92);
  color: #b04f76;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(255, 207, 223, 0.9);
}

.drop-product-story {
  color: #6d6470;
  margin-bottom: 1.35rem;
  line-height: 1.65;
  max-width: 30ch;
}

.drop-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.drop-product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c2130;
}

.drop-original-price {
  text-decoration: line-through;
  color: #6c757d;
  margin-right: 0.5rem;
}

.drop-order-btn-primary {
  background: linear-gradient(135deg, #ff84aa, #ef6e95);
  color: #fff;
  border: none;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 14px 28px rgba(239, 110, 149, 0.24);
  white-space: nowrap;
}

.drop-order-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(239, 110, 149, 0.3);
  filter: saturate(1.03);
}

.drop-footer {
  text-align: center;
  margin-top: 3rem;
}

.drop-urgency {
  background: linear-gradient(45deg, #FF6B9C, #FF8E53);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 25px;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 107, 156, 0.3);
  animation: urgencyPulse 2s ease-in-out infinite;
}

.drop-notify-btn {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #2a0845;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.drop-notify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  100% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

@keyframes buttonGlow {
  0% { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }
  100% { box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6); }
}

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

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

@keyframes timerPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 156, 0.3); }
  50% { box-shadow: 0 8px 25px rgba(255, 107, 156, 0.5); }
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(255, 107, 156, 0.3); }
  50% { box-shadow: 0 12px 35px rgba(255, 107, 156, 0.5); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .drop-title {
    font-size: 2.5rem;
  }
  
  .drop-subtitle {
    font-size: 1.1rem;
  }
  
  .drop-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .drop-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .drop-section-title {
    font-size: 2rem;
  }
  
  .drop-products {
    grid-template-columns: 1fr;
  }
  
  .drop-product-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .drop-order-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .drop-title {
    font-size: 2rem;
  }
  
  .drop-hero-content {
    padding: 0 1rem;
  }
  
  .drop-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Drop Quick View Modal Styles */
.drop-modal-content {
    background: linear-gradient(160deg, #fff8fb 0%, #fff1f6 52%, #ffedf4 100%);
    border: 1px solid rgba(255, 134, 176, 0.35);
    box-shadow: 0 28px 70px rgba(255, 107, 156, 0.24);
    max-width: 1200px;
    width: 95%;
    border-radius: 30px;
    overflow: hidden;
    transform-origin: center;
}

.drop-modal-content.is-peeking {
    animation: dropQuickViewPop 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.drop-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.drop-quick-view-slider {
    position: relative;
    background:
        radial-gradient(circle at top, rgba(255, 208, 224, 0.55), transparent 34%),
        linear-gradient(160deg, #fffefe 0%, #fff7fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.drop-quick-view-stage-glow {
    position: absolute;
    inset: 10% 12%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 182, 208, 0.32) 0%, rgba(255, 182, 208, 0) 72%);
    filter: blur(16px);
    pointer-events: none;
}

.drop-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 22px;
    transition: transform 0.35s ease, opacity 0.28s ease;
    filter: drop-shadow(0 22px 35px rgba(210, 133, 168, 0.22));
}

.drop-main-image:hover {
    transform: scale(1.03);
}

.drop-main-image.is-changing {
    animation: dropMainImageBounce 0.42s ease;
}

.drop-image-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 181, 205, 0.8);
    color: #9f4f72;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 24px rgba(235, 171, 189, 0.16);
    z-index: 2;
}

.drop-quick-view-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.84);
    padding: 10px;
    border-radius: 18px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 194, 214, 0.72);
    box-shadow: 0 16px 28px rgba(228, 163, 184, 0.18);
}

.drop-quick-view-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.drop-quick-view-thumbnails img.active,
.drop-quick-view-thumbnails img:hover {
    border-color: #ff6b9c;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 22px rgba(255, 107, 156, 0.24);
}

.drop-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #c3557e;
    border: 1px solid rgba(255, 181, 205, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 24px rgba(228, 163, 184, 0.18);
}

.drop-slider-nav.prev { left: 20px; }
.drop-slider-nav.next { right: 20px; }

.drop-slider-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 18px 28px rgba(228, 163, 184, 0.24);
}

.drop-quick-view-info {
    padding: 42px 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 251, 253, 0.96) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drop-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.drop-modal-badge {
    background: rgba(255, 231, 239, 0.95);
    color: #bb5479;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 181, 205, 0.8);
}

.drop-modal-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6b9c;
    font-weight: 600;
    font-size: 14px;
}

.drop-modal-quantity i {
    animation: pulse 2s infinite;
}

.drop-quick-view-info h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c2230;
    margin-bottom: 14px;
    line-height: 1.04;
}

.drop-modal-price {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.drop-modal-original-price {
    color: #95a5a6;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 500;
}

.drop-modal-sale-price {
    color: #ff6b9c;
    font-size: 25px;
    font-weight: 700;
}

.drop-modal-reactions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.drop-modal-reaction {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 236, 242, 0.95);
    border: 1px solid rgba(255, 194, 214, 0.9);
    color: #b45477;
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(235, 171, 189, 0.12);
    animation: dropReactionPop 0.45s ease both;
    animation-delay: calc(var(--reaction-delay, 0) * 70ms);
}

.drop-modal-description {
    color: #746a75;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.drop-modal-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.drop-modal-trait {
    background: rgba(255, 255, 255, 0.9);
    color: #5f5963;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(230, 221, 226, 0.92);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.drop-modal-trait:hover {
    background: linear-gradient(135deg, #ff7ca8 0%, #ff9cba 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 156, 0.3);
}

.drop-modal-trait i {
    color: #ff6b9c;
    font-size: 16px;
}

.drop-modal-trait:hover i {
    color: white;
}

.drop-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drop-modal-helper {
    margin: -0.25rem 0 1.2rem;
    color: #9a7d8b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.drop-modal-order-btn,
.drop-modal-whatsapp-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
    letter-spacing: 0.02em;
}

.drop-modal-order-btn {
    background: linear-gradient(135deg, #ff6f9f 0%, #ff8db3 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 156, 0.4);
}

.drop-modal-order-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 35px rgba(255, 107, 156, 0.6);
}

.drop-modal-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.drop-modal-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.drop-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    color: #c25980;
    border: 1px solid rgba(255, 181, 205, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.drop-close-modal:hover {
    background: #fff;
    transform: scale(1.08) rotate(90deg);
}

/* Mobile Quick View Text Button for Drop Products */
.drop-mobile-quick-view-text-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b9c 0%, #ff8fab 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: none; /* Hidden by default on desktop */
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 15;
    box-shadow: 0 4px 15px rgba(255, 107, 156, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drop-mobile-quick-view-text-btn:hover {
    background: linear-gradient(135deg, #ff8fab 0%, #ff6b9c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 156, 0.5);
}

.drop-mobile-quick-view-text-btn i {
    margin-right: 6px;
    font-size: 12px;
}

/* Show mobile quick view button on smaller screens */
@media (max-width: 768px) {
    .drop-mobile-quick-view-text-btn {
        display: flex;
    }
    
    /* Hide the overlay quick view button on mobile since we have the always-visible one */
    .drop-product-card .drop-overlay {
        display: none;
    }
}

/* Responsive Design for Drop Modal */
@media (max-width: 900px) {
    .drop-modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .drop-quick-view-info {
        padding: 30px 25px;
    }
    
    .drop-quick-view-info h2 {
        font-size: 28px;
    }
    
    .drop-modal-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .drop-modal-actions {
        gap: 12px;
    }
    
    .drop-modal-order-btn,
    .drop-modal-whatsapp-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .drop-modal-content {
        width: 98%;
        margin: 10px;
        border-radius: 24px;
    }
    
    .drop-quick-view-info {
        padding: 25px 20px;
    }
    
    .drop-quick-view-info h2 {
        font-size: 24px;
    }
    
    .drop-modal-description {
        font-size: 14px;
    }
    
    .drop-modal-traits {
        gap: 8px;
    }
    
    .drop-modal-trait {
        padding: 6px 12px;
        font-size: 12px;
    }

    .drop-modal-reaction {
        font-size: 0.78rem;
    }
    
    .drop-quick-view-thumbnails {
        bottom: 10px;
        gap: 8px;
        padding: 8px;
        max-width: calc(100% - 24px);
        overflow-x: auto;
        justify-content: flex-start;
        left: 12px;
        right: 12px;
        transform: none;
    }
    
    .drop-quick-view-thumbnails img {
        width: 50px;
        height: 50px;
    }
    
    .drop-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .drop-slider-nav.prev { left: 10px; }
    .drop-slider-nav.next { right: 10px; }
    
    .drop-mobile-quick-view-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }
}

@keyframes dropQuickViewPop {
    0% {
        transform: translateY(22px) scale(0.96);
    }
    60% {
        transform: translateY(-4px) scale(1.01);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes dropMainImageBounce {
    0% {
        transform: scale(0.96);
        opacity: 0.72;
    }
    55% {
        transform: scale(1.02);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes dropReactionPop {
    0% {
        transform: translateY(10px) scale(0.96);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Sold Out Items Styling */
.sold-out-section {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 2px solid #f0f0f0;
}

.sold-out-title {
  text-align: center;
  font-size: 24px;
  color: #666;
  margin-bottom: 30px;
  font-weight: 600;
}

.sold-out-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

/* Sold Out Product Card Styling */
.drop-product-card.sold-out {
  opacity: 0.6;
  filter: grayscale(50%);
  position: relative;
}

.drop-product-card.sold-out::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

.drop-product-card.sold-out .drop-product-image img {
  filter: grayscale(30%);
}

.drop-product-card.sold-out .drop-badge-limited {
  background: linear-gradient(135deg, #999, #666);
  color: white;
}

.drop-product-card.sold-out .drop-quantity-badge {
  background: rgba(255, 0, 0, 0.8);
  color: white;
}

.drop-product-card.sold-out .drop-order-btn-primary,
.drop-product-card.sold-out .drop-order-btn {
  background: #999;
  color: white;
  cursor: not-allowed;
  opacity: 0.7;
}

.drop-product-card.sold-out .drop-order-btn-primary:hover,
.drop-product-card.sold-out .drop-order-btn:hover {
  background: #999;
  transform: none;
}

.drop-product-card.sold-out .drop-product-name {
  color: #666;
}

.drop-product-card.sold-out .drop-product-story {
  color: #888;
}

.drop-product-card.sold-out .drop-product-price {
  color: #666;
}

.drop-product-card.sold-out .drop-product-traits {
  opacity: 0.7;
}

/* Responsive adjustments for sold out section */
@media (max-width: 768px) {
  .sold-out-section {
    margin-top: 40px;
    padding: 30px 0;
  }
  
  .sold-out-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .sold-out-products {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Cute Hero Section */
.cute-hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: 
        linear-gradient(135deg, 
            #fff5fa 0%, 
            #fff0f5 20%,
            #fffaf5 40%,
            #f5f0ff 60%,
            #fff5f0 80%,
            #fff5fa 100%
        );
}

.cute-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cute-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(221, 160, 221, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 218, 185, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(255, 192, 203, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 30%, rgba(230, 230, 250, 0.25) 0%, transparent 45%),
        linear-gradient(135deg, rgba(255, 182, 193, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.cute-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='%23ffb6c1' stroke-width='2' opacity='0.06'/%3E%3Ccircle cx='50' cy='50' r='20' fill='%23dda0dd' opacity='0.08'/%3E%3Ccircle cx='150' cy='50' r='25' fill='%23ffb6c1' opacity='0.06'/%3E%3Ccircle cx='50' cy='150' r='20' fill='%23ffdab9' opacity='0.08'/%3E%3Ccircle cx='150' cy='150' r='25' fill='%23e6e6fa' opacity='0.06'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='75' cy='75' r='8' fill='%23ffb6c1' opacity='0.08'/%3E%3Ccircle cx='30' cy='30' r='5' fill='%23dda0dd' opacity='0.1'/%3E%3Ccircle cx='120' cy='30' r='6' fill='%23ffdab9' opacity='0.08'/%3E%3Ccircle cx='30' cy='120' r='5' fill='%23ffb6c1' opacity='0.1'/%3E%3Ccircle cx='120' cy='120' r='6' fill='%23e6e6fa' opacity='0.08'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60,30 L65,50 L85,50 L70,62 L75,82 L60,70 L45,82 L50,62 L35,50 L55,50 Z' fill='%23ffb6c1' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 400px 400px, 300px 300px, 240px 240px;
    background-position: 0 0, 150px 150px, 80px 80px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}


.cute-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #2a2a2a;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.cute-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 182, 193, 0.4);
    animation: cuteBadgePulse 2s ease-in-out infinite;
    color: #dda0dd;
}

.cute-hero-badge i {
    animation: cuteIconBeat 1.5s ease-in-out infinite;
    color: #ffb6c1;
}

@keyframes cuteIconBeat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25%, 75% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.15) rotate(-5deg); }
}

@keyframes cuteBadgePulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 rgba(255, 182, 193, 0.3); }
    50% { transform: scale(1.05); opacity: 0.95; box-shadow: 0 0 20px rgba(255, 182, 193, 0.5); }
}

.cute-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #dda0dd;
    -webkit-text-fill-color: #dda0dd;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    text-shadow: 
        0 3px 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cute-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #2a2a2a;
    text-shadow: 
        0 2px 6px rgba(255, 255, 255, 0.9),
        0 0 15px rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 600;
}

.cute-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cute-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cute-feature:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
}

.cute-feature i {
    font-size: 1.8rem;
    color: #dda0dd;
}

.cute-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a2a2a;
}

.cute-hero-cta {
    margin-top: 2rem;
}

.cute-cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #ffb6c1 50%, #dda0dd 100%);
    color: #dda0dd;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cute-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
    background: linear-gradient(135deg, #dda0dd 0%, #ffb6c1 50%, #ffffff 100%);
}

.cute-cta-button i {
    animation: cuteBounce 2s ease-in-out infinite;
}

@keyframes cuteBounce {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-5px) scale(1.1) rotate(5deg); }
}

/* Floating Cute Elements Animation */
.cute-elements-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.cute-elements-products {
    z-index: 1;
}

.cute-emoji,
.cute-sparkle {
    position: absolute;
    top: -50px;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
    animation: cuteElementFall linear infinite;
    opacity: 0.5;
}

.cute-emoji {
    text-shadow: 0 0 6px rgba(255, 182, 193, 0.4), 0 0 12px rgba(221, 160, 221, 0.3);
    filter: drop-shadow(0 2px 4px rgba(255, 192, 203, 0.4));
}

.cute-sparkle {
    color: rgba(255, 218, 185, 0.8);
    text-shadow: 0 0 5px rgba(255, 192, 203, 0.5), 0 0 10px rgba(230, 230, 250, 0.3);
}

.cute-emoji:nth-child(1), .cute-sparkle:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; font-size: 1rem; }
.cute-emoji:nth-child(2), .cute-sparkle:nth-child(2) { left: 10%; animation-duration: 14s; animation-delay: 1s; font-size: 1.2rem; }
.cute-emoji:nth-child(3), .cute-sparkle:nth-child(3) { left: 15%; animation-duration: 13s; animation-delay: 2s; font-size: 1.1rem; }
.cute-emoji:nth-child(4), .cute-sparkle:nth-child(4) { left: 20%; animation-duration: 15s; animation-delay: 0.5s; font-size: 1.1rem; }
.cute-emoji:nth-child(5), .cute-sparkle:nth-child(5) { left: 25%; animation-duration: 12s; animation-delay: 1.5s; font-size: 1.3rem; }
.cute-emoji:nth-child(6), .cute-sparkle:nth-child(6) { left: 30%; animation-duration: 14s; animation-delay: 2.5s; font-size: 1rem; }
.cute-emoji:nth-child(7), .cute-sparkle:nth-child(7) { left: 35%; animation-duration: 13s; animation-delay: 0.8s; font-size: 1.2rem; }
.cute-emoji:nth-child(8), .cute-sparkle:nth-child(8) { left: 40%; animation-duration: 15s; animation-delay: 1.8s; font-size: 1.1rem; }
.cute-emoji:nth-child(9), .cute-sparkle:nth-child(9) { left: 45%; animation-duration: 12s; animation-delay: 0.3s; font-size: 1.1rem; }
.cute-emoji:nth-child(10), .cute-sparkle:nth-child(10) { left: 50%; animation-duration: 14s; animation-delay: 2.2s; font-size: 1.3rem; }
.cute-emoji:nth-child(11), .cute-sparkle:nth-child(11) { left: 55%; animation-duration: 13s; animation-delay: 1.2s; font-size: 1rem; }
.cute-emoji:nth-child(12), .cute-sparkle:nth-child(12) { left: 60%; animation-duration: 15s; animation-delay: 0.7s; font-size: 1.2rem; }
.cute-emoji:nth-child(13), .cute-sparkle:nth-child(13) { left: 65%; animation-duration: 12s; animation-delay: 2.8s; font-size: 1.1rem; }
.cute-emoji:nth-child(14), .cute-sparkle:nth-child(14) { left: 70%; animation-duration: 14s; animation-delay: 1.5s; font-size: 1.1rem; }
.cute-emoji:nth-child(15), .cute-sparkle:nth-child(15) { left: 75%; animation-duration: 13s; animation-delay: 0.4s; font-size: 1.3rem; }
.cute-emoji:nth-child(16), .cute-sparkle:nth-child(16) { left: 80%; animation-duration: 15s; animation-delay: 2.1s; font-size: 1rem; }
.cute-emoji:nth-child(17), .cute-sparkle:nth-child(17) { left: 85%; animation-duration: 12s; animation-delay: 1.7s; font-size: 1.2rem; }
.cute-emoji:nth-child(18), .cute-sparkle:nth-child(18) { left: 90%; animation-duration: 14s; animation-delay: 0.9s; font-size: 1.1rem; }
.cute-emoji:nth-child(19), .cute-sparkle:nth-child(19) { left: 95%; animation-duration: 13s; animation-delay: 2.3s; font-size: 1.1rem; }
.cute-emoji:nth-child(20), .cute-sparkle:nth-child(20) { left: 8%; animation-duration: 15s; animation-delay: 1.1s; font-size: 1.3rem; }
.cute-emoji:nth-child(21), .cute-sparkle:nth-child(21) { left: 18%; animation-duration: 12s; animation-delay: 2.6s; font-size: 1rem; }
.cute-emoji:nth-child(22), .cute-sparkle:nth-child(22) { left: 28%; animation-duration: 14s; animation-delay: 0.6s; font-size: 1.2rem; }
.cute-emoji:nth-child(23), .cute-sparkle:nth-child(23) { left: 38%; animation-duration: 13s; animation-delay: 1.9s; font-size: 1.1rem; }
.cute-emoji:nth-child(24), .cute-sparkle:nth-child(24) { left: 48%; animation-duration: 15s; animation-delay: 0.2s; font-size: 1.1rem; }
.cute-emoji:nth-child(25), .cute-sparkle:nth-child(25) { left: 58%; animation-duration: 12s; animation-delay: 2.4s; font-size: 1.3rem; }
.cute-emoji:nth-child(26), .cute-sparkle:nth-child(26) { left: 68%; animation-duration: 14s; animation-delay: 1.3s; font-size: 1rem; }
.cute-emoji:nth-child(27), .cute-sparkle:nth-child(27) { left: 78%; animation-duration: 13s; animation-delay: 0.8s; font-size: 1.2rem; }
.cute-emoji:nth-child(28), .cute-sparkle:nth-child(28) { left: 88%; animation-duration: 15s; animation-delay: 2.7s; font-size: 1.1rem; }
.cute-emoji:nth-child(29), .cute-sparkle:nth-child(29) { left: 98%; animation-duration: 12s; animation-delay: 1.4s; font-size: 1.1rem; }
.cute-emoji:nth-child(30), .cute-sparkle:nth-child(30) { left: 12%; animation-duration: 14s; animation-delay: 0.1s; font-size: 1.3rem; }

@keyframes cuteElementFall {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(50vh) translateX(15px) scale(1.1) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) translateX(-15px) scale(0.9) rotate(360deg);
        opacity: 0.2;
    }
}

/* Winter Product Cards - Enhanced */
.winter-product-card {
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 249, 255, 0.95) 30%,
        rgba(219, 234, 254, 0.9) 60%,
        rgba(255, 255, 255, 0.95) 100%);
    background-clip: padding-box;
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.2),
        0 0 0 3px rgba(147, 197, 253, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.winter-product-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 25%, #3b82f6 50%, #2563eb 75%, #1e40af 100%);
    border-radius: inherit;
    z-index: -1;
    transition: all 0.4s ease;
}

.winter-product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
    animation: shimmer 3s linear infinite;
    z-index: 0;
}

.winter-product-card .drop-product-image::after {
    content: '❄';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    opacity: 0.4;
    animation: twinkle 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.winter-product-card:hover {
    box-shadow: 
        0 15px 40px rgba(37, 99, 235, 0.3),
        0 0 0 3px rgba(96, 165, 250, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-10px) scale(1.03);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(240, 249, 255, 1) 30%,
        rgba(219, 234, 254, 0.95) 60%,
        rgba(255, 255, 255, 1) 100%);
}

.winter-product-card:hover::before {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 25%, #2563eb 50%, #1d4ed8 75%, #1e3a8a 100%);
}

.winter-product-card .drop-product-image {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(219, 234, 254, 0.3) 100%);
    border-bottom: 2px solid rgba(147, 197, 253, 0.2);
    position: relative;
    z-index: 1;
}

.winter-product-card .drop-product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    pointer-events: none;
    animation: frost-shine 3s ease-in-out infinite;
}

@keyframes frost-shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.winter-product-card .drop-badge-limited {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.winter-product-card .drop-quantity-badge {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.9) 0%, rgba(191, 219, 254, 0.9) 100%);
    color: #1e40af;
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.2);
    font-weight: 600;
}

.winter-product-card .drop-product-info {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 249, 255, 0.9) 100%);
    border-top: 1px solid rgba(147, 197, 253, 0.2);
    position: relative;
    z-index: 1;
}

.winter-product-card .drop-product-name {
    color: #1e40af;
    text-shadow: 0 1px 2px rgba(30, 64, 175, 0.1);
}

.winter-product-card .drop-product-story {
    color: #1e3a8a;
}

.winter-product-card .drop-product-price {
    color: #1e40af;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(30, 64, 175, 0.1);
}

.winter-product-card .drop-order-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.winter-product-card .drop-order-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.6);
    transform: translateY(-2px);
}

.winter-product-card .drop-trait {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.6) 0%, rgba(191, 219, 254, 0.6) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #1e40af;
}

/* Stitch Spotlight Cards (Best Sellers) */
.stitch-product-card {
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(239, 246, 255, 0.96) 28%,
        rgba(253, 242, 248, 0.92) 62%,
        rgba(255, 255, 255, 0.97) 100%);
    background-clip: padding-box;
    box-shadow:
        0 14px 40px rgba(59, 130, 246, 0.18),
        0 0 0 3px rgba(167, 139, 250, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stitch-product-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg,
        #22d3ee 0%,
        #60a5fa 22%,
        #a78bfa 52%,
        #ff6b9c 78%,
        #38bdf8 100%);
    border-radius: inherit;
    z-index: -1;
    transition: all 0.4s ease;
}

.stitch-product-card::after {
    content: '';
    position: absolute;
    top: -55%;
    left: -55%;
    width: 210%;
    height: 210%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.35;
    pointer-events: none;
    animation: shimmer 3.5s linear infinite;
    z-index: 0;
}

.stitch-product-card:hover {
    transform: translateY(-10px) scale(1.035);
    box-shadow:
        0 18px 55px rgba(37, 99, 235, 0.22),
        0 0 0 3px rgba(34, 211, 238, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 38px rgba(167, 139, 250, 0.25);
}

.stitch-product-card:hover::before {
    filter: saturate(1.15) brightness(1.05);
}

.stitch-product-card .drop-product-image {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.45) 0%, rgba(252, 231, 243, 0.35) 100%);
    border-bottom: 2px solid rgba(99, 102, 241, 0.18);
    position: relative;
    z-index: 1;
}

.stitch-product-card .drop-product-image::after {
    content: '💙';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.25rem;
    opacity: 0.55;
    animation: twinkle 2.4s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 6px 10px rgba(59, 130, 246, 0.25));
}

.stitch-product-card .drop-product-info {
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(239, 246, 255, 0.92) 55%,
        rgba(253, 242, 248, 0.9) 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.14);
    position: relative;
    z-index: 1;
}

.stitch-product-card .drop-badge-limited {
    background: linear-gradient(135deg, #38bdf8 0%, #a78bfa 60%, #ff6b9c 100%);
    color: #0b1220;
    border: 1px solid rgba(255, 255, 255, 0.45);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.18);
}

.stitch-product-card .drop-quantity-badge {
    background: linear-gradient(135deg, rgba(224, 231, 255, 0.92) 0%, rgba(219, 234, 254, 0.92) 55%, rgba(252, 231, 243, 0.9) 100%);
    color: #1e3a8a;
    border: 2px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.14);
    font-weight: 700;
}

.stitch-product-card .drop-product-name,
.stitch-product-card .drop-product-price {
    color: #1e3a8a;
    text-shadow: 0 1px 2px rgba(30, 58, 138, 0.10);
}

.stitch-product-card .drop-product-story {
    color: #1f3a6b;
}

.stitch-product-card .drop-trait {
    background: linear-gradient(135deg, rgba(224, 231, 255, 0.65) 0%, rgba(252, 231, 243, 0.6) 100%);
    border: 1px solid rgba(99, 102, 241, 0.22);
    color: #1e3a8a;
    font-weight: 700;
}

.stitch-product-card .drop-order-btn-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 45%, #ff6b9c 100%);
    color: #0b1220;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 22px rgba(99, 102, 241, 0.18);
}

.stitch-product-card .drop-order-btn-primary:hover {
    filter: brightness(1.03);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(99, 102, 241, 0.24);
}

/* Variant: PJ Stitch (softer bedtime palette) */
.stitch-product-card--pj::before {
    background: linear-gradient(135deg,
        #bae6fd 0%,
        #c7d2fe 35%,
        #fbcfe8 72%,
        #e9d5ff 100%);
}

.stitch-product-card--pj .drop-product-image {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.55) 0%, rgba(253, 242, 248, 0.45) 100%);
    border-bottom-color: rgba(251, 207, 232, 0.32);
}

.stitch-product-card--pj .drop-badge-limited {
    background: linear-gradient(135deg, #fbcfe8 0%, #c7d2fe 55%, #bae6fd 100%);
    color: #1f2937;
}

.stitch-product-card--pj .drop-product-image::after {
    content: '🌙';
}

/* Variant: Hoodie Stitch (bolder streetwear palette) */
.stitch-product-card--hoodie::before {
    background: linear-gradient(135deg,
        #0ea5e9 0%,
        #2563eb 35%,
        #7c3aed 70%,
        #db2777 100%);
}

.stitch-product-card--hoodie .drop-badge-limited {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #db2777 100%);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.stitch-product-card--hoodie .drop-product-image::after {
    content: '🧢';
}

/* Variant: Stitch Bag (slightly cleaner, accessory vibe) */
.stitch-product-card--bag::before {
    background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 35%, #a78bfa 70%, #22d3ee 100%);
}

.winter-drop-section {
    position: relative;
    background: linear-gradient(180deg, 
        rgba(240, 249, 255, 0.6) 0%, 
        rgba(219, 234, 254, 0.4) 50%,
        rgba(255, 255, 255, 1) 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.winter-drop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(147, 197, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.winter-drop-section .drop-section-title {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
    position: relative;
}

.winter-drop-section .drop-section-title::before,
.winter-drop-section .drop-section-title::after {
    content: '❄';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: twinkle 2s ease-in-out infinite;
}

.winter-drop-section .drop-section-title::before {
    left: -40px;
}

.winter-drop-section .drop-section-title::after {
    right: -40px;
}

/* Responsive Winter Hero */
@media (max-width: 768px) {
    .valentine-hero-section {
        min-height: 70vh;
        padding: 2rem 1rem;
    }

    .valentine-hero-title {
        font-size: 2.5rem;
    }

    .valentine-hero-subtitle {
        font-size: 1.1rem;
    }

    .valentine-hero-features {
        gap: 1rem;
    }

    .valentine-feature {
        padding: 0.75rem 1rem;
    }

    .valentine-feature i {
        font-size: 1.5rem;
    }

    .valentine-feature span {
        font-size: 0.8rem;
    }

    .valentine-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .valentine-hero-title {
        font-size: 2rem;
    }

    .winter-hero-subtitle {
        font-size: 1rem;
    }

    .winter-hero-features {
        flex-direction: column;
        align-items: center;
    }

    .winter-feature {
        width: 100%;
        max-width: 250px;
    }

    .snowflake {
        font-size: 1rem;
    }
}

/* Mobile adjustments for winter cards */
@media (max-width: 768px) {
    .winter-product-card {
        box-shadow: 
            0 8px 20px rgba(59, 130, 246, 0.15),
            0 0 0 2px rgba(147, 197, 253, 0.3);
    }

    .winter-product-card:hover {
        box-shadow: 
            0 12px 30px rgba(37, 99, 235, 0.25),
            0 0 0 2px rgba(96, 165, 250, 0.5);
        transform: translateY(-5px) scale(1.01);
    }
}

/* ============================================
   GARFIELD THEME - Baby Garfield Product Card
   ============================================ */

.garfield-product-card {
    background: linear-gradient(145deg, 
        #fff8e1 0%, 
        #ffe8cc 30%,
        #ffd8a8 60%,
        #fff8e1 100%);
    border: 3px solid rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.garfield-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 152, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 235, 59, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: garfieldGlow 4s ease-in-out infinite;
}

@keyframes garfieldGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.garfield-product-card:hover {
    box-shadow: 
        0 20px 50px rgba(255, 152, 0, 0.4),
        0 0 0 3px rgba(255, 193, 7, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 152, 0, 0.3);
    transform: translateY(-12px) scale(1.03);
    background: linear-gradient(145deg, 
        #fff8e1 0%, 
        #ffe8cc 25%,
        #ffd8a8 50%,
        #ffe8cc 75%,
        #fff8e1 100%);
}

.garfield-product-card .drop-product-image {
    background: linear-gradient(135deg, rgba(255, 243, 224, 0.6) 0%, rgba(255, 224, 178, 0.4) 100%);
    border-bottom: 3px solid rgba(255, 152, 0, 0.25);
    position: relative;
    z-index: 1;
}

.garfield-product-card .drop-product-image::after {
    content: '🧡';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: garfieldTwinkle 2.5s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 6px 10px rgba(255, 152, 0, 0.3));
}

@keyframes garfieldTwinkle {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.9; transform: scale(1.2) rotate(10deg); }
}

.garfield-product-card .drop-product-info {
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 248, 225, 0.95) 50%,
        rgba(255, 232, 204, 0.92) 100%);
    border-top: 2px solid rgba(255, 152, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Flash Sale Badge - Garfield Theme */
.garfield-flash-sale {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 30%, #ffa000 60%, #ffb300 100%) !important;
    color: #fff !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 
        0 8px 25px rgba(255, 111, 0, 0.6),
        0 0 20px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    animation: flashSalePulse 1.5s ease-in-out infinite !important;
    z-index: 15 !important;
}

@keyframes flashSalePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(255, 111, 0, 0.6),
            0 0 20px rgba(255, 193, 7, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 12px 35px rgba(255, 111, 0, 0.8),
            0 0 30px rgba(255, 193, 7, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

/* FOMO Badge - Garfield Theme */
.garfield-fomo {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.95) 0%, rgba(255, 152, 0, 0.95) 100%) !important;
    color: #fff !important;
    border: 2px solid rgba(255, 193, 7, 0.5) !important;
    box-shadow: 
        0 6px 20px rgba(255, 87, 34, 0.5),
        0 0 15px rgba(255, 152, 0, 0.3) !important;
    font-weight: 800 !important;
    animation: fomoShake 2s ease-in-out infinite !important;
}

@keyframes fomoShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-2px) rotate(-1deg); }
    75% { transform: translateX(2px) rotate(1deg); }
}

.garfield-product-card .drop-product-name {
    color: #e65100;
    text-shadow: 0 1px 2px rgba(230, 81, 0, 0.15);
    font-weight: 800;
}

.garfield-product-card .drop-product-price {
    color: #ff6f00;
    font-weight: 800;
    font-size: 1.3rem;
    text-shadow: 0 1px 3px rgba(255, 111, 0, 0.2);
}

.garfield-product-card .drop-product-story {
    color: #bf360c;
    line-height: 1.7;
}

.garfield-product-card .drop-trait {
    background: linear-gradient(135deg, rgba(255, 243, 224, 0.9) 0%, rgba(255, 224, 178, 0.85) 100%);
    border: 1.5px solid rgba(255, 152, 0, 0.4);
    color: #e65100;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.2);
}

.garfield-product-card .drop-trait:hover {
    background: linear-gradient(135deg, rgba(255, 224, 178, 0.95) 0%, rgba(255, 193, 7, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Garfield Order Button */
.garfield-order-btn {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 50%, #ffa000 100%) !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 
        0 8px 20px rgba(255, 111, 0, 0.5),
        0 0 15px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.garfield-order-btn:hover {
    background: linear-gradient(135deg, #ff8f00 0%, #ffa000 50%, #ffb300 100%) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 
        0 12px 30px rgba(255, 111, 0, 0.7),
        0 0 25px rgba(255, 193, 7, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.garfield-order-btn:active {
    transform: translateY(-1px) scale(1.02) !important;
}

/* Mobile adjustments for Garfield card */
@media (max-width: 768px) {
    .garfield-product-card {
        box-shadow: 
            0 8px 20px rgba(255, 152, 0, 0.25),
            0 0 0 2px rgba(255, 193, 7, 0.4);
    }

    .garfield-product-card:hover {
        box-shadow: 
            0 12px 30px rgba(255, 152, 0, 0.35),
            0 0 0 2px rgba(255, 193, 7, 0.6);
        transform: translateY(-6px) scale(1.01);
    }

    .garfield-flash-sale {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}
