/* Modern Fashion CSS - Premium E-commerce Design */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Premium Color Palette - Inspired by luxury brands */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --gold-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --luxury-gradient: linear-gradient(135deg, #000000 0%, #434343 100%);
  --rose-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  --ocean-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --sunset-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  
  /* Accent Colors */
  --accent-red: #ff4444;
  --accent-pink: #ff6b9d;
  --accent-purple: #c471ed;
  --accent-blue: #4d9fff;
  --accent-green: #00d084;
  --accent-yellow: #ffc107;
  --accent-orange: #ff9800;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-2xl: 0 24px 64px rgba(0,0,0,0.20);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Premium Animations Library */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(0.9);
  }
  20%, 40%, 60%, 80% {
    transform: scale(1.1);
  }
  50%, 70% {
    transform: scale(1.05);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.5),
                0 0 10px rgba(102, 126, 234, 0.3),
                0 0 15px rgba(102, 126, 234, 0.2);
  }
  50% {
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8),
                0 0 20px rgba(102, 126, 234, 0.5),
                0 0 30px rgba(102, 126, 234, 0.3);
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Top Bar - Enhanced with Gradient */
.top-bar {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 12px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.top-bar-content span {
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: slideInRight 0.6s ease-out;
}

.top-bar-content span:nth-child(1) { animation-delay: 0.1s; }
.top-bar-content span:nth-child(2) { animation-delay: 0.2s; }
.top-bar-content span:nth-child(3) { animation-delay: 0.3s; }

/* Header - Premium Design */
.main-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.main-header:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.search-bar {
  flex: 1;
  max-width: 550px;
  margin: 0 40px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 14px 50px 14px 24px;
  border: 2px solid transparent;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-bar input:focus {
  outline: none;
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.search-bar input::placeholder {
  color: #999;
  font-weight: 500;
}

.search-bar button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-gradient);
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.search-bar button:hover {
  transform: translateY(-50%) scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.account-dropdown-wrapper {
  position: relative;
}

.icon-link {
  color: #1a1a1a;
  font-size: 20px;
  position: relative;
  transition: color 0.3s;
  text-decoration: none;
}

.icon-link:hover {
  color: #666;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ff4444;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #1a1a1a;
}

/* Account Dropdown */
.account-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 320px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.account-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}

.account-dropdown-wrapper:hover .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown-content {
  padding: 25px;
}

/* Guest Account */
.account-guest h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.account-guest p {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.account-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-account-primary, .btn-account-secondary {
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-account-primary {
  background: #1a1a1a;
  color: #ffffff;
}

.btn-account-primary:hover {
  background: #333;
}

.btn-account-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn-account-secondary:hover {
  background: #f8f8f8;
}

/* Logged In Account */
.account-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
}

.account-avatar {
  width: 50px;
  height: 50px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 28px;
}

.account-details h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.account-details p {
  font-size: 12px;
  color: #666;
}

.account-menu {
  display: flex;
  flex-direction: column;
}

.account-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s;
}

.account-menu-item:hover {
  background: #f8f8f8;
}

.account-menu-item i {
  width: 20px;
  font-size: 16px;
  color: #666;
}

.account-menu-item.admin-item {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  margin: 5px 0;
}

.account-menu-item.admin-item i {
  color: #ffffff;
}

.account-menu-item.admin-item:hover {
  opacity: 0.9;
  transform: translateX(3px);
}

.account-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 10px 0;
}

.account-menu-item.logout-item {
  color: #ff4444;
}

.account-menu-item.logout-item i {
  color: #ff4444;
}

.account-menu-item.logout-item:hover {
  background: #fff5f5;
}

/* Mega Menu */
.mega-menu {
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.menu-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.menu-list > li {
  position: relative;
}

.menu-list li a {
  display: block;
  padding: 20px 0;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.menu-list li a:hover {
  color: #666;
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 40px;
  margin-top: 0;
}

.has-mega-dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mega-dropdown-content {
  display: flex;
  gap: 40px;
}

.mega-columns {
  display: flex;
  gap: 40px;
  flex: 1;
}

.mega-column {
  flex: 1;
}

.mega-column h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #1a1a1a;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a1a1a;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li {
  margin-bottom: 10px;
}

.mega-column ul li a {
  padding: 5px 0;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #666;
  transition: all 0.3s;
}

.mega-column ul li a:hover {
  color: #1a1a1a;
  padding-left: 5px;
}

/* Mega Featured */
.mega-featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 280px;
}

.mega-featured-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.mega-featured-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s;
}

