/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c2c2c;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 a {
  font-size: 2rem;
  color: #2c2c2c;
  letter-spacing: 2px;
  text-decoration: none;
}

/* Search Container */
.search-container {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 8px 15px;
  flex: 1;
  max-width: 400px;
}

.search-container input {
  border: none;
  background: none;
  outline: none;
  flex: 1;
  padding: 5px;
  font-size: 14px;
}

.search-container button {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #d4af37;
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-icons i {
  font-size: 1.2rem;
  color: #2c2c2c;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.nav-icons i:hover {
  color: #d4af37;
}

.cart-count,
.wishlist-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #d4af37;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-btn {
  padding: 8px 16px;
  border: 1px solid #d4af37;
  border-radius: 5px;
  text-decoration: none;
  color: #d4af37;
  font-weight: 500;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: #d4af37;
  color: white;
}

.user-greeting {
  font-weight: 600;
  color: #d4af37;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: #2c2c2c;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-btn {
  background: #d4af37;
  color: #2c2c2c;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Category Navigation */
.category-nav {
  padding: 2rem 0;
  background: white;
  border-bottom: 1px solid #eee;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.tab-btn {
  background: none;
  border: 2px solid #ddd;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.tab-btn.active,
.tab-btn:hover {
  background: #2c2c2c;
  color: white;
  border-color: #2c2c2c;
}

/* Products Section */
.products {
  padding: 4rem 0;
  background: #f8f9fa;
}

.product-category {
  display: none;
}

.product-category.active {
  display: block;
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
}

.category-header p {
  font-size: 1.1rem;
  color: #666;
}

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

.product-section h4 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #2c2c2c;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
}

.product-card h5 {
  font-size: 1rem;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stars {
  color: #d4af37;
}

.rating-text {
  font-size: 0.8rem;
  color: #666;
}

.product-card .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-cart,
.btn-wishlist {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cart {
  background: #2c2c2c;
  color: white;
}

.btn-cart:hover {
  background: #d4af37;
}

.btn-wishlist {
  background: #f8f9fa;
  color: #2c2c2c;
  border: 1px solid #ddd;
}

.btn-wishlist:hover,
.btn-wishlist.active {
  background: #ff6b6b;
  color: white;
  border-color: #ff6b6b;
}

/* New Arrivals */
.new-arrivals {
  padding: 4rem 0;
  background: white;
}

.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.arrival-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.arrival-card:hover {
  transform: translateY(-10px);
}

.arrival-card video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.arrival-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
}

.arrival-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.arrival-info p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.arrival-info .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d4af37;
}

/* Coming Soon Section */
.upcoming {
  padding: 4rem 0;
  background: #2c2c2c;
  color: white;
}

.upcoming .section-title {
  color: white;
}

.upcoming-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.upcoming-text {
  flex: 1;
}

.upcoming-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #d4af37;
}

.upcoming-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.countdown {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  min-width: 80px;
}

.countdown-item span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
}

.countdown-item label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notify-btn {
  background: #d4af37;
  color: #2c2c2c;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notify-btn:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.video-container {
  flex: 1;
}

.video-container video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* About */
.about {
  padding: 4rem 0;
  background: #f8f9fa;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h4 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.stat p {
  color: #666;
  font-weight: 500;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Footer */
.footer {
  background: #2c2c2c;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #d4af37;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4af37;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #444;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #d4af37;
  transform: translateY(-2px);
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
}

.newsletter button {
  background: #d4af37;
  color: #2c2c2c;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background: #b8941f;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #ccc;
}

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

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}

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

.modal-header h2 {
  margin: 0;
  color: #2c2c2c;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
  text-align: right;
}

.cart-total {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.checkout-btn {
  background: #d4af37;
  color: #2c2c2c;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: #b8941f;
}

/* Cart and Wishlist Items */
.cart-item,
.wishlist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

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

.item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.item-details {
  flex: 1;
}

.item-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.item-price {
  color: #d4af37;
  font-weight: 600;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.quantity-btn {
  background: #f8f9fa;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: #e9ecef;
}

.quantity {
  padding: 0 1rem;
  font-weight: 600;
}

.remove-btn {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

.remove-btn:hover {
  background: #ff5252;
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #2c2c2c;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  z-index: 10000;
  animation: slideIn 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .search-container {
    order: 3;
    width: 100%;
    max-width: none;
    margin-top: 1rem;
  }

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

  .category-tabs {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

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

  .countdown {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
}

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .arrivals-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item span {
    font-size: 1.5rem;
  }
}
