* {
  margin: 0px;
  padding: 0px;
}

/* Dark Mode Variables */
:root {
  --bg-color: #ffffff;
  --text-color: #090909;
  --nav-bg: #ffffff;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.24);
  --secondary-text: #666666;
  --accent-color: #ee6780;
}

[data-theme="dark"] {
  --bg-color: #1a1a1a;
  --text-color: #ffffff;
  --nav-bg: #2d2d2d;
  --card-bg: #2d2d2d;
  --border-color: #404040;
  --shadow: rgba(255, 255, 255, 0.1);
  --secondary-text: #b0b0b0;
  --accent-color: #ff7a9a;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: all 0.3s ease;
}

/* Loading Notification */
.loading-notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s ease-out;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  position: relative;
}

.notification-content i {
  margin-right: 10px;
  font-size: 16px;
  color: #ffd700;
}

.close-notification {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-notification:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Animation for notification */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.loading-notification.fade-out {
  animation: slideUp 0.5s ease-in forwards;
}

/* Responsive design for notification */
@media (max-width: 768px) {
  .notification-content {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .notification-content span {
    margin-right: 35px;
  }
  
  .close-notification {
    right: 15px;
  }
}

/* Search Container */
.search-container {
  position: relative;
  margin-right: 20px;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
}

.suggestion-item:hover {
  background-color: #f5f5f5;
}

[data-theme="dark"] .suggestion-item:hover {
  background-color: #404040;
}

/* Theme Toggle */
.theme-toggle {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background-color: var(--border-color);
}

/* Icons Enhancement */
.icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icons > div {
  position: relative;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.icons > div:hover {
  background-color: var(--border-color);
}

.cart-count, .wishlist-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Search Results */
.search-results-container {
  padding: 20px;
  background: var(--bg-color);
}

.search-header {
  margin-bottom: 20px;
}

.search-header h2 {
  color: var(--text-color);
  margin-bottom: 5px;
}

.results-count {
  color: #666;
  font-size: 14px;
}

/* Product Quick View Modal */
.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2500;
}

.quick-view-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.quick-view-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
}

.quick-view-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg);
}

.quick-view-header h3 {
  color: var(--text-color);
  margin: 0;
  font-size: 24px;
}

.quick-view-close {
  font-size: 30px;
  cursor: pointer;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.quick-view-close:hover {
  color: #ff6b6b;
  transform: scale(1.1);
}

.quick-view-body {
  display: flex;
  max-height: 70vh;
  overflow: hidden;
}

.quick-view-image-section {
  flex: 1;
  padding: 20px;
  background: var(--bg-color);
}

.main-image {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
  cursor: zoom-in;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.1);
}

.image-zoom-lens {
  position: absolute;
  border: 2px solid #ff6b6b;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background: rgba(255, 107, 107, 0.2);
  display: none;
  pointer-events: none;
}

.thumbnail-images {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.thumbnail-images img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
  border-color: #ff6b6b;
  transform: scale(1.05);
}

.quick-view-details {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: var(--card-bg);
}

.quick-view-details .product-brand {
  color: var(--secondary-text);
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-view-details .product-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.quick-view-details .product-price {
  font-size: 28px;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.quick-view-details .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.size-selector,
.color-selector,
.quantity-selector,
.product-features {
  margin-bottom: 25px;
}

.size-selector h4,
.color-selector h4,
.quantity-selector h4,
.product-features h4 {
  color: var(--text-color);
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  padding: 10px 16px;
  border: 2px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-color);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 45px;
}

.size-btn:hover,
.size-btn.selected {
  border-color: #ff6b6b;
  background: #ff6b6b;
  color: white;
  transform: translateY(-2px);
}

.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.color-option:hover,
.color-option.selected {
  border-color: #ff6b6b;
  transform: scale(1.1);
}

.color-option.selected::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-color);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  border-color: #ff6b6b;
  background: #ff6b6b;
  color: white;
  transform: scale(1.1);
}

#productQuantity {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  min-width: 30px;
  text-align: center;
}

