:root {
    --pistachio-darkest: #2D5A4F;
    --pistachio-dark: #3A7063;
    --pistachio: #4A8E78;
    --pistachio-medium: #6BA88A;
    --pistachio-light: #A8D5BA;
    --pistachio-lightest: #E0F0E9;
    --gold: #D4AF37;
    --gold-light: #E8C74B;
    --gold-lighter: #F0D968;
    --text-dark: #0F1419;
    --text-light: #FFFFFF;
    --bg-light: #F8F9F7;
    --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 16px 40px rgba(0, 0, 0, 0.15);
    --shadow-ultra: 0 20px 50px rgba(0, 0, 0, 0.18);
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Almarai', 'Segoe UI', 'Trebuchet MS', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f0 100%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(74, 142, 120, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9f7 0%, #f0f4f0 50%, #f5f8f5 100%);
}

/* Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    filter: blur(40px);
}

.bubble-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation: float 20s ease-in-out infinite;
}

.bubble-2 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation: float 25s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.bubble-3 {
    width: 250px;
    height: 250px;
    bottom: -30px;
    right: 10%;
    animation: float 30s ease-in-out infinite;
    animation-delay: 4s;
}

.bubble-4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation: float 22s ease-in-out infinite reverse;
    animation-delay: 1s;
}

/* Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--gold), rgba(212, 175, 55, 0.3));
    border-radius: 50%;
    animation: particleFloat 15s ease-in infinite;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

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

.particle-2 {
    left: 50%;
    top: 10%;
    animation-delay: 2s;
}

.particle-3 {
    left: 80%;
    top: 40%;
    animation-delay: 4s;
}

.particle-4 {
    left: 30%;
    top: 70%;
    animation-delay: 1s;
}

.particle-5 {
    left: 70%;
    top: 80%;
    animation-delay: 3s;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(74, 142, 120, 0.3), transparent);
    animation: orbMove 40s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    right: 10%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent);
    animation: orbMove 50s ease-in-out infinite reverse;
    animation-delay: 5s;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--gold);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    background-color: rgba(26, 26, 46, 0.95);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    perspective: 1000px;
}

.logo-container-header {
    width: 90px;
    height: 90px;
    margin-right: 15px;
}

.brand-logo, .header-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.35));
    animation: logoFloat 3.5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo:hover, .header-logo:hover {
    filter: drop-shadow(0 10px 35px rgba(212, 175, 55, 0.7)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: logoGlowPulse 0.8s ease-out;
}

.logo h1 {
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    color: var(--gold);
}

.logo p {
    font-size: 0.9em;
    opacity: 0.95;
    margin-top: 5px;
}

/* Social Links in Header */
.social-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.8em;
    transition: transform 0.4s ease, filter 0.4s ease, text-shadow 0.4s ease;
    text-decoration: none;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.4s ease;
}

.social-links a:hover {
    transform: scale(1.3) rotate(5deg);
    filter: brightness(1.3) drop-shadow(0 0 10px var(--gold));
    text-shadow: 0 0 20px var(--gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(106, 168, 138, 0.9) 0%, rgba(168, 213, 186, 0.8) 50%, rgba(106, 168, 138, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(212,175,55,0.1)"/></svg>');
    padding: 100px 20px;
    text-align: center;
    margin: 40px 0;
    border-radius: 20px;
    border-left: 6px solid var(--gold);
    box-shadow: 0 20px 60px rgba(106, 168, 138, 0.2);
    animation: heroSlideIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
    z-index: 0;
}

.hero h2 {
    font-size: 2.5em;
    color: var(--text-light);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

/* Products Section */
.products {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2em;
    color: var(--gold);
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 3px solid var(--pistachio);
}

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

/* ===== LANDING / SOCIAL HERO ===== */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: transparent;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7) 0%, rgba(26, 35, 50, 0.7) 50%, rgba(13, 31, 45, 0.7) 100%);
    z-index: 0;
}

.landing-hero .container {
    position: relative;
    z-index: 1;
}

.landing-hero .brand h1 {
    font-size: 4rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.landing-hero .tagline {
    opacity: 0.95;
    margin-bottom: 35px;
    font-size: 1.4em;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
}

.rotating-text {
    height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 20px;
    perspective: 1000px;
}

.text-item {
    position: absolute;
    font-size: 1.15em;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
}

.text-item:nth-child(1) { 
    animation: rotateText 20s steps(4, end) infinite;
    animation-delay: 0s;
}

.text-item:nth-child(2) { 
    animation: rotateText 20s steps(4, end) infinite;
    animation-delay: -5s;
}

.text-item:nth-child(3) { 
    animation: rotateText 20s steps(4, end) infinite;
    animation-delay: -10s;
}

.text-item:nth-child(4) { 
    animation: rotateText 20s steps(4, end) infinite;
    animation-delay: -15s;
}

.social-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 28px;
}

