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

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Prevent horizontal scroll on all containers */
.container, .header, .main-nav, .footer, section, div {
  max-width: 100%;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  * {
    max-width: 100%;
  }
  
  img, video, iframe {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Announcement Bar */
.announcement {
  background: linear-gradient(90deg, #1a1a1a, #0a0a0a, #1a1a1a);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #333;
  font-size: 22px;
  cursor: pointer;
  padding: 5px;
}

.header-left .logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #000;
  text-decoration: none;
}

.header-center {
  flex: 1;
  max-width: 600px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px 20px;
  gap: 12px;
  width: 100%;
}

.search-bar i {
  color: #666;
  font-size: 16px;
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: #333;
}

.search-bar input::placeholder {
  color: #999;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-mobile {
  display: none;
}

.country-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.country-selector .flag {
  font-size: 18px;
}

.country-selector i {
  font-size: 10px;
  color: #666;
}

.icon-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.icon-link:hover {
  background: #f5f5f5;
  color: #000;
}

.cart-count, .wishlist-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
}

.wishlist-icon {
  position: relative;
}

.wishlist-icon i {
  color: #e74c3c;
}

.wishlist-icon:hover i {
  transform: scale(1.1);
}

.search-mobile {
  background: none;
  padding: 0;
}

.promo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: #222;
}

.promo-btn .coin-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f5a623;
  color: #000;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}

.promo-btn .coin-badge i {
  font-size: 12px;
}

/* User Dropdown */
.user-dropdown {
  position: relative;
  z-index: 1000;
}

.user-btn {
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #ddd;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
}

.user-btn i {
  color: #333;
}

.user-btn:hover {
  background: #f5f5f5;
  color: #000;
  border-color: #999;
}

.user-btn:hover i {
  color: #000;
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  pointer-events: none;
}

.user-dropdown.active .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  font-weight: 600;
  color: #333;
}

.user-dropdown-header i {
  font-size: 24px;
  color: #666;
}

.user-dropdown-menu hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 0;
}

.user-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: #333;
  font-size: 14px;
  transition: background 0.2s ease;
}

.user-dropdown-menu a:hover {
  background: #f5f5f5;
}

.user-dropdown-menu a i {
  width: 18px;
  color: #666;
}

.user-dropdown-menu a.logout-link {
  color: #e74c3c;
}

.user-dropdown-menu a.logout-link i {
  color: #e74c3c;
}

/* Main Navigation */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ccc;
  position: relative;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav .sale-link {
  color: #ff4444;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: left 0.3s ease;
  padding: 0;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.mobile-menu-header span {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.close-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-links::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu-links::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.mobile-menu-links::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.mobile-menu-links::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.mobile-menu-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 18px 20px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu-links a:hover {
  background: #f5f5f5;
}

.mobile-menu-links .sale-link {
  color: #ff4444;
}

.mobile-menu-links .logout-link {
  color: #ff4444;
}

.mobile-menu-links a i {
  width: 20px;
  margin-right: 12px;
  text-align: center;
  color: #666;
}

.mobile-menu-links a:hover i {
  color: #000;
}

.mobile-menu-section {
  border-top: 1px solid #e0e0e0;
  margin-top: 10px;
}

.mobile-menu-section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 20px;
  color: #1e3a8a;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.mobile-menu-section-title:hover {
  background: #e9ecef;
}

.mobile-menu-section-title span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-section-title .toggle-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #666;
}

.mobile-menu-section.active .mobile-menu-section-title {
  border-bottom: 1px solid #1e3a8a;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #ffffff;
}

.mobile-submenu-link {
  font-size: 15px !important;
  padding: 14px 20px 14px 50px !important;
  font-weight: 400 !important;
  display: block !important;
  color: #333 !important;
  border-bottom: 1px solid #f5f5f5 !important;
  transition: all 0.2s ease !important;
}

.mobile-submenu-link:hover {
  background: #f8f9fa !important;
  padding-left: 55px !important;
}

.mobile-submenu-link i {
  width: 18px !important;
  font-size: 14px;
  margin-right: 10px !important;
  color: #666 !important;
}

.mobile-submenu-link.logout-link {
  color: #dc3545 !important;
}

.mobile-submenu-link.logout-link i {
  color: #dc3545 !important;
}

