/* Font Faces - Shabnam */
@font-face {
    font-family: 'Shabnam';
    src: url('Shabnam.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Shabnam';
    src: url('Shabnam-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Shabnam';
    src: url('Shabnam-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Shabnam', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE5CC 25%, #FFD9B3 50%, #FFCC99 75%, #FFBF80 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #5C4033;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 218, 185, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 228, 196, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 192, 203, 0.3) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

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

/* Floating Cookie Emojis */
body::after {
    content: '🍪 🍪 🍪';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    font-size: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 20s ease-in-out infinite;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header - Pinterest Fantasy Style */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 3px solid rgba(255, 182, 193, 0.3);
}

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

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 30%, #DEB887 60%, #F4A460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(210, 105, 30, 0.3);
    position: relative;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 182, 193, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 182, 193, 0.8)); }
}

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

.nav-item {
    color: #8B4513;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 218, 185, 0.2) 100%);
    border: 2px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
}

.nav-item:hover {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.4) 0%, rgba(255, 218, 185, 0.4) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
    border-color: rgba(255, 182, 193, 0.6);
}

.nav-item i {
    color: #D2691E;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.nav-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Hero Section - Pinterest Fantasy */
.hero-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 245, 0.9) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(139, 69, 19, 0.2);
    animation: titleFloat 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    color: #8B4513;
    line-height: 1.8;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 182, 193, 0.3);
}

/* Weekly Menu Section */
.weekly-menu-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.5) 0%, rgba(255, 228, 196, 0.5) 100%);
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(139, 69, 19, 0.2);
    position: relative;
}

.section-title::after {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: cookieSpin 2s ease-in-out infinite;
}

@keyframes cookieSpin {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-50%) rotate(15deg); }
}

.category-section {
    margin: 0 auto;
    max-width: 1000px;
}

.category-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.category-container::-webkit-scrollbar {
    height: 8px;
}

.category-container::-webkit-scrollbar-track {
    background: rgba(255, 182, 193, 0.2);
    border-radius: 10px;
}

.category-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    border-radius: 10px;
}

.category-scroll {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.category-item {
    min-width: 160px;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 245, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: #8B4513;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-weight: 600;
    font-size: 1.1rem;
    border: 3px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.category-item:hover::before {
    left: 100%;
}

.category-item:hover {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(255, 218, 185, 0.3) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 182, 193, 0.4);
    border-color: rgba(255, 182, 193, 0.6);
}

.category-item.active {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    color: #FFFFFF;
    border-color: rgba(255, 182, 193, 0.8);
    box-shadow: 0 12px 40px rgba(255, 182, 193, 0.5);
    transform: scale(1.05);
}

/* Products Section - Pinterest Style */
.products-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 240, 245, 0.8) 100%);
    position: relative;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 240, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 218, 185, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.product-card::after {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.3);
    border-color: rgba(255, 182, 193, 0.6);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.selected {
    border: 3px solid #FFB6C1;
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.4);
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.95) 0%, rgba(255, 228, 196, 0.95) 100%);
}

.product-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) saturate(1.1);
}

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

.product-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 0.75rem;
    color: #8B4513;
    line-height: 1.4;
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-price {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin: 0 1.5rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-stock-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 1rem 1.5rem;
    position: relative;
    z-index: 1;
}

.product-stock {
    font-size: 1rem;
    color: #A0522D;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.cart-icon-btn {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
}

.cart-icon-btn:hover {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, #FF91A4 0%, #FF7F9F 100%);
    box-shadow: 0 8px 30px rgba(255, 182, 193, 0.6);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    color: white;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
    border: 3px solid white;
    animation: badgePulse 2s ease-in-out infinite;
}

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

.product-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 1.5rem 1.5rem;
    justify-content: center;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quantity-btn {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
}

.quantity-btn:hover {
    background: linear-gradient(135deg, #FF91A4 0%, #FF7F9F 100%);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(255, 182, 193, 0.6);
}

.quantity-input {
    width: 75px;
    text-align: center;
    border: 3px solid rgba(255, 182, 193, 0.4);
    border-radius: 15px;
    padding: 0.7rem;
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #8B4513;
    transition: all 0.3s ease;
}

.quantity-input:focus {
    border-color: #FFB6C1;
    outline: none;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.2);
}

