/* Cute Cloud Frosted Glass Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', cursive;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 25%, #E0F6FF 50%, #F0F8FF 75%, #87CEEB 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Clouds */
.clouds-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.cloud {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 25s infinite ease-in-out;
}

.cloud1 { top: 10%; left: 10%; animation-delay: 0s; }
.cloud2 { top: 20%; right: 15%; animation-delay: 5s; }
.cloud3 { top: 60%; left: 5%; animation-delay: 10s; }
.cloud4 { top: 70%; right: 20%; animation-delay: 15s; }
.cloud5 { top: 40%; left: 60%; animation-delay: 20s; }
.cloud6 { top: 80%; right: 40%; animation-delay: 25s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-5px); }
    75% { transform: translateY(-20px) translateX(8px); }
}

/* Enhanced 3D Frosted Glass Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 2px solid rgba(255, 105, 180, 0.3);
    border-image: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.5), transparent) 1;
    padding: 1rem 0;
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.2),
        0 4px 16px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateZ(0);
    perspective: 1000px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff1493;
    text-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

.logo-emoji {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.cart-btn, .menu-btn {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 105, 180, 0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #ff1493;
    box-shadow: 
        0 8px 25px rgba(255, 105, 180, 0.25),
        0 4px 12px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 105, 180, 0.2);
    position: relative;
    transform-style: preserve-3d;
}

.cart-btn:hover, .menu-btn:hover {
    background: rgba(255, 105, 180, 0.9);
    color: white;
    transform: translateY(-4px) translateZ(10px) rotateX(5deg);
    box-shadow: 
        0 15px 35px rgba(255, 105, 180, 0.4),
        0 8px 20px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    border-left: 2px solid rgba(255, 105, 180, 0.4);
    box-shadow: 
        -10px 0 30px rgba(255, 105, 180, 0.2),
        -5px 0 15px rgba(255, 255, 255, 0.1),
        inset 1px 0 0 rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
}

.mobile-menu.open {
    right: 0;
}

.menu-content {
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff1493;
    cursor: pointer;
    margin-bottom: 2rem;
}

.menu-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-items a {
    display: block;
    padding: 1rem;
    color: #ff1493;
    text-decoration: none;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.menu-items a:hover {
    background: rgba(255, 105, 180, 0.2);
    transform: translateX(5px);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 80px;
    right: -250px;
    width: 250px;
    height: calc(100vh - 100px);
    max-height: 600px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1002;
    border-left: 2px solid rgba(255, 105, 180, 0.4);
    border-radius: 20px 0 0 20px;
    box-shadow: 
        -10px 0 30px rgba(255, 105, 180, 0.2),
        -5px 0 15px rgba(255, 255, 255, 0.1),
        inset 1px 0 0 rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
}

.cart-sidebar.open {
    right: 0;
}

.cart-content {
    padding: 1.5rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.cart-header h3 {
    color: #ff1493;
    font-size: 1.1rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff1493;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
    max-height: 180px;
}

.empty-cart {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.cart-footer {
    border-top: 1px solid rgba(255, 105, 180, 0.3);
    padding-top: 0.3rem;
    margin-top: auto;
}

.cart-total {
    margin-bottom: 0.5rem;
}

.cart-total p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.cart-total .total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff1493;
    border-top: 1px solid rgba(255, 105, 180, 0.3);
    padding-top: 0.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

.section {
    display: none;
    padding: 2rem 0;
}

.section.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Scrollable Hero Section */
.hero-no-scroll {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow: visible;
}

.hero-glass-compact {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(30px) saturate(200%) brightness(110%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 30px;
    padding: 2rem 1.5rem;
    max-width: 650px;
    width: 100%;
    min-height: calc(80vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: visible;
    box-shadow: 
        0 25px 50px rgba(255, 105, 180, 0.25),
        0 12px 25px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 0 rgba(255, 105, 180, 0.2),
        inset 2px 0 0 rgba(255, 255, 255, 0.3),
        inset -2px 0 0 rgba(255, 105, 180, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-glass-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 105, 180, 0.05) 100%);
    border-radius: 30px;
    pointer-events: none;
}

.hero-glass-compact::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 25%, 
        rgba(255, 105, 180, 0.3) 50%, 
        rgba(255, 255, 255, 0.5) 75%, 
        rgba(255, 105, 180, 0.6) 100%);
    border-radius: 32px;
    z-index: -1;
    filter: blur(1px);
}

