/* ==============================
   FESTIVA COLORS - MAIN STYLES
   Fun, Animated, Celebratory!
   ============================== */

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

:root {
    --primary-gradient: linear-gradient(135deg, #FF4500 0%, #FF8C00 25%, #FFD700 50%, #32CD32 75%, #FF1493 100%);
    --rainbow-gradient: linear-gradient(90deg, #FF4500, #FF8C00, #FFD700, #32CD32, #00BFFF, #4169E1, #8A2BE2, #FF1493);
    --secondary-gradient: linear-gradient(135deg, #00BFFF 0%, #4169E1 50%, #8A2BE2 100%);
    --warm-gradient: linear-gradient(135deg, #FF4500 0%, #FFD700 100%);
    --cool-gradient: linear-gradient(135deg, #00BFFF 0%, #8A2BE2 100%);

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==============================
   NAVIGATION BAR
   ============================== */

.navbar {
    background: linear-gradient(90deg, rgba(255, 69, 0, 0.95) 0%, rgba(255, 20, 147, 0.95) 100%);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cart-link {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cart-badge {
    background: #FFD700;
    color: #FF4500;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    animation: bounce-badge 0.5s ease-out;
}

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

/* ==============================
   HERO SECTION
   ============================== */

.hero {
    background: linear-gradient(135deg, #FFF0F5 0%, #F0FFFF 50%, #FFFACD 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.floating-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float-blob 6s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FF4500, #FF8C00);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #00BFFF, #4169E1);
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #32CD32, #7FFF00);
    bottom: 10%;
    left: 20%;
    animation-delay: 1s;
}

.blob-4 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #8A2BE2, #FF1493);
    top: 20%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.splash-decoration {
    position: absolute;
    pointer-events: none;
}

.splash-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #FF4500 0%, #FF4500 30%, transparent 70%);
    top: 20%;
    left: 5%;
    border-radius: 50%;
    animation: splash-float 8s ease-in-out infinite;
    opacity: 0.4;
}

.splash-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #00BFFF 0%, #00BFFF 30%, transparent 70%);
    bottom: 15%;
    right: 10%;
    border-radius: 50%;
    animation: splash-float 10s ease-in-out infinite;
    animation-delay: 2s;
    opacity: 0.4;
}

.splash-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #32CD32 0%, #32CD32 30%, transparent 70%);
    top: 60%;
    right: 5%;
    border-radius: 50%;
    animation: splash-float 12s ease-in-out infinite;
    animation-delay: 4s;
    opacity: 0.4;
}

@keyframes splash-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-40px) scale(1.2);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.title-gradient {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.title-gradient.gradient-2 {
    animation: gradient-shift 4s ease infinite;
    animation-delay: 1s;
}

@keyframes gradient-shift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(30deg);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: var(--spacing-lg);
    animation: fade-in-up 1s ease-out 0.3s both;
}

/* ==============================
   BUTTONS
   ============================== */

.btn {
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.btn-bounce {
    animation: bounce-btn 1s ease infinite;
}

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

.btn-product {
    background: var(--warm-gradient);
    color: white;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 15px;
    margin-top: var(--spacing-md);
}

.btn-product:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.btn-product:active {
    transform: scale(0.98);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.2rem;
}

/* ==============================
   PRODUCTS SECTION
   ============================== */

.products-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff9f0 100%);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: var(--spacing-md);
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: var(--spacing-xl);
    animation: fade-in-up 1s ease-out;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 3px solid transparent;
    overflow: hidden;
}

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

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 69, 0, 0.3);
    border-color: #FFD700;
}

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

.product-header {
    margin-bottom: var(--spacing-md);
}

.product-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FF4500;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: #888;
    font-size: 0.95rem;
}

.color-swatches {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

.swatch {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.swatch:hover {
    transform: scale(1.15) rotateZ(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: white;
}

.product-price {
    font-size: 2rem;
    font-weight: 900;
    color: #FF4500;
    margin: var(--spacing-md) 0;
    text-shadow: 2px 2px 0px rgba(255, 212, 0, 0.5);
}

/* ==============================
   HOW IT WORKS SECTION
   ============================== */

.how-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #F0FFFF 0%, #FFFACD 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 5px solid;
    position: relative;
}

.step-1 { border-top-color: #FF4500; }
.step-2 { border-top-color: #32CD32; }
.step-3 { border-top-color: #00BFFF; }
.step-4 { border-top-color: #FF1493; }

.step-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: var(--spacing-sm);
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.step-icon {
    font-size: 3rem;
    margin-top: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

/* ==============================
   PERFECT FOR SECTION
   ============================== */

.perfect-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #fff9f0 0%, #f8f9fa 100%);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.occasion-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.occasion-card:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFFACD 100%);
}

.occasion-emoji {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    animation: bounce-emoji 2s ease infinite;
}

.occasion-card:hover .occasion-emoji {
    animation: spin-emoji 0.6s ease;
}

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

@keyframes spin-emoji {
    0% { transform: rotateY(0) scale(1); }
    50% { transform: rotateY(180deg) scale(1.2); }
    100% { transform: rotateY(360deg) scale(1); }
}

.occasion-card h3 {
    font-size: 1.2rem;
    color: #FF4500;
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.occasion-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==============================
   TESTIMONIALS SECTION
   ============================== */

.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #FFFACD 0%, #F0FFFF 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid;
    transition: all 0.3s ease;
}

.testimonial-card:nth-child(1) { border-left-color: #FF4500; }
.testimonial-card:nth-child(2) { border-left-color: #32CD32; }
.testimonial-card:nth-child(3) { border-left-color: #00BFFF; }

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    display: block;
    animation: twinkle-stars 2s ease-in-out infinite;
}

@keyframes twinkle-stars {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.testimonial-card p {
    color: #555;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.testimonial-author {
    color: #FF4500;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: var(--spacing-md);
}

/* ==============================
   FACTS SECTION
   ============================== */

.facts-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff9f0 100%);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.fact-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fact-card:hover {
    transform: scale(1.1) rotateZ(5deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.fact-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    display: block;
    animation: float 3s ease-in-out infinite;
}

.fact-card p {
    color: #666;
    font-weight: 600;
}

/* ==============================
   CTA SECTION
   ============================== */

.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--rainbow-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: move-bg 20s linear infinite;
    z-index: 0;
}

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

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

/* ==============================
   FOOTER
   ============================== */

.footer {
    background: #333;
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

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

.footer-section h4 {
    color: #FFD700;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
}

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

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
    text-shadow: 0 0 10px #FFD700;
}

.social-links {
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 2px solid #555;
    padding-top: var(--spacing-md);
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* ==============================
   CART MODAL
   ============================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 30px;
    padding: var(--spacing-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slide-up 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #FF4500;
    transform: rotate(90deg);
}

.modal-content h2 {
    color: #FF4500;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-size: 1.8rem;
}

/* ==============================
   CART ITEMS
   ============================== */

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: var(--spacing-md);
    border-left: 5px solid #FF4500;
    animation: slide-in 0.3s ease;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-info h3 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cart-item-info p {
    color: #666;
    font-size: 0.85rem;
}

.cart-item-price {
    font-weight: 800;
    color: #FF4500;
    font-size: 1.2rem;
}

.cart-item-qty {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: var(--spacing-md);
}

.cart-item-qty button {
    width: 30px;
    height: 30px;
    border: 2px solid #FF4500;
    background: white;
    color: #FF4500;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}

.cart-item-qty button:hover {
    background: #FF4500;
    color: white;
}

.cart-item-qty span {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.remove-item {
    background: #FF6347;
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    margin-left: var(--spacing-sm);
}

.remove-item:hover {
    background: #FF4500;
}

/* ==============================
   CART SUMMARY
   ============================== */

#cart-total {
    background: linear-gradient(135deg, #FFF9F0 0%, #FFFACD 100%);
    padding: var(--spacing-md);
    border-radius: 15px;
    margin: var(--spacing-lg) 0;
    border: 2px solid #FFD700;
}

#cart-total h3 {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

#cart-total .subtotal,
#cart-total .shipping,
#cart-total .total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #666;
}

#cart-total .total {
    font-size: 1.3rem;
    font-weight: 900;
    color: #FF4500;
    border-top: 2px solid #FFD700;
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.shipping-note {
    font-size: 0.8rem;
    color: #32CD32;
    font-weight: 600;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ==============================
   CART ACTIONS
   ============================== */

#cart-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-xl);
    color: #999;
}

.cart-empty p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.checkout-btn {
    background: var(--warm-gradient);
    color: white;
    padding: var(--spacing-md);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.4);
}

.checkout-btn:active {
    transform: translateY(0);
}

.continue-shopping {
    background: white;
    color: #FF4500;
    padding: var(--spacing-md);
    border: 3px solid #FF4500;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.continue-shopping:hover {
    background: #FF4500;
    color: white;
    transform: scale(1.02);
}

/* ==============================
   ANIMATIONS
   ============================== */

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-badge {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .color-swatches {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .floating-blob {
        width: 150px !important;
        height: 150px !important;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .nav-links {
        gap: var(--spacing-xs);
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

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

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