:root {
    --primary-color: #cccccc; /* neutral gray */
    --secondary-color: #eeeeee;
    --text-color: #1E1E1E;
    --background-color: #FFFFFF;
    --white: #FFFFFF;
    --gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--navbar-bg, var(--white));
    color: var(--navbar-text, var(--text-color));
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.store-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.store-logo:hover {
    transform: scale(1.1);
}

.v0-block {
    background-color: #f0f0f0;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.order-now-btn {
    background-color: var(--button-bg, var(--primary-color));
    color: var(--button-text, var(--white));
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: linear-gradient(to bottom, #FFF5F7, #FFFFFF);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.pink-text {
    color: var(--primary-color);
}

.hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

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

.menu-btn, .order-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
}

.menu-btn {
    background-color: var(--button-bg, var(--primary-color));
    color: var(--button-text, var(--white));
    border: none;
}

.order-btn {
    background-color: var(--button-text, var(--white));
    color: var(--button-bg, var(--primary-color));
    border: 2px solid var(--button-bg, var(--primary-color));
}

/* About Section */
.about {
    padding: 4rem 5%;
    background-color: var(--white);
}

.about-content {
    display: flex;
    gap: 4rem;
    margin: 2rem 0;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 10px;
    min-height: 300px;
}

.about-image:empty {
    display: none;
}

.bakery-info {
    text-align: center;
    color: var(--gray);
    margin-top: 2rem;
}

/* Menu Section */
.menu {
    padding: 4rem 5%;
}

.menu-description {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.menu-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(380px, 380px)); */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
    padding: 0 0 12px 0;
    width: 100%;
    max-width: 650px; /* Prevents single cards from getting too wide */
    height: 400px; /* Set a standard card height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-image {
    width: 100%;
    height: 50%;
    min-height: 120px;
    max-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7f7f7;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.product-name, .product-description, .price, .season-tag, .order-controls {
    position: relative;
    z-index: 2;
}

.product-card h4.product-name, .product-card p.product-description, .product-card p.price {
    background: rgba(255,255,255,0.85);
    margin: 0.5em 0;
    padding: 0.2em 0.5em;
    border-radius: 6px;
    display: inline-block;
}

.product-card .order-controls {
    background: rgba(255,255,255,0.85);
    padding: 0.5em;
    border-radius: 0 0 12px 12px;
    margin-top: 0.5em;
}

.season-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    background: #fff0fa;
    padding: 0.3em 1em;
    border-radius: 20px;
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.08);
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 4rem 5%;
    background-color: var(--white);
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.order-box {
    max-width: 500px;
    margin: 1rem auto 0;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.order-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.call-btn, .email-order-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

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

.email-order-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.email-order-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.order-info {
    text-align: left;
}

.order-info ul {
    list-style-position: inside;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--footer-bg, var(--text-color));
    color: var(--footer-text, var(--white));
    padding: 3rem 2rem 1rem;
    margin-top: 2rem;
}

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

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-info {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-info p {
    margin: 0.5rem 0;
}

.footer-pickup-schedule,
.footer-delivery-schedule {
    margin-bottom: 1rem;
}

.footer-pickup-schedule h4,
.footer-delivery-schedule h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-schedule-times {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.footer-email-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.footer-email-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-contact-info {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-email-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        padding: 1rem;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .mobile-cart {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1100;
        color: var(--primary-color);
    }

    .mobile-cart.cart-badge::after {
        top: -5px;
        right: -5px;
        background-color: #ff4444;
        color: white;
        font-size: 0.8rem;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: bold;
    }

    .order-now-btn {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .order-options {
        flex-direction: column;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.close {
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
}

/* Cart Styles */
.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
}

.cart-item-price {
    color: var(--primary-color);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-selector {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

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

.quantity-value {
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.order-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.remove-item {
    color: #ff4444;
    cursor: pointer;
    margin-left: 1rem;
}

.cart-summary {
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: 8px;
}

.cart-summary > div {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.total {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 2px solid var(--primary-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

/* Order Form Styles */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.form-section h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input[type="radio"] {
    margin-right: 0.5rem;
}

.form-group label + label {
    margin-left: 2rem;
}

.date-notice {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.submit-order-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.order-summary {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 4px;
}

/* Add to Cart Button Styles */
.add-to-cart-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 600;
}

/* Cart Badge */
.cart-badge {
    position: relative;
}

.cart-badge::after {
    content: attr(data-count);
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4444;
    color: white;
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Delivery Options Styles */
.delivery-section {
    background-color: var(--white) !important;
}

.delivery-options {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.delivery-option-card {
    flex: 1;
    position: relative;
    cursor: pointer;
    display: block;
}

.delivery-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.delivery-option-content {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background-color: var(--white);
    position: relative;
}

.delivery-option-card:hover .delivery-option-content {
    border-color: var(--primary-color);
}

.delivery-option-card input[type="radio"]:checked + .delivery-option-content {
    border-color: var(--primary-color);
    background-color: #FFF5F7;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.delivery-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.delivery-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.delivery-option-card input[type="radio"]:checked + .delivery-option-content .delivery-icon {
    background-color: var(--primary-color);
}

.delivery-option-card input[type="radio"]:checked + .delivery-option-content .delivery-icon i {
    color: var(--white);
}

.delivery-option-content h4 {
    margin: 1rem 0 0.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

.delivery-option-content p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
}

/* Add Font Awesome icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Responsive styles for delivery options */
@media (max-width: 768px) {
    .delivery-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .delivery-option-card {
        width: 100%;
    }
}

.batch-section {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.batch-info {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.batch-selector {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.date-select,
.time-select {
    flex: 1;
}

.date-select label,
.time-select label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.date-select input,
.time-select select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.batch-notice {
    color: #e67e22;
    font-size: 0.85em;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .batch-selector {
        flex-direction: column;
        gap: 10px;
    }
} 

/* Store Grid and Card Styles */
.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
  margin: 0 auto 4rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.store-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(233,30,99,0.07);
  border: 2px solid #fce4ec;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
  min-width: 0;
  min-height: 320px;
  position: relative;
}

.store-card:hover {
  box-shadow: 0 6px 24px rgba(233,30,99,0.13);
  border: 2px solid #f8bbd0;
}

.store-image {
  width: 100%;
  max-width: 220px;
  height: 120px;
  background: #f8bbd0;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.store-content {
  width: 100%;
  text-align: center;
}

.store-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.store-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}

.store-category {
  background: #fce4ec;
  color: #c2185b;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.2rem 0.8rem;
  margin-left: 0.3rem;
  display: inline-block;
}

.store-description {
  color: #666;
  font-size: 1rem;
  margin: 0.5rem 0 1rem 0;
}

.store-stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #c2185b;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

@media (max-width: 1100px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .store-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .store-card {
    min-height: 220px;
    padding: 1rem 0.5rem;
  }
} 

/* Customer Notes Section */
.notes-section {
    margin-bottom: 20px;
}

.notes-section h3 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.customer-notes {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    resize: vertical;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease;
}

.customer-notes:focus {
    outline: none;
    border-color: var(--primary-color);
}

.customer-notes::placeholder {
    color: #9ca3af;
    font-style: italic;
} 