:root {
    --bg-dark: #0a0a0f;
    --primary: #d4af37; /* Metallic Gold */
    --primary-glow: rgba(212, 175, 55, 0.5);
    --secondary: #ff6b35; /* Accent Orange */
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(25, 25, 35, 0.4);
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-orb.top-left {
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    top: -20vh;
    left: -20vw;
}

.glow-orb.bottom-right {
    width: 70vw;
    height: 70vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 60%);
    bottom: -30vh;
    right: -20vw;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Typography & Utilities */
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }

/* Glassmorphism Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Header */
.glass-header {
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

.mobile-menu {
    display: block;
    cursor: pointer;
    color: var(--text-main);
}

@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .mobile-menu { display: none; }
    .logo h1 { font-size: 1.75rem; }
}

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-ghost:hover {
    color: var(--text-main);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #a68321 100%);
    color: #111;
    font-weight: 800;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* Hero Section */
.hero-section {
    padding: 3rem 0;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 992px) {
    .hero-section { padding: 5rem 0 4rem; }
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .hero-content { flex: 1; max-width: 550px; }
    .hero-image-wrapper { flex: 1; }
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

@media (min-width: 768px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

@media (min-width: 768px) { .hero-desc { font-size: 1.15rem; } }

.rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    color: var(--primary);
}

.stars i { width: 18px; height: 18px; fill: var(--primary); }

.rating-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Price Card in Hero */
.price-card {
    padding: 1.5rem;
    transform-style: preserve-3d;
    max-width: 450px;
}

@media (min-width: 768px) { .price-card { padding: 2rem; } }

.price-header {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transform: translateZ(30px);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

@media (min-width: 768px) { .current-price { font-size: 3rem; } }

.old-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.discount-badge {
    background: var(--primary);
    color: #111;
    padding: 0.15rem 0.5rem;
    border-radius: 0.3rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.btn-buy {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #e04b16 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    transform: translateZ(40px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-buy:hover {
    transform: translateZ(40px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-buy i { width: 20px; height: 20px; }

@media (min-width: 768px) { 
    .btn-buy { font-size: 1.25rem; padding: 1.15rem; } 
    .btn-buy i { width: 24px; height: 24px; }
}

.pulse-animation {
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.safe-checkout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    transform: translateZ(20px);
    font-weight: 500;
}

.safe-checkout i { width: 16px; height: 16px; color: var(--primary); }

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.floating-egg-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    animation: floating 6s ease-in-out infinite;
    z-index: 2;
    transform-style: preserve-3d;
}

@keyframes floating {
    0% { transform: translateY(0px) rotateX(0) rotateY(0); }
    50% { transform: translateY(-20px) rotateX(2deg) rotateY(3deg); }
    100% { transform: translateY(0px) rotateX(0) rotateY(0); }
}

.hero-image {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
    display: block;
}

.holo-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border: 2px solid var(--primary-glow);
    border-radius: 50%;
    transform: rotateX(75deg);
    box-shadow: inset 0 0 20px var(--primary-glow), 0 0 20px var(--primary-glow);
    z-index: 1;
    animation: rotate-ring 15s linear infinite;
    opacity: 0.6;
}

@keyframes rotate-ring {
    0% { transform: rotateX(75deg) rotate(0deg); }
    100% { transform: rotateX(75deg) rotate(360deg); }
}

.backdrop-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    z-index: 0;
    filter: blur(40px);
}

/* Offer Section */
.offer-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) { .offer-section { padding: 6rem 0; } }

.section-header { margin-bottom: 2.5rem; }
.section-title { font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

@media (min-width: 768px) { 
    .section-header { margin-bottom: 3.5rem; }
    .section-title { font-size: 2.5rem; } 
    .section-subtitle { font-size: 1.15rem; }
}

.product-card {
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.02);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

.product-card:hover .product-image {
    transform: scale(1.15) rotate(2deg);
}

.discount-badge-abs {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: #111;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    font-size: 0.9rem;
}

.product-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 768px) { .product-details { padding: 2rem; } }

.product-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) { .product-name { font-size: 1.5rem; } }

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.product-rating i { width: 16px; height: 16px; fill: var(--primary); color: var(--primary); }

.product-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.old-price-sm {
    display: block;
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.current-price-sm {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

@media (min-width: 768px) { .current-price-sm { font-size: 2rem; } }

.btn-buy-sm {
    background: var(--secondary);
    color: white;
    font-weight: 800;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-buy-sm:hover {
    background: #e04b16;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.5);
}

.btn-buy-sm i { width: 18px; height: 18px; }

/* Features Section */
.features-section { padding: 3rem 0 5rem; position: relative; z-index: 10; }

@media (min-width: 768px) { .features-section { padding: 4rem 0 7rem; } }

.features-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-container { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.feature-card {
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

@media (min-width: 768px) { .feature-card { padding: 2.5rem 2rem; } }

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1);
}

@media (min-width: 768px) {
    .icon-wrapper { width: 70px; height: 70px; margin-bottom: 1.5rem; }
}

.icon-wrapper i { width: 28px; height: 28px; }
@media (min-width: 768px) { .icon-wrapper i { width: 32px; height: 32px; } }

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) { .feature-card h3 { font-size: 1.35rem; } }

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.glass-footer {
    background: rgba(10, 10, 15, 0.85);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.footer-brand { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }
.footer-desc { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

.social-links { display: flex; gap: 1rem; }
.social-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--text-main);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}
.social-btn:hover {
    background: var(--primary);
    color: #111;
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 4px 10px var(--primary-glow);
}
.social-btn i { width: 18px; height: 18px; }

.footer-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.25rem; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
    color: var(--text-muted); text-decoration: none; transition: color 0.3s ease;
    font-weight: 500; font-size: 0.95rem;
}
.footer-links a:hover { color: var(--primary); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li { display: flex; align-items: center; gap: 0.75rem; color: var(--text-muted); }
.footer-contact i { color: var(--primary); width: 20px; height: 20px; }
.contact-email { font-weight: 500; }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.disclaimer { margin-top: 0.5rem; font-size: 0.75rem; opacity: 0.7; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
