/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-bg: #FFE5E5;
    --pink-button: #FFB3D9;
    --cream-card: #FFF8F0;
    --beige: #F5E6D3;
    --brown-text: #8B6F47;
    --brown-dark: #6B5435;
    --text-dark: #4A4A4A;
    --text-light: #8B8B8B;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--pink-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 229, 229, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ============================================
   INFO CAROUSEL
   ============================================ */
.info-carousel {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--cream-card);
    border-bottom: 1px solid var(--pink-bg);
    overflow: hidden;
    height: 45px;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 80px;
    animation: scrollCarousel 25s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.carousel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brown-dark);
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
    padding: 0 20px;
}

.carousel-item i {
    color: var(--pink-button);
    font-size: 16px;
    flex-shrink: 0;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 60px;
    cursor: pointer;
}

.logo-image {
    height: 100%;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    font-weight: 700;
    color: var(--brown-dark);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition);
}

.logo:hover .logo-text {
    color: var(--brown-text);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--brown-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--brown-text);
}

.cart-btn {
    position: relative;
    background: var(--pink-button);
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 16px;
    color: white;
    box-shadow: 0 2px 10px rgba(255, 179, 217, 0.3);
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 179, 217, 0.4);
}

.cart-count {
    background: white;
    color: var(--pink-button);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 165px 20px 80px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--brown-text);
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.cta-button {
    background: var(--pink-button);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 179, 217, 0.4);
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 179, 217, 0.5);
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    opacity: 0.7;
}

.cloud-1 {
    width: 100px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.cloud-2 {
    width: 80px;
    height: 50px;
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite;
}

.cloud-3 {
    width: 120px;
    height: 70px;
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   FLOATING DESSERTS
   ============================================ */
.floating-desserts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-item {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 1;
    animation: floatBounce 6s ease-in-out infinite;
}

/* Left Side: Brownie, Cookie, Brownie, Cookie */
.floating-item.brownie-left-1 {
    top: 26%;
    left: 18%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.floating-item.cookie-left-1 {
    top: 39%;
    left: 2%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.floating-item.brownie-left-2 {
    top: 57%;
    left: 13%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.floating-item.cookie-left-2 {
    top: 81%;
    left: 7%;
    animation-delay: 0.5s;
    animation-duration: 5.5s;
}

/* Right Side: Brownie, Cookie, Brownie, Cookie */
.floating-item.brownie-right-1 {
    top: 25%;
    right: 18%;
    animation-delay: 0.3s;
    animation-duration: 5.8s;
}

.floating-item.cookie-right-1 {
    top: 42%;
    right: 5%;
    animation-delay: 1.2s;
    animation-duration: 6.2s;
}

.floating-item.brownie-right-2 {
    top: 61%;
    right: 15%;
    animation-delay: 0.8s;
    animation-duration: 5.5s;
}

.floating-item.cookie-right-2 {
    top: 82%;
    right: 7%;
    animation-delay: 1.5s;
    animation-duration: 6.5s;
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) translateX(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-25px) translateX(8px) rotate(3deg);
    }
}

/* Responsive sizing */
@media (min-width: 769px) {
    .floating-item {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .floating-item {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .floating-item {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   SHOP SECTION (MAIN CONTENT)
   ============================================ */
.shop-section {
    padding: 40px 20px 80px;
    position: relative;
}

.main-content-card {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--cream-card);
    border-radius: 40px;
    padding: 60px 50px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--brown-dark);
    font-weight: 700;
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRODUCT FILTERS
   ============================================ */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--pink-bg);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    background: var(--pink-bg);
    border-color: var(--pink-button);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.filter-btn.active {
    background: var(--pink-button);
    border-color: var(--pink-button);
    color: white;
}

.filter-btn.active:hover {
    background: var(--brown-dark);
    border-color: var(--brown-dark);
}

/* ============================================
   MODERN PRODUCT GRID
   ============================================ */
.products-container {
    margin-top: 40px;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}


.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--pink-bg);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Desktop: Larger image height */
@media (min-width: 769px) {
    .product-image {
        height: 350px;
    }
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--brown-dark);
    flex: 1;
    line-height: 1.4;
}

.product-price-unit {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    white-space: nowrap;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--brown-dark);
}

.product-unit {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.product-description {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 5px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.add-to-cart-btn {
    background: var(--pink-button);
    color: white;
}

.add-to-cart-btn:hover {
    background: var(--pink-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 179, 217, 0.4);
}

.buy-now-btn {
    background: var(--brown-dark);
    color: white;
}

.buy-now-btn:hover {
    background: var(--brown-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.4);
}

.delivery-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
}

.info-text {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.info-text:last-child {
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--cream-card);
    padding: 60px 30px 30px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 14px;
}

.footer-contact h4,
.footer-location h4 {
    margin-bottom: 15px;
    color: var(--brown-dark);
    font-size: 18px;
}

.contact-link {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
    font-size: 14px;
}

.contact-link:hover {
    color: var(--brown-dark);
    transform: translateX(5px);
}

.footer-location p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 111, 71, 0.1);
    color: var(--text-light);
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: white;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--pink-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream-card);
}