/* Top Row Layout */
.hero-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo-container {
    flex: 1;
    min-width: 200px;
}

.hero-logo-large {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(255, 105, 180, 0.4));
    animation: logoFloat 6s infinite ease-in-out;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.product-showcase-zoomed {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.product-img-zoomed {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
}

.product-img-zoomed:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.6);
}

/* Middle Row Content */
.hero-middle-row {
    text-align: center;
    padding: 1rem 0;
}

.hero-subtitle-large {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.hero-description-large {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.social-footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px) saturate(180%);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.9rem;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 
        0 6px 15px rgba(255, 105, 180, 0.2),
        0 3px 8px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.social-footer-link:hover {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    transform: translateY(-5px) translateZ(10px) rotateX(8deg);
    box-shadow: 
        0 12px 25px rgba(255, 105, 180, 0.5),
        0 6px 15px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.social-text {
    font-weight: 600;
}

/* Copyright Notice */
.copyright-notice {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.copyright-notice p {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

/* Promo Code Section */
.promo-code-section {
    padding: 0.6rem;
    margin: 0.3rem 0 0.5rem 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.promo-code-section h4 {
    color: #ff1493;
    margin: 0 0 0.6rem 0;
    font-size: 0.9rem;
}

.promo-code-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.promo-code-input {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 10px;
    font-family: 'Fredoka', cursive;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.promo-code-input:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}

.promo-code-input::placeholder {
    color: #999;
    font-weight: 400;
}

.apply-promo-btn,
.remove-promo-btn {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 10px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.apply-promo-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.remove-promo-btn {
    background: #e74c3c;
    color: white;
}

.apply-promo-btn:hover,
.remove-promo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.3);
}

.discount-display {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
}

/* Button Table Layout */
.button-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-row {
    margin-top: 0.5rem;
}

.table-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    min-height: 80px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px) saturate(150%);
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.table-btn.primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.table-btn.secondary {
    background: linear-gradient(135deg, #4285f4, #1e88e5);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.table-btn.tertiary {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    color: white;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.table-btn.quaternary {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.table-btn.social {
    background: rgba(255, 255, 255, 0.9);
    color: #ff1493;
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.table-btn:hover {
    transform: translateY(-8px) translateZ(15px) rotateX(10deg) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.table-btn.social:hover {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border-color: transparent;
}

.btn-icon {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    display: block;
}

.btn-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Hover Effects */
.table-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;
}

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

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-heart, .floating-star, .floating-flower {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatGentle 8s infinite ease-in-out;
}

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

.floating-star {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

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

@keyframes floatGentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

/* Social Links */
.social-links {
    margin-top: 1.5rem;
    text-align: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.social-link:hover {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* Payment Section */
.payment-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.payment-section h3 {
    color: #ff1493;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.payment-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.payment-card p {
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ff1493;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.5) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 
        0 10px 25px rgba(255, 105, 180, 0.15),
        0 5px 12px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 105, 180, 0.1);
}

.category-card:hover {
    transform: translateY(-8px) translateZ(15px) rotateX(5deg) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0.6) 100%);
    box-shadow: 
        0 20px 40px rgba(255, 105, 180, 0.3),
        0 10px 20px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    color: #ff1493;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.category-card:hover .category-overlay {
    opacity: 0.95;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    font-family: 'Fredoka', cursive;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ff1493;
}

.filter-tab.active,
.filter-tab:hover {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    transform: translateY(-2px);
}

/* Shipping Info */
.shipping-info {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Search Bar */
.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.search-bar {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 3rem;
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.search-input:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.clear-search {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ff1493;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.clear-search:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-50%) scale(1.1);
}

/* Filter Tabs */
.scents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Scent Card Badges */
.scent-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.bestseller-badge {
    background: linear-gradient(135deg, #ff4500, #ff6347);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.new-badge {
    background: linear-gradient(135deg, #32cd32, #90ee90);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.scent-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.5) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    transform: scale(1);
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 
        0 10px 25px rgba(255, 105, 180, 0.15),
        0 5px 12px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 105, 180, 0.1);
}

.scent-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.scent-card:hover {
    transform: translateY(-8px) translateZ(15px) rotateX(5deg) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(255, 105, 180, 0.3),
        0 10px 20px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.5) 100%);
}

.scent-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
}

.scent-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff1493;
    margin-bottom: 0.5rem;
}

.scent-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Scent Rating */
.scent-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    font-size: 1rem;
    color: #ffd700;
}

.rating-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.scent-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff1493;
    margin-bottom: 1rem;
}