.social-cta {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 14px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.35s ease;
    z-index: -1;
}

.social-cta i { 
    font-size: 1.4em;
    transition: transform 0.35s ease;
}

.social-cta:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.social-cta:hover i {
    transform: scale(1.15) rotate(10deg);
}

.social-cta.instagram:hover { 
    background: linear-gradient(135deg, #833AB4, #fd1d1d, #fcb045);
    border-color: #fd1d1d;
}

.social-cta.tiktok:hover { 
    background: linear-gradient(135deg, #000, #69C9D0);
    border-color: #69C9D0;
}

.social-cta.whatsapp:hover { 
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
}

.social-cta.facebook:hover { 
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
    border-color: #3b5998;
}

.site-links { 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-link { 
    padding: 14px 28px; 
    border-radius: 12px; 
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--text-dark); 
    text-decoration: none; 
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.35s ease;
}

.btn-link:hover { 
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
}

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

.btn-link.ghost { 
    background: transparent; 
    border: 2px solid var(--gold);
    color: var(--text-light);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.btn-link.ghost:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.2);
}

/* ===== SITE NAV ===== */
.site-nav { display:flex; gap:18px; align-items:center; }
.site-nav a { color:var(--text-light); text-decoration:none; padding:8px 12px; border-radius:8px; font-weight:600; }
.site-nav a.active { background: rgba(255,255,255,0.08); }

/* ===== CONTACT FORM ===== */
.contact-grid { display:grid; grid-template-columns: 1fr 360px; gap:30px; align-items:start; }
.contact-form { display:flex; flex-direction:column; gap:12px; }
.contact-form label { font-weight:700; }
.contact-form input, .contact-form textarea { padding:12px; border-radius:8px; border:1px solid #e6e6e6; font-size:1em; }
.contact-form .btn-add { max-width:260px; }
.contact-info { background:var(--text-light); border-radius:12px; padding:20px; box-shadow:var(--shadow-light); }

/* make product cards more refined */
.product-card { 
    border-radius: 18px; 
    overflow: hidden; 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--text-light);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    transition: top 0.6s ease;
    z-index: 5;
}

.product-card:hover::before {
    top: 100%;
}

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

/* Product Card */
.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(212, 175, 55, 0.2);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--pistachio-light) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 240, 233, 0.7) 100%);
    position: relative;
}

.product-info h3 {
    color: var(--gold);
    font-size: 1.35em;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: var(--gold-light);
}

.product-info .price {
    font-size: 1.6em;
    color: var(--pistachio-dark);
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.product-info .description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Add to Cart Button */
.btn-add {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

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

.btn-add:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

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

.btn-add:active {
    transform: translateY(-1px);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--pistachio-light) 0%, rgba(168, 213, 186, 0.6) 100%),
                linear-gradient(to right, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(74, 142, 120, 0.05) 100%);
    padding: 60px 30px;
    margin: 50px 0;
    border-radius: 16px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 15px 40px rgba(74, 142, 120, 0.1);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: subtleDrift 30s linear infinite;
}

.about h2 {
    color: var(--gold);
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about p {
    color: var(--text-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05em;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #0d0f1b 100%);
    color: var(--text-light);
    padding: 50px 0 20px;
    margin-top: 70px;
    border-top: 3px solid var(--gold);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.social-footer {
    display: flex;
    gap: 15px;
}

.social-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.3em;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    position: relative;
}

.social-footer a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-footer a:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.social-footer a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--gold);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

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

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

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes floatBg {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-30px, 30px);
    }
}

@keyframes drift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(30px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-100px) translateX(0px);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-50px) translateX(-30px);
        opacity: 0.5;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes orbMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, -50px);
    }
    50% {
        transform: translate(0, -100px);
    }
    75% {
        transform: translate(-50px, -50px);
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.4));
    }
    100% {
        filter: drop-shadow(0 8px 25px rgba(212, 175, 55, 0.6));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .logo h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .section-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .header .container {
        gap: 15px;
    }

    .logo h1 {
        font-size: 1.5em;
    }

    .social-links {
        gap: 15px;
        font-size: 1.3em;
    }

    .social-links a {
        font-size: 1.4em;
    }

    .hero h2 {
        font-size: 1.4em;
    }

    .hero p {
        font-size: 1em;
    }

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

    .section-title {
        font-size: 1.3em;
    }

    .product-info h3 {
        font-size: 1.1em;
    }

    .product-info .price {
        font-size: 1.3em;
    }
}

@keyframes rotateText {
    0% {
        opacity: 0;
        visibility: visible;
        transform: translateY(20px);
    }
    2.5% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    22.5% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    25% {
        opacity: 0;
        visibility: visible;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
