/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-orange-50: #fff7ed;
    --color-orange-100: #ffedd5;
    --color-orange-400: #fb923c;
    --color-orange-500: #f97316;
    --color-orange-600: #ea580c;
    --color-orange-800: #9a3412;
    --color-orange-900: #7c2d12;
    
    --color-pink-50: #fdf2f8;
    --color-pink-400: #f472b6;
    --color-pink-500: #ec4899;
    --color-pink-600: #db2777;
    --color-pink-900: #831843;
    
    --color-gray-100: #f3f4f6;
    --color-gray-300: #d1d5db;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-900: #111827;
    
    --color-white: #ffffff;
    --color-black: #000000;
    
    --font-playfair: 'Playfair Display', serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    line-height: 1.6;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fed7aa;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #f97316, #ec4899);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ea580c, #db2777);
}

::selection {
    background-color: #fb923c;
    color: white;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to right, var(--color-orange-50), var(--color-pink-50), var(--color-orange-50));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

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

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, var(--color-orange-400), var(--color-pink-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.logo-text {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-orange-600), var(--color-pink-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-poppins);
    font-weight: 500;
    color: var(--color-gray-700);
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-orange-600);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-orange-400), var(--color-pink-500));
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background-color: var(--color-orange-100);
}

.hamburger {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-gray-700);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: var(--color-gray-700);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-orange-200);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--color-gray-700);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(to right, var(--color-orange-500), var(--color-pink-500));
    color: var(--color-white);
}

/* ===== BUTTONS ===== */
.btn {
    font-family: var(--font-poppins);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(to right, var(--color-orange-500), var(--color-pink-500));
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-orange-600);
    border: 2px solid var(--color-orange-500);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.btn-cart {
    width: 100%;
    background: linear-gradient(to right, var(--color-orange-500), var(--color-pink-500));
    color: var(--color-white);
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.btn-cart:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.btn-offer {
    background-color: var(--color-white);
    color: var(--color-orange-600);
    font-weight: 700;
    box-shadow: var(--shadow-2xl);
}

.btn-offer:hover {
    transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--color-orange-50), var(--color-pink-50), #fefce8);
    padding-top: 5rem;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZWQ3YWEiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMzRjMC0yLjIxLTEuNzktNC00LTRzLTQgMS43OS00IDQgMS43OSA0IDQgNCA0LTEuNzkgNC00em0wLTEwYzAtMi4yMS0xLjc5LTQtNC00cy00IDEuNzktNCA0IDEuNzkgNCA0IDQgNC0xLjc5IDQtNHptMC0xMGMwLTIuMjEtMS43OS00LTQtNHMtNCAxLjc5LTQgNCAxLjc5IDQgNCA0IDQtMS43OSA0LTR6Ii8+PC9nPjwvZz48L3N2Zz4=');
    opacity: 0.5;
}

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

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-inter);
    color: var(--color-orange-600);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-playfair);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--color-orange-600), var(--color-pink-600), var(--color-orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-family: var(--font-inter);
    font-size: 1.25rem;
    color: var(--color-gray-700);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

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

.floating-emoji-1 {
    top: 5rem;
    left: 2.5rem;
    animation-delay: 0s;
}

.floating-emoji-2 {
    bottom: 8rem;
    right: 5rem;
    font-size: 3rem;
    animation-duration: 4s;
    animation-delay: 1s;
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: var(--color-white);
}

.section-gradient {
    background: linear-gradient(to bottom right, var(--color-orange-50), var(--color-pink-50));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-playfair);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-family: var(--font-inter);
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background-color: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-10px);
}

.product-image-wrapper {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

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

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--color-white);
}

.badge-bestseller {
    background: linear-gradient(to right, #facc15, var(--color-orange-500));
}

.badge-fresh {
    background: linear-gradient(to right, #34d399, #10b981);
}

.badge-special {
    background: linear-gradient(to right, var(--color-orange-400), var(--color-pink-500));
}

.badge-new {
    background: linear-gradient(to right, #f87171, var(--color-pink-500));
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: var(--font-inter);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-orange-600);
    margin-bottom: 1rem;
}

/* ===== OFFERS SECTION ===== */
.offers-section {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--color-orange-500), var(--color-pink-500), var(--color-orange-500));
    position: relative;
    overflow: hidden;
}

.offers-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMCAwaDQwdjQwSDB6TTQwIDQwaDQwdjQwSDQweiIvPjwvZz48L2c+PC9zdmc=');
    opacity: 0.5;
}

.offers-card {
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--shadow-2xl);
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background-color: #facc15;
    color: #7c2d12;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.offers-title {
    font-family: var(--font-playfair);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .offers-title {
        font-size: 3rem;
    }
}

.offers-description {
    font-family: var(--font-inter);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, var(--color-orange-400), var(--color-pink-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin: 0 auto 1.5rem;
}

.feature-title {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-family: var(--font-inter);
    color: var(--color-gray-600);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(to bottom right, var(--color-orange-50), var(--color-pink-50));
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: var(--color-orange-400);
    font-size: 1.25rem;
}

.testimonial-text {
    font-family: var(--font-inter);
    color: var(--color-gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: var(--font-poppins);
    font-weight: 700;
    color: var(--color-gray-900);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(to bottom right, var(--color-orange-900), var(--color-pink-900), var(--color-orange-900));
    color: var(--color-white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-family: var(--font-inter);
    font-size: 0.875rem;
    color: #fed7aa;
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-contact,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: var(--font-inter);
    font-size: 0.875rem;
    color: #fed7aa;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #9a3412;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #7c2d12;
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #9a3412;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-inter);
    font-size: 0.875rem;
    color: #fed7aa;
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.2s; }
.fade-in-up:nth-child(2) { animation-delay: 0.3s; }
.fade-in-up:nth-child(3) { animation-delay: 0.4s; }
.fade-in-up:nth-child(4) { animation-delay: 0.5s; }

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

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}