.cart-header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: var(--brown-dark);
}

.close-cart {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    background: var(--pink-bg);
    color: var(--brown-dark);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-cart-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart p {
    font-size: 18px;
    margin-bottom: 10px;
}

.empty-cart-text {
    font-size: 14px;
}

.cart-item {
    padding: 15px;
    background: var(--cream-card);
    border-radius: 15px;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-weight: 600;
    color: var(--brown-dark);
    font-size: 16px;
}

.cart-item-info {
    font-size: 13px;
    color: var(--text-light);
}

.cart-item-price {
    color: var(--brown-text);
    font-weight: 600;
    font-size: 18px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 25px;
    padding: 5px 10px;
}

.quantity-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brown-dark);
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--pink-bg);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 5px;
}

.remove-item-btn:hover {
    background: #ffebee;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--pink-bg);
    background: var(--cream-card);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--brown-dark);
}

.total-amount {
    color: var(--brown-text);
    font-size: 28px;
}

.checkout-btn {
    width: 100%;
    background: var(--pink-button);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 179, 217, 0.3);
}

.checkout-btn:hover:not(:disabled) {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.3);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-content {
    background: white;
    border-radius: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-medium);
    transform: scale(0.9);
    transition: var(--transition);
}

.checkout-modal.active .checkout-content {
    transform: scale(1);
}

.checkout-header {
    padding: 25px;
    border-bottom: 1px solid var(--pink-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    border-radius: 30px 30px 0 0;
}

.checkout-header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: var(--brown-dark);
}

.close-checkout {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-checkout:hover {
    background: var(--pink-bg);
    color: var(--brown-dark);
    transform: rotate(90deg);
}

.checkout-form {
    padding: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brown-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--pink-bg);
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--cream-card);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-button);
    background: white;
}

.order-summary {
    background: var(--cream-card);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
}

.order-summary h3 {
    font-family: 'Dancing Script', cursive;
    color: var(--brown-dark);
    margin-bottom: 15px;
    font-size: 24px;
}

.summary-items {
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-dark);
    padding-top: 15px;
    border-top: 2px solid var(--pink-button);
}

#summaryTotal {
    color: var(--brown-text);
    font-size: 24px;
}

.place-order-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.place-order-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.place-order-btn:active {
    transform: translateY(0);
}

/* ============================================
   QUANTITY MODAL
   ============================================ */
.quantity-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.quantity-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-strong);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.quantity-modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--pink-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-modal-header h3 {
    font-size: 20px;
    color: var(--brown-dark);
    margin: 0;
}

.close-quantity-modal {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-quantity-modal:hover {
    background: var(--pink-bg);
    color: var(--brown-dark);
}

.quantity-modal-body {
    padding: 25px;
}

.quantity-price {
    font-size: 18px;
    color: var(--brown-text);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
    color: var(--brown-dark);
    font-weight: 600;
}

.quantity-control-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--cream-card);
    padding: 10px;
    border-radius: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--pink-button);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--brown-dark);
    transform: scale(1.1);
}

.quantity-input {
    width: 80px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid var(--pink-bg);
    border-radius: 10px;
    padding: 8px;
    color: var(--brown-dark);
}

.quantity-total {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--brown-dark);
    padding: 15px;
    background: var(--cream-card);
    border-radius: 10px;
}

.quantity-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--pink-bg);
}

.add-to-cart-modal-btn {
    width: 100%;
    padding: 15px;
    background: var(--pink-button);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-modal-btn:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    color: white;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
}

.contact-link i {
    margin-right: 8px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.place-order-btn i {
    font-size: 20px;
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--brown-dark);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    z-index: 5000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-out;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .main-content-card {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .menu-column {
        padding: 20px;
    }

    .cart-drawer {
        max-width: 100%;
    }

    .hero {
        min-height: 50vh;
        padding: 145px 20px 60px;
    }

    .info-carousel {
        top: 60px;
        height: 40px;
    }

    .floating-item.brownie-left-2 {
        top: 67%;
    }

    .floating-item.brownie-right-2 {
        top: 66%;
    }

    .carousel-item {
        font-size: 12px;
        gap: 8px;
    }

    .carousel-item i {
        font-size: 14px;
    }

    .product-filters {
        gap: 8px;
        padding: 15px 0;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .main-content-card {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .menu-column {
        padding: 15px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-price {
        font-size: 16px;
    }

    .product-actions {
        flex-direction: column;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .notification {
        right: 15px;
        top: 80px;
        font-size: 14px;
        padding: 12px 20px;
    }
}
