/* style.css */
:root {
  --bg-light: #f9f9f9;
  --bg-dark: #121212;
  --text-light: #111;
  --text-dark: #f9f9f9;
  --accent: #e91e63;
  --card-bg: #ffffff;
  --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-light);
  transition: background 0.3s, color 0.3s;
}

body.dark {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

h1 {
  font-size: 2rem;
  color: var(--accent);
  margin: 0;
  text-shadow: 1px 1px 2px #f48b8b;
}
.tagline {
  font-size: 1rem;
  color: #a79c8e;
  margin-top: 0.2rem;
  font-style: italic;
  white-space: nowrap;
  margin-left: 2.5rem;
}
nav button {
  background: none;
  border: 1px solid #ccc;
  padding: 0.4rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
}

#themeToggle {
  background: none;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}


h3 {
  font-size: 1.2rem;
  /* color: #3a3a3a; */

}

.headline{
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0%;
  margin-bottom: -3rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  color: #a79c8e;
  text-align: center;
  font-style: italic;
  margin-bottom: -1rem;
}


section {
  padding: 1rem;
  border-radius: 12px;
}

section:nth-child(odd) {
  background-color: #fff0f4;
}

section:nth-child(even) {
  background-color: #f3f3f3;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.quote {
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.product-card h3 {
  margin: 0.5rem 0;
}

.product-card p {
  margin: 0.5rem 0;
}

.product-card button {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.product-card button:hover {
  background-color: #c2185b;
}

#cart-section {
  background: #ffebeb;
  padding: 2rem;
  border: 1px solid #c2185b;
  border-radius: 12px;
}

#cart-items li {
  margin: 0.5rem 0;
  list-style: none;
}

#cart-items li button {
  margin-left: 1rem;
  padding: 2px 8px;
  font-size: 0.9rem;
}

.dark header,
.dark section,
.dark #cart-section {
  background-color: #1e1e1e;
}

.dark .product-card {
  background: #2a2a2a;
}
.plusCombo{
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.plus {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e91e63;
  background-color: #eadddd;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
}

img {
  width: 100% !important;
  height: 200px !important;
  object-fit: contain !important;
  /* border-radius: 8px; */
  display: block;
}

.cartbuttons{
    background-color: pink;
    padding: 5px 15px;
    border-radius: 10px;
    border: none;
}