.add-to-cart-btn,
.reviews-btn {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 20px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.reviews-btn {
    background: rgba(255, 255, 255, 0.8);
    color: #ff1493;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.add-to-cart-btn:hover,
.reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.reviews-btn:hover {
    background: rgba(255, 105, 180, 0.1);
}

/* Quiz Section */
.quiz-glass {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.quiz-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    font-weight: 600;
    color: #ff1493;
    min-width: 60px;
}

.quiz-question h3 {
    color: #ff1493;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-option {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
}

.quiz-option:hover {
    background: rgba(255, 105, 180, 0.2);
    transform: translateX(5px);
}

.quiz-option.selected {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border-color: #ff1493;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.quiz-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-btn.primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.quiz-btn.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #ff1493;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.quiz-result {
    text-align: center;
}

.quiz-result h3 {
    color: #ff1493;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.recommended-scents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.recommended-scent {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.recommended-scent h4 {
    color: #ff1493;
    margin-bottom: 0.5rem;
}

.recommended-scent p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-glass {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.review-form-container {
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.star-rating .star {
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    opacity: 1;
    transform: scale(1.2);
}

.star-rating .star.active {
    color: #ffd700;
}

.submit-review-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* Review Photo Styles */
.review-photo-section {
    margin: 1rem 0;
    text-align: center;
}

.review-photo {
    max-width: 200px;
    max-height: 200px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.review-photo:hover {
    transform: scale(1.05);
}

.photo-caption {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Photo Modal Styles */
.photo-modal-content {
    max-width: 600px;
    width: 90vw;
}

.photo-modal-body {
    text-align: center;
    padding: 1rem;
}

.modal-photo {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

.photo-caption {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* Customer Reviews List */
.customer-review-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #ff1493;
    font-size: 1.1rem;
}

.review-scent {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.review-rating {
    font-size: 1.2rem;
}

.customer-review-text {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-date {
    color: #888;
    font-size: 0.8rem;
    text-align: right;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

/* Photo Upload Styling */
.photo-upload-input {
    padding: 0.8rem;
    border: 2px dashed rgba(255, 105, 180, 0.3);
    border-radius: 15px;
    font-family: 'Fredoka', cursive;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-upload-input:hover {
    border-color: #ff1493;
    background: rgba(255, 240, 246, 0.9);
}

.photo-preview {
    margin-top: 1rem;
    text-align: center;
    position: relative;
}

.preview-img {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.remove-photo-btn {
    position: absolute;
    top: -10px;
    right: calc(50% - 110px);
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.remove-photo-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Review Photo Display */
.review-photo {
    margin-top: 1rem;
    text-align: center;
}

.review-photo img {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.customer-reviews-section {
    margin-top: 3rem;
}

/* Order Summary Modal */
.order-summary-modal .modal-content {
    max-width: 500px;
    text-align: center;
}

.order-success-content {
    padding: 1rem 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.order-details {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.order-details p {
    margin: 0.5rem 0;
    font-weight: 600;
}

.order-note {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500 !important;
}

.discount-applied {
    color: #28a745;
    font-weight: 700 !important;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    margin-top: 1rem !important;
}

.next-steps {
    background: rgba(255, 240, 246, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.next-steps h5 {
    color: #ff1493;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.next-steps li {
    margin: 0.5rem 0;
    padding-left: 1rem;
}

.continue-shopping-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.continue-shopping-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.customer-reviews-section h3 {
    color: #ff1493;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.customer-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.customer-review-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.customer-review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #ff1493;
    font-size: 1rem;
}

.review-scent {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.2rem;
}

.review-rating {
    font-size: 1rem;
}

.customer-review-text {
    color: #333;
    line-height: 1.5;
    font-size: 0.95rem;
    font-style: italic;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Mobile-specific styles for customer reviews */
@media (max-width: 768px) {
    .customer-reviews-section {
        margin-top: 2rem;
        padding: 1rem;
    }

    .customer-reviews-list {
        max-height: none;
        overflow-y: visible;
    }

    .customer-review-item {
        margin-bottom: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 105, 180, 0.3);
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-scent {
        font-size: 0.85rem;
    }

    .customer-review-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .review-rating {
        font-size: 1.1rem;
    }

    .reviews-glass {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* About Section */
.about-glass {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: #ff1493;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    color: #ff1493;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff1493;
    cursor: pointer;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #ff1493;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 15px;
    font-family: 'Fredoka', cursive;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.order-summary {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.order-summary h4 {
    color: #ff1493;
    margin-bottom: 1rem;
}

.checkout-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff1493;
    text-align: right;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 105, 180, 0.3);
}

.gcash-qr {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.gcash-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gcash-qr p {
    color: #2c3e50;
    font-weight: 600;
    margin: 0.5rem 0;
}

.gcash-qr p strong {
    color: #ff1493;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-glass-compact {
        padding: 1.5rem 1rem;
        min-height: calc(85vh - 80px);
    }

    .hero-top-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-logo-large {
        max-width: 320px;
    }

    .product-img-zoomed {
        width: 150px;
        height: 180px;
    }

    .hero-subtitle-large {
        font-size: 1.5rem;
    }

    .hero-description-large {
        font-size: 1rem;
    }

    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .social-footer-link {
        width: 200px;
        justify-content: center;
    }

    .table-btn {
        min-height: 70px;
        padding: 1rem 0.8rem;
    }

    .btn-icon {
        font-size: 1.5rem;
    }

    .btn-text {
        font-size: 0.8rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .category-card {
        padding: 1.5rem 1rem;
    }

    .category-icon {
        font-size: 2rem;
    }

    .scents-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .filter-tabs {
        gap: 0.25rem;
    }

    .filter-tab {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .quiz-navigation {
        flex-direction: column;
    }

    .quiz-btn {
        width: 100%;
    }

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

    .cart-sidebar {
        width: 100%;
        right: -100%;
        top: 70px;
        height: calc(100vh - 90px);
        max-height: none;
        border-radius: 0;
    }

    .mobile-menu {
        width: 100%;
    }

    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
}

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

    .hero-glass-compact {
        padding: 1rem 0.8rem;
        min-height: calc(90vh - 80px);
    }

    .hero-logo-large {
        max-width: 280px;
    }

    .product-img-zoomed {
        width: 130px;
        height: 160px;
    }

    .hero-subtitle-large {
        font-size: 1.4rem;
    }

    .hero-description-large {
        font-size: 0.95rem;
    }

    .product-showcase-zoomed {
        gap: 1rem;
    }

    .button-table {
        gap: 0.8rem;
    }

    .button-row {
        gap: 0.8rem;
    }

    .table-btn {
        min-height: 65px;
        padding: 0.8rem 0.5rem;
    }

    .btn-icon {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }

    .btn-text {
        font-size: 0.75rem;
    }

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

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

    .quiz-glass,
    .about-glass {
        padding: 1rem;
    }

    .social-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .social-link {
        display: flex;
        justify-content: center;
        margin: 0;
        max-width: 220px;
        width: 100%;
    }
}

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

.section.active {
    animation: fadeIn 0.5s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reviews Modal */
.reviews-content {
    max-height: 60vh;
    overflow-y: auto;
}

.overall-rating {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.rating-stars {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.rating-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff1493;
    margin-right: 0.5rem;
}

.review-count {
    color: #666;
    font-size: 0.9rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.review-stars {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.review-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

/* Photo Modal */
.photo-modal-content {
    max-width: 600px;
    text-align: center;
}

.photo-modal-body {
    padding: 1rem;
}

.modal-photo {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.photo-caption {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
    font-weight: 500;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
}

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

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

    @keyframes burstEffect {
        0% { 
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0.8;
        }
        50% {
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 1;
        }
        100% { 
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
        }
    }

    @keyframes sparkleExplosion {
        0% {
            transform: scale(0.5) translateY(0px);
            opacity: 1;
        }
        100% {
            transform: scale(1.5) translateY(-30px);
            opacity: 0;
        }
    }

    @keyframes sunRaySpread {
        0% {
            transform: scale(0.5) translateY(0px);
            opacity: 0.8;
        }
        100% {
            transform: scale(1.2) translateY(-50px);
            opacity: 0;
        }
    }

    @keyframes cuteElementFloat {
        0% {
            transform: translateX(0px) translateY(0px) rotate(0deg);
            left: -50px;
        }
        25% {
            transform: translateX(0px) translateY(-10px) rotate(90deg);
        }
        50% {
            transform: translateX(0px) translateY(-5px) rotate(180deg);
        }
        75% {
            transform: translateX(0px) translateY(-15px) rotate(270deg);
        }
        100% {
            transform: translateX(0px) translateY(0px) rotate(360deg);
            left: calc(100vw + 50px);
        }
    }

    @keyframes popIn {
        0% {
            transform: translate(-50%, -50%) scale(0) rotate(-180deg);
            opacity: 0;
        }
        50% {
            transform: translate(-50%, -50%) scale(1.1) rotate(-90deg);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
            opacity: 1;
        }
    }

    @keyframes popOut {
        0% {
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(0) rotate(180deg);
            opacity: 0;
        }
    }

/* Order tracking styles */
.order-tracking {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.order-tracking h5 {
    color: #ff1493;
    margin-bottom: 1rem;
    text-align: center;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.status-step {
    flex: 1;
    padding: 0.8rem 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    min-width: 120px;
}

.status-step.active {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border-color: #ff1493;
    transform: scale(1.02);
}

.order-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.review-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Customer feedback improvements */
.customer-review-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.7) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
}

.customer-review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.25);
    border-color: rgba(255, 105, 180, 0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.reviewer-name {
    font-weight: 700;
    color: #ff1493;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.review-scent {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    background: rgba(255, 105, 180, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    width: fit-content;
}

.review-rating {
    font-size: 1.2rem;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.customer-review-text {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
    font-style: italic;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border-left: 4px solid #ff69b4;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
    margin-top: 1rem;
    text-align: right;
    font-weight: 500;
}

/* Enhanced notification styles */
.notification-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.notification-error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}

.notification-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

/* No results styling */
.no-results {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    width: 100%;
    grid-column: 1 / -1;
}

.no-results-content {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-results h3 {
    color: #ff1493;
    margin-bottom: 1rem;
}

.no-results p {
    color: #666;
    margin-bottom: 1.5rem;
}

.clear-search-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* Mobile responsiveness for order tracking */
@media (max-width: 768px) {
    .status-bar {
        flex-direction: column;
    }

    .status-step {
        min-width: auto;
        margin-bottom: 0.5rem;
    }

    .order-actions {
        flex-direction: column;
        align-items: center;
    }

    .review-btn,
    .continue-shopping-btn {
        width: 100%;
        max-width: 250px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-rating {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .customer-review-item {
        padding: 1rem;
    }

    .customer-review-text {
        font-size: 0.95rem;
        padding: 0.8rem;
    }

    .order-tracking {
        padding: 1rem;
    }

    .status-step {
        font-size: 0.8rem;
        padding: 0.6rem 0.3rem;
    }
}