.quick-view-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.add-to-cart-quick,
.add-to-wishlist-quick {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-to-cart-quick {
  background: #ff6b6b;
  color: white;
}

.add-to-cart-quick:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.add-to-wishlist-quick {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--border-color);
}

.add-to-wishlist-quick:hover {
  background: var(--border-color);
  border-color: #ff6b6b;
  color: #ff6b6b;
  transform: translateY(-2px);
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  color: var(--text-color);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 25px;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

/* Responsive Design for Quick View */
@media (max-width: 768px) {
  .quick-view-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .quick-view-body {
    flex-direction: column;
  }
  
  .main-image {
    height: 300px;
  }
  
  .quick-view-actions {
    flex-direction: column;
  }
  
  .size-options {
    justify-content: center;
  }
  
  .color-options {
    justify-content: center;
  }
}

/* Shopping Cart Modal */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cart-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: var(--card-bg);
  box-shadow: -2px 0 10px var(--shadow);
  display: flex;
  flex-direction: column;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-close {
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
}

.cart-items {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.empty-cart {
  text-align: center;
  color: #666;
  margin-top: 50px;
}

.empty-cart i {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--border-color);
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 500;
  margin-bottom: 5px;
}

.cart-item-price {
  color: #ff6b6b;
  font-weight: 600;
  margin-bottom: 10px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  background: var(--border-color);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.cart-total {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.total-breakdown {
  text-align: left;
  padding: 15px;
  background: var(--bg-color);
  border-radius: 8px;
  margin-bottom: 15px;
}

.total-breakdown .subtotal,
.total-breakdown .shipping {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--secondary-text);
  font-size: 14px;
}

.total-breakdown .total-amount {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-color);
  border-top: 1px solid var(--border-color);
  padding-top: 8px;
  margin-top: 8px;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: #ff5252;
}

/* Profile Modal */
.profile-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.profile-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: var(--card-bg);
  box-shadow: -2px 0 10px var(--shadow);
  display: flex;
  flex-direction: column;
}

.profile-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-header h3 {
  color: var(--text-color);
  margin: 0;
}