/* Origin Story Section */
.origin-story-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(255, 228, 196, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.origin-story-section::before {
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cookieFloat 10s ease-in-out infinite;
}

@keyframes cookieFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.origin-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.origin-tagline {
    font-size: 1.5rem;
    color: #8B4513;
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 500;
}

.origin-text {
    text-align: right;
    font-size: 1.15rem;
    line-height: 2.2;
    color: #5C4033;
}

.origin-text p {
    margin-bottom: 2rem;
    position: relative;
    padding-right: 2rem;
}

.origin-text p::before {
    content: '✨';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
}

.origin-text strong {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 245, 0.9) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 240, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 182, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.3);
    border-color: rgba(255, 182, 193, 0.6);
}

.testimonial-stars {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.testimonial-text {
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-detail {
    font-size: 1.05rem;
    color: #5C4033;
    line-height: 1.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Cookie Crush Section */
.cookie-crush-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(255, 228, 196, 0.6) 100%);
    text-align: center;
    position: relative;
}

.cookie-crush-subtitle {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 240, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    text-decoration: none;
    color: #8B4513;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    border: 3px solid rgba(255, 182, 193, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.social-link:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.4);
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    color: #FFFFFF;
    border-color: rgba(255, 182, 193, 0.6);
}

.social-link i {
    font-size: 2.5rem;
    color: #D2691E;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover i {
    color: #FFFFFF;
    transform: scale(1.2) rotate(10deg);
}

.social-link span {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Newsletter Section */
.newsletter-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 245, 0.9) 100%);
    text-align: center;
    position: relative;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 3rem;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 280px;
    padding: 1.25rem 2rem;
    border: 3px solid rgba(255, 182, 193, 0.4);
    border-radius: 30px;
    font-size: 1.1rem;
    font-family: 'Shabnam', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #8B4513;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FFB6C1;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.2);
    transform: scale(1.02);
}

.newsletter-form button {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Shabnam', sans-serif;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
    position: relative;
    overflow: hidden;
}

.newsletter-form button::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;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #FF91A4 0%, #FF7F9F 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 182, 193, 0.5);
}

/* Order Section */
.order-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(255, 228, 196, 0.6) 100%);
    display: none;
}

.order-section.active {
    display: block;
}

.order-section h2 {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: bold;
    font-size: 2.5rem;
}

.order-summary {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 240, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 182, 193, 0.2);
    color: #5C4033;
}

.order-item:last-child {
    border-bottom: none;
}

.order-total {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 3px solid rgba(255, 182, 193, 0.3);
}

.order-form {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 240, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.order-form h3 {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    color: #8B4513;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 3px solid rgba(255, 182, 193, 0.4);
    border-radius: 20px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #5C4033;
    font-family: 'Shabnam', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFB6C1;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.2);
    transform: scale(1.01);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0522D;
    opacity: 0.6;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    font-family: 'Shabnam', sans-serif;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn::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;
}

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

.submit-btn:hover {
    background: linear-gradient(135deg, #FF91A4 0%, #FF7F9F 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.5);
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(255, 182, 193, 0.5);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid rgba(255, 255, 255, 0.5);
    animation: cartFloat 3s ease-in-out infinite;
}

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

.floating-cart:hover {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, #FF91A4 0%, #FF7F9F 100%);
    box-shadow: 0 15px 45px rgba(255, 182, 193, 0.7);
}

.floating-cart i {
    font-size: 2.2rem;
    color: white;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    color: #FFFFFF;
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFB6C1 0%, #FF91A4 50%, #FFB6C1 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: #CCCCCC;
    font-size: 1.05rem;
}

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

.enamad a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.enamad a:hover {
    transform: scale(1.1);
}

.enamad img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(255, 182, 193, 0.3));
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 182, 193, 0.2);
    color: #CCCCCC;
    font-size: 1rem;
}

/* Product Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 240, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 100%);
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
}

.modal-close:hover {
    background: linear-gradient(135deg, #FF91A4 0%, #FF7F9F 100%);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
}

.modal-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.5) 0%, rgba(255, 228, 196, 0.5) 100%);
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.modal-product-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 25px;
    filter: brightness(1.05) saturate(1.1);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-product-name {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.modal-product-price {
    font-size: 2rem;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.modal-product-stock {
    font-size: 1.2rem;
    color: #A0522D;
    font-weight: 500;
}

.modal-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.5), transparent);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.modal-description-title {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
}

.modal-product-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5C4033;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 769px) {
    .products-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

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

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

    .section-title::after {
        display: none;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image-container {
        height: 250px;
    }

    .modal-product-image {
        min-height: 250px;
    }

    .origin-content {
        padding: 2rem;
    }
}

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

    .products-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 250px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .floating-cart {
        width: 65px;
        height: 65px;
        bottom: 20px;
        left: 20px;
    }
}
