/* Base Styles & Variables */
:root {
  --primary-color: #ff85a2;
  --primary-dark: #e06b84;
  --secondary-color: #ffd7e6;
  --accent-color: #9b4f80;
  --text-color: #4a3340;
  --light-text: #7c6470;
  --background: #fffbfd;
  --card-bg: #fff;
  --border-radius: 12px;
  --box-shadow: 0 5px 15px rgba(230, 156, 180, 0.15);
  --transition: all 0.3s ease;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --font-script: "Pacifico", cursive;
}

::selection {
  background-color: var(--primary-color);
  color: var(--background);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--background);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
.btn {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
  transition: var(--transition);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 133, 162, 0.3);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
  font-size: 3rem;
  color: var(--primary-color);
  animation: bounce 1.5s infinite;
}

.loading-text {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--accent-color);
  letter-spacing: 2px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 15px 0;
  background-color: #fffbfd;
  backdrop-filter: blur(5px);
  box-shadow: var(--box-shadow);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(230, 156, 180, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

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

.logo-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 15px;
  animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}

.logo h1 {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--text-color);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  padding: 5px 0;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 3px;
}

/* Hero Section */
.hero {
  padding: 180px 5% 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    var(--secondary-color) 0%,
    transparent 50%
  );
  opacity: 0.8;
  z-index: -1;
}

.hero-content {
  flex: 1;
  max-width: 550px;
  animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 40px;
}

.highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 215, 230, 0.5);
  z-index: -1;
  border-radius: 4px;
}

.animate-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.animate-text-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-container {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(230, 156, 180, 0.2);
}

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

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

.secondary-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.secondary-btn:hover {
  background-color: rgba(255, 133, 162, 0.1);
}

.outline-btn {
  background-color: transparent;
  border: 2px solid var(--text-color);
  color: var(--text-color);
}