.profile-close {
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.profile-close:hover {
  color: var(--accent-color);
}

.profile-body {
  flex: 1;
  overflow-y: auto;
}

.profile-info {
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.profile-avatar i {
  font-size: 40px;
  color: white;
}

.profile-details h4 {
  color: var(--text-color);
  margin: 0 0 10px 0;
  font-size: 20px;
}

.profile-details p {
  color: var(--secondary-text);
  margin: 0 0 20px 0;
}

.login-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.profile-menu {
  padding: 10px 0;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.menu-item:hover {
  background: var(--border-color);
}

.menu-item i:first-child {
  width: 20px;
  margin-right: 15px;
  color: var(--accent-color);
}

.menu-item span {
  flex: 1;
  font-size: 16px;
}

.menu-item i:last-child {
  color: var(--secondary-text);
}

/* Wishlist Modal */
.wishlist-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.wishlist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.wishlist-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: var(--card-bg);
  box-shadow: -2px 0 10px var(--shadow);
  display: flex;
  flex-direction: column;
}

.wishlist-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wishlist-header h3 {
  color: var(--text-color);
  margin: 0;
}

.wishlist-close {
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.wishlist-close:hover {
  color: var(--accent-color);
}

.wishlist-items {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.empty-wishlist {
  text-align: center;
  color: var(--secondary-text);
  margin-top: 50px;
}

.empty-wishlist i {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--border-color);
}

.wishlist-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.wishlist-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.wishlist-item-details {
  flex: 1;
}

.wishlist-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.wishlist-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.wishlist-item-actions {
  display: flex;
  gap: 10px;
}

.move-to-bag-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.move-to-bag-btn:hover {
  background: #ff5252;
}

.remove-wishlist-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-wishlist-btn:hover {
  background: var(--border-color);
}

.wishlist-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.move-all-to-bag-btn {
  width: 100%;
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.move-all-to-bag-btn:hover {
  background: #ff5252;
}

/* Responsive Design for Modals */
@media (max-width: 480px) {
  .profile-content,
  .wishlist-content {
    width: 100%;
  }
}

/* Products Section */
.products-section {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.products-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  padding: 20px;
}

.filters-sidebar {
  width: 250px;
  background: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  height: fit-content;
  box-shadow: 0 2px 10px var(--shadow);
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  margin-bottom: 15px;
  color: var(--text-color);
}

.price-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-filters label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.products-main {
  flex: 1;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sort-options select {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--card-bg);
  color: var(--text-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px var(--shadow);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
}

.product-name {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-color);
}

.product-brand {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.product-price {
  color: #ff6b6b;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.stars {
  color: #ffd700;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.add-to-cart, .add-to-wishlist {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.add-to-cart {
  background: #ff6b6b;
  color: white;
}

.add-to-cart:hover {
  background: #ff5252;
}

.add-to-wishlist {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.add-to-wishlist:hover {
  background: var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cart-content {
    width: 100%;
  }
  
  .products-container {
    flex-direction: column;
  }
  
  .filters-sidebar {
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

nav {
  position: sticky;
  background-color: var(--nav-bg);
  top: 0px;
  height: 62px;
  display: flex;
  align-items: center;
  padding: 5px 0px;
  box-shadow: 0px 3px 8px var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.left {
  display: flex;
  align-items: center;
  width: 100%;
}

.left ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.left ul li {
  padding: 0px 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .3px;
  color: var(--text-color);
  line-height: 80px;
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  transition: all 0.3s ease;
}

.left img {
  width: 53px;
  height: 36px;
  padding: 0px 50px;
}

.container img {
  cursor: pointer;
  width: 98.5vw;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 25px;
}

.section {
  display: flex;
  margin: 3px 2px;
  justify-content: center;
}

.section img {
  cursor: pointer;
  width: 48vw;
  background-size: cover;
}

.section1 img {
  cursor: pointer;
  width: 100vw;
  background-size: cover;
}

.section2 {
  display: flex;
  justify-content: center;
}

.section2 img {
  cursor: pointer;
  width: 285px;
  height: 380px;
}

.section3 img {
  cursor: pointer;
  width: 100vw;
  background-size: cover;
}

.section4 {
  display: flex;
  justify-content: center;
}

.section4 img {
  cursor: pointer;
  width: 290px;
  height: 345px;
}

.section5 img {
  cursor: pointer;
  width: 100vw;
  background-size: cover;
}

.section6 {
  display: flex;
  justify-content: center;
}

.section6 img {
  cursor: pointer;
  width: 291px;
  height: 375px;
}

.section7 img {
  cursor: pointer;
  width: 100vw;
  background-size: cover;
}

.section8 {
  display: flex;
  justify-content: center;
}

.section8 img {
  cursor: pointer;
  width: 261px;
  height: 351px;
}

footer {
  /* margin-top: 25px; */
  height: 55px;
  /* text-align: center; */
  background-color: var(--card-bg);
  padding-top: 28px;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  letter-spacing: .3px;
  transition: all 0.3s ease;
}

footer a {
  cursor: pointer;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}

.right {
  display: flex;
  align-items: center;
  width: 100%;
}

.right input {
  font-size: 14px;
  height: 20px;
  line-height: 24px;
  width: 60%;
  color: var(--text-color);
  padding: 8px 10px 10px;
  outline: 0;
  border: 1px solid var(--border-color);
  border-radius: 4px 4px 4px 4px;
  background: var(--card-bg);
  transition: all 0.3s ease;
}

.right input::placeholder {
  color: var(--secondary-text);
  transition: all 0.3s ease;
}

.icons {
  display: flex;
  margin: 0px 42px;
}

.profile,
.wish,
.bag {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 800;
  padding: 0px 13px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}



.footer-container{
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  padding-left: 220px;
  padding-right: 220px;
  transition: all 0.3s ease;
}

.row{
  display: flex;
  margin-bottom: 20px;
}
.online-shopping{
  text-align: left;
  margin-right: 50px;
}
.customer-policies{
  text-align: left;
  margin-right: 50px;
}
.app{
  text-align: left;
  margin-right: 90px;
}
.row-2{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  
}
.content-heading{
  color: var(--text-color);
  font-weight: 600;
  letter-spacing: normal;
  transition: all 0.3s ease;
}
.content-box{
  line-height: 1.6;
}
.para-content{
  margin-top: 25px;
  margin-bottom: 40px;
}
.copyright-container{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.horizontal-line{
  margin-bottom: 30px;
  opacity: 0.2;
  height: 0.3px;
}
.office-address-content{
  opacity: 0.9;
  margin-bottom: 30px;
}
.other-info-heading{
  font-weight: 600;
  letter-spacing: normal;
  color: var(--text-color);
  font-size: 15px;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.other-info-para-content{
  margin-top: 8px;
  margin-bottom: 30px;
  font-size: 13px;
  opacity: 0.8;
}
.Google-play{
  background-repeat: none;
  margin-right: 10px;
  
}
.App-Store{
  background-repeat: none;

}
.download-button{
  display: flex;
  margin-top: 30px;
}
.download-button img{
  width: 130px;
  height:40px;
}

.original{
  margin-bottom: 30px;
  color: var(--text-color);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.customer-satisfaction{
  margin-bottom: 30px;
}
.social-links{
  margin-top: 12px;
}

.fb-icon{
  margin-right:6px;
}
.tw-icon{
  margin-right:6px;
}
.yt-icon{
  margin-right:6px;
}

.men-section-items{
  background-color: var(--card-bg);
  display: flex;
  position: absolute; /* to be removed */
  width: 1050px;
  height: 510px;
  /*top: 232px;  to be removed */
  right: 1px;
  left: 130px;
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom: 15px;
  z-index: 10;
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
  border: 1px solid var(--border-color);
}

.women-section-items{
  background-color: var(--card-bg);
  display: flex;
  position: absolute; /* to be removed */
  width: 1050px;
  height: 510px;
  /*top: 232px;  to be removed */
  right: 1px;
  left: 130px;
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom: 15px;
  z-index: 10;
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
  border: 1px solid var(--border-color);
}
.kids-section-items{
  background-color: var(--card-bg);
  display: flex;
  position: absolute; /* to be removed */
  width: 1050px;
  height: 510px;
  /*top: 232px;  to be removed */
  right: 1px;
  left: 130px;
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom: 15px;
  z-index: 10;
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
  border: 1px solid var(--border-color);
}
.home-section-items{
  background-color: var(--card-bg);
  display: flex;
  position: absolute; /* to be removed */
  width: 1050px;
  /*top: 232px;  to be removed */
  right: 1px;
  left: 130px;
  height: 510px;
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom:15px;
  z-index: 10;
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
  border: 1px solid var(--border-color);
}
.beauty-section-items{
  background-color: var(--card-bg);
  display: flex;
  position: absolute; /* to be removed */
  width: 1050px;
  height:510px;
  /*top: 232px;  to be removed */
  right: 1px;
  left: 130px;
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom: 15px;
  z-index: 10;
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
  border: 1px solid var(--border-color);
}

.col-1{
  margin-right: 70px;
  margin-top: 15px;
}
.col-2{
  margin-right: 70px;
  margin-top: 15px;
}
.col-3{
  margin-right: 70px;
  margin-top: 15px;
}
.col-4{
  margin-right: 70px;
  margin-top: 15px;
}
.col-5{
  margin-right: 70px;
  margin-top: 15px;
}
.category{
  margin-bottom: 11px;
}
.category-items{
  margin-top: 8px;
  line-height: 1.6;
  font-size: 14px;
  opacity: 0.95;
}
.horizontal-line2{
  margin-bottom: 18px;
  margin-top: 15px;
  background-color: var(--border-color);
  transition: all 0.3s ease;
}
.visibility{
  display: none;
}
.category-heading{
  color: var(--accent-color);
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}