.mega-featured-item:hover img {
  transform: scale(1.05);
}

.mega-featured-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 30px 15px 15px;
  color: #ffffff;
}

.mega-featured-text h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.mega-featured-text a {
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s;
}

.mega-featured-text a:hover {
  padding-left: 5px;
}

/* Hero Banner - Premium Design */
.hero-banner {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.3), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #ffffff;
  z-index: 3;
  max-width: 650px;
  text-align: left;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate(-50px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

.hero-tagline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: slideInRight 1s ease-out 0.3s backwards;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInRight 1s ease-out 0.5s backwards;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 35px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  line-height: 1.6;
  animation: slideInRight 1s ease-out 0.7s backwards;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  animation: slideInRight 1s ease-out 0.9s backwards;
}

.btn-hero-primary, .btn-hero-secondary {
  padding: 18px 45px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before,
.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before,
.btn-hero-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hero-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary:hover {
  background: #ffffff;
  color: #667eea;
  border-color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.hero-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.hero-arrow {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  color: #ffffff;
  font-size: 22px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-arrow:active {
  transform: scale(0.95);
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #ffffff;
  width: 30px;
  border-radius: 5px;
}

/* Trust Bar */
.trust-bar {
  background: #f8f8f8;
  padding: 40px 20px;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-item i {
  font-size: 32px;
  color: #1a1a1a;
}

.trust-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-text p {
  font-size: 13px;
  color: #666;
}

/* Category Tiles */
.category-section {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1;
  text-decoration: none;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-tile:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 40px 20px 20px;
  color: #ffffff;
  transition: all 0.3s;
}

.category-tile:hover .category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.category-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.category-overlay span {
  font-size: 14px;
  font-weight: 400;
  transition: transform 0.3s;
  display: inline-block;
}

.category-tile:hover .category-overlay span {
  transform: translateX(5px);
}

/* Section Header */
.section-header {
  text-align: center;
  margin: 80px 0 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-header p {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 25px;
  background: transparent;
  border: 1px solid #e5e5e5;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab:hover, .tab.active {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

/* Products Section */
.products-section {
  padding: 0 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  position: relative;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease-out;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
}

.product-card:hover::before {
  opacity: 0.05;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  margin-bottom: 15px;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(2deg);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary-gradient);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
  animation: pulse 2s infinite;
}

.product-badge.new {
  background: var(--dark-gradient);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-badge.hot {
  background: var(--gold-gradient);
  box-shadow: 0 4px 15px rgba(246, 211, 101, 0.5);
  animation: float 3s ease-in-out infinite;
}

.product-badge.sale {
  background: var(--secondary-gradient);
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.product-info {
  padding: 16px;
  position: relative;
  z-index: 1;
}

.product-name-link {
  text-decoration: none;
  color: inherit;
}

.product-name-link:hover {
  text-decoration: none;
}

.product-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
  color: #667eea;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.current-price {
  font-size: 20px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.old-price {
  font-size: 15px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-percent {
  display: inline-block;
  background: var(--secondary-gradient);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.product-rating .stars {
  display: flex;
  gap: 2px;
}

.product-rating i {
  color: #ffc107;
  font-size: 12px;
  filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.3));
}

.product-rating i.far {
  color: #ddd;
}

/* Quick View Button */
.quick-view-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  z-index: 3;
  white-space: nowrap;
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quick-view-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.5);
}

/* Wishlist Button */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wishlist-btn i {
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  transform: scale(1.15) rotate(10deg);
  background: var(--secondary-gradient);
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

.wishlist-btn:hover i {
  color: #ffffff;
}

.wishlist-btn.active {
  background: var(--secondary-gradient);
}

.wishlist-btn.active i {
  color: #ffffff;
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin: 40px 0;
}

.btn-view-all {
  display: inline-block;
  padding: 15px 50px;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-view-all:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* Lookbook Section */
.lookbook-section {
  padding: 80px 40px;
  background: #f8f8f8;
}

.lookbook-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.lookbook-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lookbook-item.reverse {
  direction: rtl;
}

.lookbook-item.reverse > * {
  direction: ltr;
}

.lookbook-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
}

.lookbook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.lookbook-item:hover .lookbook-image img {
  transform: scale(1.05);
}

.lookbook-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.lookbook-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.outfit-list {
  list-style: none;
  margin-bottom: 30px;
}

.outfit-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.outfit-list li span {
  font-size: 14px;
  color: #1a1a1a;
}

.outfit-list li a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.outfit-list li a:hover {
  color: #1a1a1a;
}

.btn-buy-set {
  padding: 12px 30px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-buy-set:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Campaign Section */
.campaign-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.campaign-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.campaign-image img {
  width: 100%;
  border-radius: 8px;
}

.campaign-tag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #666;
}

.campaign-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.campaign-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.btn-campaign {
  display: inline-block;
  padding: 15px 40px;
  background: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-campaign:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Flash Sale Section */
.flash-sale-section {
  padding: 60px 40px;
  background: #1a1a1a;
  color: #ffffff;
}

.flash-sale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.flash-sale-header h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

.countdown-timer {
  display: flex;
  gap: 15px;
  font-size: 24px;
  font-weight: 700;
}

.time-unit {
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 8px;
}

.flash-sale-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Flash Sale Product Cards */
.flash-product-card {
  background: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flash-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.flash-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}

.flash-product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.flash-product-info {
  padding: 16px;
}

.flash-product-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flash-product-prices {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flash-price-sale {
  font-size: 18px;
  font-weight: 700;
  color: #ff416c;
}

.flash-price-original {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}

.flash-product-link,
.flash-product-name-link {
  text-decoration: none;
  color: inherit;
}

.flash-product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-flash-buy {
  flex: 1;
  padding: 10px 16px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-flash-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.btn-flash-detail {
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-flash-detail:hover {
  background: rgba(255,255,255,0.2);
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease-out;
}

.cart-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.cart-notification i {
  font-size: 20px;
}

.cart-notification span {
  font-size: 14px;
  font-weight: 500;
}

.cart-notification a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 8px;
}

.cart-notification a:hover {
  text-decoration: none;
}

/* Brand Values Section */
.brand-values-section {
  padding: 80px 40px;
  background: #f8f8f8;
}

.brand-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-image img {
  width: 100%;
  border-radius: 8px;
}

.brand-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.brand-values {
  list-style: none;
  margin-bottom: 30px;
}

.brand-values li {
  padding: 15px 0;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  line-height: 1.6;
}

.brand-values li i {
  color: #1a1a1a;
  font-size: 20px;
  margin-top: 2px;
}

.btn-brand {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-brand:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.reviewer-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.reviewer-info p {
  font-size: 12px;
  color: #666;
}

.review-rating {
  margin-bottom: 15px;
}

.review-rating i {
  color: #ffc107;
  font-size: 14px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

/* Newsletter + Social Section */
.newsletter-social-section {
  padding: 80px 40px;
  background: #f8f8f8;
}

.newsletter-social-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.newsletter-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.newsletter-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
}

.newsletter-form button {
  padding: 15px 40px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: #333;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

.social-gallery h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.social-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.social-item:hover img {
  transform: scale(1.1);
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.social-item:hover .social-overlay {
  opacity: 1;
}

.social-overlay i {
  font-size: 32px;
  color: #ffffff;
}

/* Footer */
.main-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 40px 20px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-column p, .footer-column span {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #999;
  font-size: 13px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #333;
  transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }

  .search-bar {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Account Dropdown Mobile */
  .account-dropdown {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .account-dropdown::before {
    display: none;
  }

  .account-dropdown-wrapper:hover .account-dropdown {
    transform: none;
  }

  .mega-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .mega-menu.active {
    display: block;
  }

  .menu-list {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .menu-list > li {
    border-bottom: 1px solid #f0f0f0;
  }

  .menu-list li a {
    padding: 15px 20px;
  }

  .mega-dropdown {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    display: none;
    background: #f8f8f8;
  }

  .has-mega-dropdown.active .mega-dropdown {
    display: block;
  }

  .mega-dropdown-content {
    flex-direction: column;
    padding: 20px;
  }

  .mega-columns {
    flex-direction: column;
    gap: 20px;
  }

  .mega-featured {
    width: 100%;
    flex-direction: row;
    gap: 15px;
  }

  .mega-featured-item {
    flex: 1;
  }

  .mega-featured-item img {
    height: 150px;
  }

  .hero-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .trust-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .lookbook-item {
    grid-template-columns: 1fr;
  }

  .lookbook-item.reverse {
    direction: ltr;
  }

  .campaign-container {
    grid-template-columns: 1fr;
  }

  .flash-sale-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .brand-container {
    grid-template-columns: 1fr;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .newsletter-social-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .campaign-content h2 {
    font-size: 32px;
  }
}


/* ============================================
   PREMIUM UTILITY CLASSES & EFFECTS
   ============================================ */

/* Glassmorphism Effects */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text */
.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hover Effects */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.hover-scale {
  transition: transform var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: transform var(--transition-base);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-glow {
  transition: box-shadow var(--transition-base);
}

.hover-glow:hover {
  animation: glow 1.5s ease-in-out infinite;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Animated Gradient Background */
.animated-gradient {
  background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

/* Shimmer Effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

/* Floating Animation */
.floating {
  animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
.pulsing {
  animation: pulse 2s ease-in-out infinite;
}

/* Bounce Animation */
.bouncing {
  animation: bounce 2s ease-in-out infinite;
}

/* Rotating Animation */
.rotating {
  animation: rotate 20s linear infinite;
}

/* Badge Styles */
.badge-hot {
  position: relative;
  background: var(--sunset-gradient);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
  animation: pulse 2s infinite;
}

.badge-new {
  background: var(--luxury-gradient);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.badge-sale {
  background: var(--secondary-gradient);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
  animation: bounce 2s infinite;
}

.badge-limited {
  background: var(--gold-gradient);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(246, 211, 101, 0.5);
  animation: glow 2s infinite;
}

/* Social Proof Badges */
.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  animation: slideUp 0.6s ease-out;
}

.social-proof i {
  color: var(--accent-green);
  font-size: 16px;
}

.social-proof .count {
  color: var(--accent-green);
  font-weight: 700;
}

/* Trust Badges */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-badge i {
  font-size: 24px;
  color: var(--accent-green);
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
}

.trust-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
}

.trust-badge-subtitle {
  font-size: 11px;
  color: var(--gray-600);
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
  background: var(--primary-gradient);
  border-radius: 12px;
  min-width: 80px;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}

.countdown-number {
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.countdown-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 10px;
  transition: width 1s ease-out;
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

/* Stock Alert */
.stock-alert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 154, 158, 0.4);
  animation: pulse 2s infinite;
}

.stock-alert i {
  animation: bounce 1s infinite;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden;
  background: var(--gray-900);
  color: white;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.tooltip .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--gray-900) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

.spinner-gradient {
  width: 40px;
  height: 40px;
  border: 4px solid transparent;
  border-top: 4px solid;
  border-image: var(--primary-gradient) 1;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-300) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
}

.skeleton-title {
  height: 24px;
  margin-bottom: 12px;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 1;
}

/* Notification Dot */
.notification-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: var(--accent-red);
  border: 2px solid white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: 15px;
  right: -5px;
  background: var(--accent-red);
  color: white;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4);
  z-index: 10;
}

.ribbon::before {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid darkred;
  border-bottom: 8px solid transparent;
}

/* Sticker Effect */
.sticker {
  position: relative;
  transform: rotate(-5deg);
  transition: transform var(--transition-base);
}

.sticker:hover {
  transform: rotate(0deg) scale(1.1);
}

/* Neon Effect */
.neon-text {
  color: white;
  text-shadow: 
    0 0 5px rgba(102, 126, 234, 0.8),
    0 0 10px rgba(102, 126, 234, 0.6),
    0 0 20px rgba(102, 126, 234, 0.4),
    0 0 40px rgba(102, 126, 234, 0.2);
  animation: glow 2s ease-in-out infinite;
}

/* 3D Card Effect */
.card-3d {
  transform-style: preserve-3d;
  transition: transform var(--transition-slow);
}

.card-3d:hover {
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
}

/* Magnetic Button Effect */
.magnetic-btn {
  position: relative;
  transition: transform var(--transition-fast);
}

.magnetic-btn:hover {
  transform: scale(1.05);
}

/* Blur on Scroll */
.blur-on-scroll {
  transition: filter var(--transition-base);
}

.blur-on-scroll.scrolled {
  filter: blur(3px);
}

/* Text Reveal Animation */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.6s ease-out forwards;
}

.text-reveal span:nth-child(1) { animation-delay: 0.1s; }
.text-reveal span:nth-child(2) { animation-delay: 0.2s; }
.text-reveal span:nth-child(3) { animation-delay: 0.3s; }
.text-reveal span:nth-child(4) { animation-delay: 0.4s; }
.text-reveal span:nth-child(5) { animation-delay: 0.5s; }

/* Morphing Shape */
.morphing-shape {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* Perspective Hover */
.perspective-hover {
  perspective: 1000px;
}

.perspective-hover-inner {
  transition: transform var(--transition-slow);
  transform-style: preserve-3d;
}

.perspective-hover:hover .perspective-hover-inner {
  transform: rotateY(10deg) rotateX(5deg);
}