.outline-btn:hover {
  background-color: var(--text-color);
  color: white;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.hero-main-image {
  position: relative;
  z-index: 2;
  animation: floatMainImage 4s ease-in-out infinite;
  max-width: 70%;
  filter: drop-shadow(0 20px 30px rgba(155, 79, 128, 0.2));
}
.hero-main-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

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

.floating-pastry {
  position: absolute;
  z-index: 1;
}

.floating-pastry img {
  width: 100px;
  height: auto;
  animation: float 6s ease-in-out infinite;
  border-radius: 12px;
}

.pastry-1 {
  top: 2%;
  left: 0;
  width: 90px;
  height: 76px;
}

.pastry-2 {
  bottom: 2%;
  left: 5%;
  width: 90px;
}

.pastry-3 {
  top: 2%;
  right: 2%;
  width: 80px;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-reverse {
  animation: floatReverse 7s ease-in-out infinite;
}

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

@keyframes floatReverse {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  25% {
    transform: translateY(15px) rotate(-5deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  75% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Section Headings */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.decorative-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.line {
  width: 80px;
  height: 2px;
  background-color: var(--primary-color);
}

.line-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

/* Daily Specials */
.daily-specials {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.specials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.special-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  opacity: 1;
  transform: translateY(30px);
}

.special-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.special-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 156, 180, 0.2);
}

.special-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.special-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.special-card:hover .special-image img {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(230, 156, 180, 0.3);
  z-index: 1;
}

.special-info {
  padding: 25px;
}

.special-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.description {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.old-price {
  color: var(--light-text);
  text-decoration: line-through;
  font-size: 1rem;
}

.current-price {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.order-btn {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.order-btn:hover {
  background-color: var(--primary-dark);
}

/* Welcome Message */
.welcome-message {
  padding: 100px 5%;
  background-color: #fcf5f8;
  position: relative;
  overflow: hidden;
}

.welcome-message::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(
    circle at right,
    var(--secondary-color) 0%,
    transparent 70%
  );
  opacity: 0.6;
  z-index: 0;
}

.welcome-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.welcome-text {
  flex: 1;
  max-width: 550px;
}

.welcome-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.welcome-text p {
  margin-bottom: 15px;
  color: var(--light-text);
}

.script-text {
  font-family: var(--font-script);
  color: var(--accent-color);
  font-weight: 400;
}

.welcome-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  padding-left: 50px;
}

.welcome-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 350px;
  position: relative;
  z-index: 2;
}

.floating-ingredients {
  position: absolute;
  z-index: 1;
}

.floating-ingredients img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 200px;
}

.ingredient-1 {
  top: -10%;
  right: 10%;
  width: 80px;
  animation: float 8s ease-in-out infinite;
}

.ingredient-2 {
  bottom: 5%;
  left: 0;
  width: 70px;
  animation: floatReverse 9s ease-in-out infinite;
}

.ingredient-3 {
  top: 40%;
  right: 0;
  width: 90px;
  animation: float 7s ease-in-out infinite 1s;
}

/* Footer */
footer {
  background-color: #4a3340;
  color: #fff;
  padding: 80px 5% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo h2 {
  font-family: var(--font-script);
  font-size: 1.8rem;
  margin: 10px 0;
  font-weight: 400;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-section address p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section address i {
  min-width: 16px;
  color: var(--primary-color);
}

.hours-list li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.hours-list li span {
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 5px;
}

.footer-social h3 {
  margin-bottom: 20px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom i {
  color: var(--primary-color);
}

/* Cart Styles */
.cart-icon-container {
  position: relative;
  margin-left: 20px;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-icon.bump {
  animation: bump 0.3s ease;
}

@keyframes bump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.cart-count.update {
  animation: countUpdate 0.5s ease;
}

@keyframes countUpdate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
    background-color: #4caf50;
  }
  100% {
    transform: scale(1);
  }
}

.order-btn.added {
  background-color: #4caf50;
}

/* Cart dropdown styles */
.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 101;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-height: 400px;
  overflow-y: auto;
}

.cart-dropdown.show {
  transform: translateY(10px);
  opacity: 1;
  visibility: visible;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

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

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.cart-item-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.cart-item-price {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.quantity-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.cart-quantity {
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 2px solid #eee;
  margin-top: 10px;
}

.total-text {
  font-weight: 600;
}

.total-amount {
  font-weight: 700;
  color: var(--accent-color);
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 10px;
  transition: var(--transition);
  margin-bottom: 8px;
  border:2px solid var(--primary-color);
}

.checkout-btn:hover {
  background-color: white;
  color: var(--primary-color);
  border:2px solid var(--primary-color);
}



.view-cart-btn {
  padding: 7px;
  color: white;
  background-color: #9b4f80c4;
  border-radius: 6px;
  font-size: 0.75rem;
}
.empty-cart-btn {
  padding: 7px;
  color: white;
  background-color: #9b4f80c4;
  border-radius: 6px;
  font-size: 0.75rem;
}

.view-cart-btn:hover,.empty-cart-btn:hover{
  background-color: #84416dc4;
}

.empty-cart {
  text-align: center;
  padding: 20px 0;
}

.empty-cart i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 15px;
}

.empty-cart p {
  color: var(--light-text);
}

/* Cart Page Styles */
.cart-page-hero {
  background-color: var(--secondary-color);
  padding: 120px 0 40px 0;
  margin-top: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cart-page-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 133, 162, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

.cart-page-hero::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 133, 162, 0.1);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  z-index: 0;
}

.cart-page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cart-page-hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--light-text);
}

.cart-page-container {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.cart-items-container {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
}

.cart-page-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

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

.cart-page-item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 20px;
}

.cart-page-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.cart-page-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-page-item-description {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 10px;
  max-width: 400px;
}

.cart-page-item-price {
  font-weight: 600;
  color: var(--accent-color);
}

.cart-page-item-quantity {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.cart-page-quantity {
  margin: 0 15px;
  min-width: 30px;
  text-align: center;
  font-weight: 500;
}

.remove-item-btn {
  position: absolute;
  top: 20px;
  right: 0;
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.remove-item-btn:hover {
  color: #e74c3c;
}

.cart-summary {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  height: fit-content;
}

.cart-summary h2 {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1rem;
}

.summary-row.total {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.continue-shopping-btn {
  width: 100%;
  padding: 12px;
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-weight: 500;
  margin-top: 10px;
  transition: var(--transition);
}

.empty-cart-large {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 50px auto;
}

.empty-cart-large i {
  font-size: 5rem;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-cart-large h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.empty-cart-large p {
  color: var(--light-text);
  margin-bottom: 30px;
}

.empty-cart-large .primary-btn {
  display: inline-block;
}

/* Product Card Quick View */
.product-card {
  position: relative;
}

.quick-view-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: var(--transition);
  cursor: pointer;
  z-index: 2;
}

.product-card:hover .quick-view-btn {
  opacity: 1;
}

.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.quick-view-modal.show {
  opacity: 1;
  visibility: visible;
}

.quick-view-content {
  background-color: white;
  border-radius: var(--border-radius);
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.quick-view-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.quick-view-close:hover {
  color: var(--text-color);
}

.quick-view-image {
  height: 100%;
  overflow: hidden;
}

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

.quick-view-details {
  padding: 40px;
}

.quick-view-details h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.quick-view-details p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.quick-view-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.cart-item-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: white;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  border-radius: 4px;
  z-index: 1000;
  transform: translateX(120%);
  transition: transform 0.4s ease;
}

.cart-item-notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
}

.notification-icon {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.notification-message {
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .footer-container {
    grid-template-columns: 1fr 2fr;
    gap: 40px;
  }

  .footer-social {
    grid-column: span 2;
  }
}

@media screen and (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 150px 5% 80px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 60px;
  }

  .cta-container {
    justify-content: center;
  }

  .welcome-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .welcome-text {
    max-width: 100%;
    margin-top: 60px;
  }

  .welcome-text .btn {
    margin-top: 20px;
  }

  .welcome-image {
    padding-left: 0;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .cart-page-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    padding: 0 5%;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .nav-links.active {
    transform: translateY(0);
  }

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

  .section-heading h2 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }

  .footer-social {
    grid-column: span 1;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  .footer-section address p {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-container {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .welcome-text h2 {
    font-size: 2rem;
  }

  .form-group {
    flex-direction: column;
    border-radius: 12px;
  }

  .form-group input {
    width: 100%;
    padding: 15px;
  }

  .form-group .btn {
    border-radius: 8px;
    margin: 0 10px 10px;
  }

  footer {
    padding: 50px 5% 30px;
  }

  /* Cart Styles */
  .cart-icon-container {
    position: absolute;
    right: 70px;
  }

  .cart-dropdown {
    width: 280px;
  }

  .cart-page-container {
    padding: 30px 5%;
  }

  .cart-page-item {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 30px;
  }

  .cart-page-item-image {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .remove-item-btn {
    top: 10px;
    right: 10px;
  }
}
