:root {
  --primary: #9e2b2b;
  --primary-dark: #7a1f1f;
  --secondary: #f5e6ca;
  --light: #f9f5f0;
  --dark: #2c1810;
  --text: #333333;
  --text-light: #666666;
  --success: #28a745;
  --error: #dc3545;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* Header Styles */
header {
  background-color: var(--primary);
  color: white;
  height: 70px;
  min-height: 70px;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 50%;
}

.logo h1 {
  font-size: 1.25rem;
  color: white;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--secondary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}



.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  min-width: 80px;
  text-align: center;
  min-height: 44px;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

.btn-buy {
  background: var(--success);
}

.btn-buy:hover {
  background: #218838;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 0.5rem;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  background: none;
  border: none;
  padding: 0.5rem;
}

/* Hero Carousel */
.hero {
  padding-top: 70px;
  height: calc(80vh - 70px); /* show 80% of viewport height on desktop */
  min-height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  height: 100%;
  min-height: 400px;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-height: 400px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  color: white;
  margin-left: 2vw;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.carousel-prev, .carousel-next {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-prev:hover, .carousel-next:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  header {
    height: 56px;
    min-height: 56px;
    padding: 0 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 57px;
    left: -100%;
    width: 80%;
    height: calc(105vh - 70px);
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
    gap: 1.5rem;
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .hero {
    padding-top: 56px;
    height: calc(60vh - 56px);
    min-height: 320px;
    width: 100vw;
  }
  
  .hero-carousel, .hero-slide {
    min-height: 320px;
    height: 60vh;
    width: 100vw;
  }
  
  .hero-content {
    margin-left: 0;
    padding: 0 2vw;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  #signupBtn {
    display: none !important;
  }
}

/* Make product.html search bar smaller and responsive */
@media (max-width: 600px) {
  .product-search-container {
    max-width: 60vw !important;
    width: 60vw !important;
    margin: 0 auto;
    display: flex;
  }
  .product-search-container input {
    min-width: 0;
    width: 0;
    flex: 1 1 0;
  }
  .product-search-container button {
    min-width: 40px;
    width: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  header .product-search-container {
    position: relative;
    left: 31%;
    transform: translateX(-50%);
  }
}

/* Search Section */
.search-section {
  padding: 1.5rem 5%;
  background: white;
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 50px;
}

.search-container input {
  flex: 1;
  padding: 0 1rem;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-container button {
  padding: 0 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-width: 50px;
}

.search-container button:hover {
  background: var(--primary-dark);
}

/* Products Section */
.section-header {
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  min-height: 44px;
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.filter-btn:hover {
  background: #f0f0f0;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Product Card */
.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img {
  height: 160px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding: 0.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.add-to-cart, .buy-now {
  flex: 1;
  padding: 0.5rem;
  font-size: 0.8rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  min-height: 44px;
}

.add-to-cart {
  background: var(--primary);
  color: white;
}

.add-to-cart:hover {
  background: var(--primary-dark);
}

.buy-now {
  background: var(--success);
  color: white;
}

.buy-now:hover {
  background: #218838;
}

/* About Section */
.about {
  padding: 3rem 5%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about {
    flex-direction: row;
  }
}

.about-img {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

/* Newsletter */
.newsletter {
  padding: 2rem 5%;
  text-align: center;
  background: #f0f0f0;
}

.newsletter h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.newsletter p {
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  min-width: 100px;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 2rem 5% 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1rem;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.modal-img {
  margin-bottom: 1rem;
}

.modal-img img {
  width: 100%;
  border-radius: var(--border-radius);
}

.modal-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.modal-description {
  margin-bottom: 1rem;
}

.modal-features {
  margin: 1rem 0;
}

.modal-features h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.modal-features li {
  margin-bottom: 0.5rem;
  list-style-position: inside;
  font-size: 0.9rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.quantity-selector label {
  font-weight: 500;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-input {
  width: 50px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.modal-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal-actions .btn {
  flex: 1;
  padding: 0.8rem;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.2rem;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.cart-items {
  padding: 1rem;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-quantity button {
  width: 25px;
  height: 25px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove {
  color: var(--error);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.5rem;
  display: inline-block;
  background: none;
  border: none;
}

.cart-total {
  padding: 1rem;
  border-top: 1px solid #eee;
}

.cart-total h3 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.cart-checkout {
  width: 100%;
  padding: 0.8rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}

.empty-cart-message {
  text-align: center;
  color: var(--text-light);
  margin-top: 2rem;
}

/* Auth Modal */
.auth-modal .modal-content {
  max-width: 400px;
  padding: 1.5rem;
}

.auth-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.auth-tab {
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  font-size: 0.9rem;
}

.auth-tab.active {
  color: var(--primary);
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.form-error.active {
  display: block;
}

.auth-form button[type="submit"] {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
}

.btn-google {
  background: #4285F4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 1rem;
}

.btn-google:hover {
  background: #357ABD;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: var(--text-light);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.auth-divider span {
  padding: 0 1rem;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Notification */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--success);
  color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  z-index: 3000;
  animation: slideIn 0.3s ease-out;
  max-width: 300px;
}

.notification.error {
  background: var(--error);
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

/* Accessibility */
button, [role="button"] {
  cursor: pointer;
}

[aria-hidden="true"] {
  display: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.1rem;
  }

  .hero {
    height: 50vh;
    min-height: 300px;
    width: 100vw;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .modal-content {
    padding: 1rem;
  }

  .cart-sidebar {
    max-width: 100%;
  }
}

/* Print Styles */
/* Profile Dropdown Styles */
.user-profile {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.profile-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.profile-trigger:hover {
  background: rgba(255,255,255,0.1);
}

.profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar .initials {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.profile-name {
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin-right: 8px;
  display: none;
}

@media (min-width: 768px) {
  .profile-name {
    display: block;
  }
}

.profile-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 240px;
  background: #ad9e9f;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 8px 0;
}

.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 16px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent white transparent;
}

.profile-dropdown-header {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.profile-dropdown-header h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-dropdown-header p {
  font-size: 13px;
  color: var(--text-light);
}

.profile-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.profile-dropdown-item:hover {
  background: #f8f8f8;
  color: var(--primary);
}

.profile-dropdown-item i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
  color: var(--text-light);
}

.profile-dropdown-footer {
  padding: 8px 16px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

/* Account Modal Styles */
.account-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.account-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-avatar .initials {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.account-info {
  flex: 1;
}

.account-info p {
  margin-bottom: 0.5rem;
}

/* Wishlist Modal Styles */
.wishlist-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.wishlist-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.wishlist-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-item-info {
  flex: 1;
}

.wishlist-item-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.wishlist-item-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.wishlist-item-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.empty-wishlist {
  text-align: center;
  color: var(--text-light);
  margin-top: 2rem;
}

/* Order History Styles */
.order-history-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.order-header h4 {
  font-size: 1rem;
}

.order-date, .order-total {
  font-size: 0.9rem;
  color: var(--text-light);
}

.order-items {
  margin-top: 0.5rem;
}

.order-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.order-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.order-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-info {
  flex: 1;
}

.order-item-title {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.order-item-price {
  font-size: 0.8rem;
  color: var(--text-light);
}

.empty-orders {
  text-align: center;
  color: var(--text-light);
  margin-top: 2rem;
}

/* Product Wishlist Button */
.add-to-wishlist {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  background: none;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.add-to-wishlist:hover {
  background: rgba(158, 43, 43, 0.1);
}

.add-to-wishlist i {
  font-size: 0.9rem;
}

/* Navigation Links */

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: white;
  text-decoration: none;
  padding: 10px 0;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ffcccb; /* light pink hover */
  transform: translateX(5px);
}
