:root {
  --primary-pink: #EC4899;
  --primary-purple: #D8B4DE;
  --text-dark: #333333;
  --text-light: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
  background: #000;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

/* Header Styles */
.header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  background: white;
}

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

.logo img {
  height: auto;
  width: 150px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #333;
  font-size: 20px;
}

/* Navigation */
.navigation {
  background-color: #fff;
  padding: 0 20px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 1000;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  padding: 20px 0;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #E7489C;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #E7489C;
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
}

/* Hero Section */
.hero {
  background: var(--primary-purple);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out;
  color: var(--text-dark);
}

.hero-description {
  color: var(--text-light);
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.gift-icon {
  font-size: 3rem;
  animation: bounce 2s infinite;
}

/* Main Content Layout */
.main-content {
  max-width: 1400px;
  margin: 40px 10px 40px 60px; /* Changed margin to reduce left space specifically */
  padding: 0;  /* Removed padding completely */
  display: flex;
  gap: 50px;
}

/* Menu Section */
.menu-section {
  width: 300px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 100px;
  margin-left: 0;
}

/* Rest of the menu styles remain unchanged */
.cake-menu {
  background: #1a1f2c;
  color: white;
  padding: 12px;
  border-radius: 12px;
}

.cake-menu h2 {
  font-size: 14px;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.menu-category {
  margin-bottom: 16px;
  padding: 0 6px;
}

.menu-category h3 {
  color: #ffd700;
  font-size: 12px;
  margin-bottom: 8px;
  font-weight: 500;
}

.menu-category ul {
  list-style: none;
}

.menu-category li {
  display: flex;
  align-items: baseline;
  font-size: 12px;
  margin-bottom: 4px;
}

.item-name {
  flex-shrink: 0;
}

.dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

.price {
  flex-shrink: 0;
}

/* Content Section */
.content-section {
  flex: 1;
}

/* Category Navigation */
.category-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding: 8px 0;
}

.category-btn {
  padding: 8px 24px;
  border-radius: 9999px;
  border: none;
  background-color: #f3f4f6;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 14px;
}

.category-btn.active {
  background-color: var(--primary-pink);
  color: white;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 200px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.personalize-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.favorite-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.favorite-btn:hover {
  transform: scale(1.1);
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.product-info .price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Custom Order Section */
.custom-order {
  background: var(--primary-purple);
  padding: 80px 20px;
  text-align: center;
}

.custom-order-container {
  max-width: 800px;
  margin: 0 auto;
}

.custom-order-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.custom-order-text {
  color: var(--text-light);
  margin-bottom: 32px;
}

.custom-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pink);
  color: white;
  padding: 16px 32px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.custom-order-btn:hover {
  transform: translateY(-2px);
  background: #d93d87;
}

/* Footer */
.footer {
  background: var(--primary-purple);
  padding: 60px 20px 20px;
}

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

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.footer-contact,
.footer-links,
.footer-hours {
  list-style: none;
}

.footer-contact li,
.footer-links li,
.footer-hours li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Chat Button */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-pink);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
  transition: all 0.3s;
  z-index: 1000;
}

.chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }

  .menu-section {
    width: 100%;
  }

  .navigation {
    padding: 15px 20px;
  }

  .nav-content {
    flex-direction: column;
    gap: 15px;
  }

  .category-nav {
    gap: 8px;
  }

  .category-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

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

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .custom-order-title {
    font-size: 1.75rem;
  }

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