.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.mobile-user-info i {
  font-size: 24px;
  color: #000;
}

.mobile-user-info span {
  font-weight: 600;
  color: #000;
}

.mobile-menu-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 10px 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 85vh;
  padding: 80px 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 25%, #1a1a1a 50%, #151515 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(100,100,255,0.03) 0%, transparent 40%);
  animation: shimmer 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 4px;
  margin-bottom: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}

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

.hero h1 {
  font-size: 76px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
  font-size: 18px;
  color: #999;
  margin-bottom: 45px;
  max-width: 450px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img {
  max-width: 580px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
  transform: rotate(-12deg);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float 6s ease-in-out infinite;
}

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

.hero-image:hover img {
  transform: rotate(-5deg) scale(1.08);
  filter: drop-shadow(0 50px 100px rgba(0,0,0,0.7));
  animation-play-state: paused;
}

/* Categories */
.categories {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 50px 20px;
  background: #0f0f0f;
  flex-wrap: wrap;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #888;
  transition: all 0.3s ease;
}

.category-item:hover {
  color: #fff;
  transform: translateY(-5px);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.category-item:hover .category-icon {
  background: rgba(255,255,255,0.1);
}

.category-item span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: 80px 60px;
  overflow: hidden;
  max-width: 100%;
}

.dark-section {
  background: #0f0f0f;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
}

.view-all {
  color: #888;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-all:hover {
  color: #fff;
}

.view-all i {
  transition: transform 0.3s ease;
}

.view-all:hover i {
  transform: translateX(5px);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Product Card */
.product-card {
  background: #151515;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  color: #000;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 2;
}

.product-badge.sale {
  background: #ff4444;
  color: #fff;
}

.product-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.product-wishlist:hover {
  background: #fff;
  color: #000;
}

.product-image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(180deg, #1a1a1a, #151515);
}

.product-image img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
}

.product-brand {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0;
  color: #fff;
  line-height: 1.4;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.price-sale {
  color: #ff4444;
  margin-right: 10px;
}

.price-original {
  font-size: 14px;
  color: #666;
  text-decoration: line-through;
  font-weight: 400;
}

/* Products Slider */
.products-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.products-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
  width: 100%;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.products-track .product-card {
  min-width: 280px;
  flex-shrink: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.2);
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Promo Banner */
.promo-banner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  overflow: hidden;
  max-width: 100%;
}

.banner-content {
  flex: 1;
  padding: 80px;
}

.banner-tag {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 6px 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.banner-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.banner-content p {
  color: #888;
  margin-bottom: 30px;
  max-width: 400px;
}

.banner-image {
  flex: 1;
  height: 500px;
  overflow: hidden;
}

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

/* Brands Section */
.brands-section {
  padding: 80px 60px;
  text-align: center;
  background: #0a0a0a;
  overflow: hidden;
}

.brands-section h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.brand-card {
  background: #151515;
  padding: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.brand-card:hover {
  background: #1a1a1a;
  transform: translateY(-5px);
}

.brand-card img {
  max-width: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.brand-card:hover img {
  opacity: 1;
}

/* Split Banner */
.split-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.split-item {
  position: relative;
  height: 500px;
  overflow: hidden;
}

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

.split-item:hover img {
  transform: scale(1.1);
}

.split-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.split-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.split-content span {
  font-size: 14px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.split-content span i {
  transition: transform 0.3s ease;
}

.split-item:hover .split-content span i {
  transform: translateX(5px);
}

/* Instagram Section */
.instagram-section {
  padding: 80px 60px;
  text-align: center;
  background: #0f0f0f;
  overflow: hidden;
}

.instagram-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.instagram-section p {
  color: #888;
  margin-bottom: 40px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-overlay i {
  font-size: 30px;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature {
  text-align: center;
}

.feature i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature p {
  color: #666;
  font-size: 14px;
}

/* Newsletter */
.newsletter {
  padding: 100px 60px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 36px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.newsletter p {
  color: #888;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 25px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #fff;
}

.newsletter-form input::placeholder {
  color: #666;
}

.newsletter-form button {
  padding: 18px 40px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #e0e0e0;
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 60px;
  color: #fff;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-brand p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  color: #000;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-legal span {
  color: #666;
  font-size: 13px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #666;
  font-size: 13px;
}

.legal-links a:hover {
  color: #fff;
}

.payment-methods {
  display: flex;
  gap: 15px;
}

.payment-methods i {
  font-size: 28px;
  color: #666;
}

/* Responsive */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .header {
    padding: 12px 20px;
  }
  
  .menu-btn {
    display: block;
  }
  
  .header-center {
    display: none;
  }
  
  .search-mobile {
    display: flex;
  }
  
  .promo-text {
    display: none;
  }
  
  .promo-btn {
    padding: 10px 12px;
  }
  
  .country-selector .country-text,
  .country-selector i {
    display: none;
  }
  
  .country-selector {
    padding: 8px 10px;
  }
  
  .help-icon {
    display: none;
  }
  
  /* Ensure user dropdown is visible on mobile */
  .user-dropdown {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .user-btn {
    background: #f5f5f5 !important;
    border: 2px solid #333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
  }
  
  .user-btn i {
    color: #000 !important;
    font-weight: bold !important;
    font-size: 18px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    min-height: auto;
    gap: 30px;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 2;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-image img {
    max-width: 350px;
    transform: rotate(0deg);
  }
  
  .hero-image:hover img {
    transform: rotate(0deg) scale(1.02);
  }
  
  .main-nav {
    display: none;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .promo-banner {
    flex-direction: column;
  }
  
  .banner-image {
    height: 300px;
  }
  
  .footer-main {
    flex-direction: column;
  }
  
  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 15px;
    gap: 10px;
  }
  
  .header-left .logo {
    font-size: 18px;
  }
  
  .header-right {
    gap: 8px;
  }
  
  .icon-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .user-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .promo-btn {
    padding: 8px 10px;
  }
  
  .promo-btn .coin-badge {
    padding: 3px 8px;
    font-size: 11px;
  }
  
  .section {
    padding: 40px 15px;
  }
  
  .hero {
    padding: 30px 15px;
    flex-direction: column;
    gap: 25px;
    min-height: auto;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 2;
    margin-top: 20px;
  }
  
  .hero h1 {
    font-size: 28px;
    word-wrap: break-word;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .hero-image img {
    max-width: 100%;
    width: 280px;
    transform: rotate(0deg);
  }
  
  .categories {
    gap: 15px;
    padding: 25px 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  
  .category-item {
    flex-shrink: 0;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .section-header h2 {
    font-size: 22px;
  }
  
  .products-grid {
    gap: 15px;
  }
  
  .product-card {
    min-width: 0;
  }
  
  .product-image {
    height: 180px;
  }
  
  .split-banner {
    grid-template-columns: 1fr;
  }
  
  .split-item {
    height: 300px;
  }
  
  .brands-section {
    padding: 50px 15px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .brand-card {
    padding: 25px;
  }
  
  .instagram-section {
    padding: 50px 15px;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .features {
    padding: 40px 15px;
    gap: 25px;
  }
  
  .newsletter {
    padding: 50px 15px;
  }
  
  .newsletter h2 {
    font-size: 26px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer {
    padding: 40px 15px;
  }
  
  .footer-main {
    gap: 30px;
  }
  
  .footer-links {
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
  }
  
  .banner-content {
    padding: 40px 15px;
  }
  
  .banner-content h2 {
    font-size: 26px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .products-track .product-card {
    min-width: 220px;
  }
}

@media (max-width: 576px) {
  .header-left .logo {
    font-size: 16px;
  }
  
  .hero h1 {
    font-size: 26px;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    padding: 14px 25px;
    width: 100%;
    text-align: center;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-name {
    font-size: 12px;
  }
  
  .product-price {
    font-size: 14px;
  }
  
  .product-image {
    height: 150px;
    padding: 15px;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .banner-content {
    padding: 30px 15px;
  }
  
  .banner-content h2 {
    font-size: 22px;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .category-item span {
    font-size: 10px;
  }
  
  .announcement {
    font-size: 10px;
    padding: 8px 10px;
  }
}








/* Product Page Styles */

/* Product Section */
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 40px;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breadcrumb a {
  color: #888;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb i {
  font-size: 10px;
  color: #666;
}

/* Product Main */
.product-main {
  padding: 40px;
}

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

/* Product Gallery */
.product-gallery {
  display: flex;
  gap: 20px;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
}

.thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumb.active {
  border-color: #fff;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumb:hover img {
  transform: scale(1.1);
}

.gallery-main {
  flex: 1;
  position: relative;
  background: #151515;
  border-radius: 12px;
  overflow: hidden;
  height: 600px;
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f5a623;
  color: #000;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

.gallery-badge.sale {
  background: #ff4444;
  color: #fff;
}

.gallery-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-wishlist:hover {
  background: #fff;
  color: #000;
}

.gallery-images {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-images img.active {
  opacity: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: #fff;
  color: #000;
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.main-image {
  position: relative;
  background: #151515;
  border-radius: 12px;
  overflow: hidden;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.wishlist-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  background: #fff;
  color: #000;
}

.wishlist-btn.active {
  background: #ff4444;
  color: #fff;
}

/* Product Details Section */
.product-details {
  padding: 20px 0;
}

/* Product Info */
.product-header {
  margin-bottom: 20px;
}

.product-brand {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.product-category {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.2;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.stars {
  color: #ffd700;
  display: flex;
  gap: 2px;
}

.rating-count {
  color: #888;
  font-size: 14px;
}

.product-sku {
  font-size: 12px;
  color: #666;
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Product Price */
.product-price-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.current-price {
  font-size: 32px;
  font-weight: 700;
}

.original-price {
  font-size: 20px;
  color: #666;
  text-decoration: line-through;
}

.discount-badge {
  background: #ff4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.discount {
  background: #ff4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

/* Product Description */
.product-description {
  margin: 30px 0;
  color: #ccc;
  line-height: 1.8;
}

.product-description ul {
  margin: 15px 0 0 20px;
}

.product-description li {
  margin-bottom: 8px;
  color: #888;
}

/* Size Selection */
.product-size {
  margin: 30px 0;
}

.size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.size-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.size-guide {
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.size-guide:hover {
  color: #fff;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  min-width: 50px;
  height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

.size-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.size-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.size-option {
  width: 60px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.size-option:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.size-option.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Color Selection */
.product-color {
  margin: 30px 0;
}

.product-color h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-btn:hover {
  transform: scale(1.1);
}

.color-btn.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px #0a0a0a, 0 0 0 4px #fff;
}

.selected-color {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #888;
}

.selected-color strong {
  color: #fff;
}

.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-option.active .color-swatch {
  border: 2px solid #fff;
}

.color-swatch {
  width: 40px;;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.color-option span {
  font-size: 12px;
  color: #888;
}

.color-option.active span {
  color: #fff;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 15px;
  margin: 40px 0;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(255,255,255,0.1);
}

.qty-input {
  width: 50px;
  height: 44px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

#quantity {
  width: 60px;
  height: 56px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

#quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Product Options */
.product-options {
  margin: 30px 0;
}

.option-group {
  margin-bottom: 25px;
}

.option-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.size-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.size-guide-link:hover {
  color: #f5a623;
}

.add-to-cart {
  flex: 1;
  height: 56px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.add-to-cart:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.buy-now {
  flex: 1;
  height: 56px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-now:hover {
  background: #222;
  border-color: #fff;
}

.btn-icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  background: rgba(255,255,255,0.05);
  border-color: #fff;
}

/* Product Meta */
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 25px 0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #888;
}

.meta-item i {
  color: #f5a623;
  font-size: 16px;
  width: 20px;
}

/* Product Accordion */
.product-accordion {
  margin-top: 30px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: #f5a623;
}

.accordion-header i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-bottom: 20px;
}

.accordion-content ul {
  list-style: none;
  padding: 0;
}

.accordion-content li {
  padding: 8px 0;
  color: #888;
  font-size: 14px;
}

.accordion-content p {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Product Features */
.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 30px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  margin: 30px 0;
  border: 1px solid rgba(255,255,255,0.05);
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature i {
  font-size: 20px;
  color: #fff;
}

/* Product Share */
.product-share {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.product-share span {
  font-size: 14px;
  color: #888;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-buttons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.share-buttons a:hover {
  background: #fff;
  color: #000;
}

/* Product Tabs */
.product-tabs {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 40px;
}

.tabs-header {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 40px;
}

.tab-btn {
  padding: 20px 0;
  background: none;
  border: none;
  color: #888;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn.active {
  color: #fff;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.tabs-content {
  padding: 40px 0;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-content {
  color: #ccc;
  line-height: 1.8;
}

.tab-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.spec h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.spec p {
  color: #888;
}

/* Reviews */
.reviews-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.avg-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
}

.write-review-btn {
  padding: 15px 30px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.write-review-btn:hover {
  background: #e0e0e0;
}

.review {
  padding: 25px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reviewer-name {
  font-weight: 600;
}

.review-date {
  font-size: 14px;
  color: #888;
}

/* Related Products */
.related-products {
  padding: 80px 40px;
  background: #0f0f0f;
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  color: #000;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 3000;
}

.cart-notification.show,
.cart-notification.active {
  transform: translateY(0);
  opacity: 1;
}

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

.notification-content i {
  font-size: 24px;
  color: #4CAF50;
}

/* Responsive */
@media (max-width: 1200px) {
  .product-container {
    gap: 40px;
  }
  
  .main-image {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }
  
  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .gallery-thumbs {
    flex-direction: row;
    width: 100%;
    order: 2;
  }
  
  .gallery-thumbnails {
    flex-direction: row;
    width: 100%;
    order: 2;
    margin-top: 20px;
  }
  
  .product-gallery {
    flex-direction: column;
  }
  
  .gallery-main {
    height: 450px;
  }
  
  .main-image {
    height: 400px;
  }
  
  .product-main {
    padding: 20px;
  }
  
  .product-tabs {
    padding: 0 20px;
  }
  
  .related-products {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 15px 20px;
    font-size: 12px;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .product-rating {
    gap: 10px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .quantity-selector {
    width: 100%;
    justify-content: center;
  }
  
  .add-to-cart,
  .buy-now {
    width: 100%;
  }
  
  .product-features {
    grid-template-columns: 1fr;
  }
  
  .tabs-header {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .tab-btn {
    padding: 10px 0;
    font-size: 14px;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-summary {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .thumb {
    width: 60px;
    height: 60px;
  }
  
  .main-image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .product-main {
    padding: 15px;
  }
  
  .product-title {
    font-size: 20px;
  }
  
  .current-price {
    font-size: 24px;
  }
  
  .original-price {
    font-size: 16px;
  }
  
  .size-option {
    width: 50px;
    height: 40px;
  }
  
  .color-options {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .cart-notification {
    left: 15px;
    right: 15px;
    bottom: 15px;
    text-align: center;
  }
}

/* products page style ends here */

/* ==================== ABOUT PAGE STYLES ==================== */

/* About Hero */
.about-hero {
  min-height: 60vh;
}

/* About Content Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.about-text p {
  color: #999;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
}

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

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

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 80px 60px;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: #fff;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.value-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

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

.team-member:hover .team-image {
  border-color: #fff;
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-member h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-member span {
  font-size: 14px;
  color: #888;
}

/* Active Nav Link */
.main-nav a.active {
  color: #fff;
}

.main-nav a.active::after {
  width: 100%;
}

/* Responsive About Page */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 30px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 28px;
  }

  .stat-number {
    font-size: 36px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .stats-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 20px;
  }

  .stat-number {
    font-size: 32px;
  }
}

/* about page style ends here */

/* ==================== CART PAGE STYLES ==================== */

.cart-page {
  padding: 40px;
  min-height: 60vh;
}

.cart-container {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Cart Items Section */
.cart-items-section {
  background: #151515;
  border-radius: 12px;
  padding: 30px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-header h1 {
  font-size: 28px;
  font-weight: 700;
}

.cart-count-text {
  color: #888;
  font-size: 16px;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: all 0.3s ease;
}

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

.item-image {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}

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

.item-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.item-info {
  flex: 1;
}

.item-brand {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.item-name {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0;
}

.item-variants {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #888;
}

.item-sale-badge {
  display: inline-block;
  background: #ff4444;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-control .qty-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-control .qty-btn:hover {
  background: rgba(255,255,255,0.1);
}

.quantity-control .qty-input {
  width: 50px;
  height: 36px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.item-price {
  font-size: 20px;
  font-weight: 700;
}

.item-price .sale-price {
  color: #ff4444;
}

.item-price .original-price {
  font-size: 14px;
  color: #666;
  text-decoration: line-through;
  margin-left: 10px;
}

.remove-item {
  position: absolute;
  top: 25px;
  right: 0;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.remove-item:hover {
  color: #ff4444;
}

/* Empty Cart */
.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.empty-cart i {
  font-size: 60px;
  color: #333;
  margin-bottom: 20px;
}

.empty-cart h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.empty-cart p {
  color: #888;
  margin-bottom: 30px;
}

.continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #888;
  margin-top: 30px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.continue-shopping:hover {
  color: #fff;
}

/* Checkout Section */
.checkout-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Order Summary */
.order-summary {
  background: #151515;
  border-radius: 12px;
  padding: 30px;
}

.order-summary h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 15px;
}

.summary-row span:first-child {
  color: #888;
}

.free-shipping {
  color: #4CAF50;
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 15px 0;
}

.summary-row.total {
  font-size: 20px;
  font-weight: 700;
}

.summary-row.total span:first-child {
  color: #fff;
}

/* Promo Code */
.promo-code {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.promo-code input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.promo-code input:focus {
  border-color: rgba(255,255,255,0.3);
}

.apply-btn {
  padding: 12px 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: rgba(255,255,255,0.2);
}

.promo-message {
  font-size: 13px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-message.success {
  color: #4CAF50;
}

.promo-message.error {
  color: #ff4444;
}

.savings-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 12px 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 14px;
  color: #4CAF50;
}

/* Checkout Form */
.checkout-form {
  background: #151515;
  border-radius: 12px;
  padding: 30px;
}

.checkout-form h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}

.form-section h3 i {
  color: #888;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,0.3);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.payment-option {
  flex: 1;
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 15px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.payment-content i {
  font-size: 24px;
  color: #888;
}

.payment-content span {
  font-size: 12px;
  color: #888;
}

.payment-option.active .payment-content {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

.payment-option.active .payment-content i,
.payment-option.active .payment-content span {
  color: #fff;
}

.card-details {
  margin-top: 20px;
}

/* Place Order Button */
.place-order-btn {
  width: 100%;
  padding: 18px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.place-order-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.place-order-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}

.secure-checkout i {
  color: #4CAF50;
}

/* Cart Icon Active */
.cart-icon.active {
  background: #fff;
  color: #000;
}

/* Responsive Cart */
@media (max-width: 1200px) {
  .cart-container {
    grid-template-columns: 1fr 380px;
  }
}

@media (max-width: 992px) {
  .cart-container {
    grid-template-columns: 1fr;
  }

  .cart-page {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .cart-items-section,
  .order-summary,
  .checkout-form {
    padding: 20px;
  }

  .cart-header h1 {
    font-size: 22px;
  }

  .cart-item {
    flex-direction: column;
  }

  .item-image {
    width: 100%;
    height: 200px;
  }

  .item-details {
    flex-direction: column;
    gap: 15px;
  }

  .item-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .remove-item {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    flex-direction: column;
  }

  .payment-content {
    flex-direction: row;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .cart-page {
    padding: 15px;
  }

  .item-name {
    font-size: 16px;
  }

  .item-variants {
    flex-direction: column;
    gap: 5px;
  }
}

/* User Menu Styles */
.user-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.auth-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.auth-link:hover {
  color: #f5a623;
}

.auth-btn {
  background: linear-gradient(135deg, #f5a623, #e09612);
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: linear-gradient(135deg, #e09612, #c98a0f);
  transform: translateY(-2px);
}

.user-dropdown {
  position: relative;
  z-index: 1000;
}

.user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #ddd;
  width: 40px;
  height: 40px;
  justify-content: center;
  border-radius: 6px;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-btn i {
  color: #333;
}

.user-btn:hover {
  background: #f5f5f5;
  color: #000;
  border-color: #999;
}

.user-btn:hover i {
  color: #000;
}

/* Removed duplicate dropdown styles - using user-dropdown-menu from line 292 */

@media (max-width: 768px) {
  .user-menu {
    gap: 10px;
  }
  
  .auth-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .user-btn span {
    display: none;
  }
  
  .user-btn i:last-child {
    display: none;
  }
}/* cart page style ends here */

