/** Shopify CDN: Minification failed

Line 1826:0 All "@import" rules must come first

**/
/* 
  Power Gadgets Hub - Custom Styles
  A modern tech accessories store theme
  ============================================
*/

/* ===========================================
   CSS CUSTOM PROPERTIES (Variables)
   =========================================== */
:root {
  /* Brand Colors */
  --pgh-primary: #3B82F6;
  --pgh-primary-dark: #2563EB;
  --pgh-primary-light: #60A5FA;
  --pgh-secondary: #1E293B;
  --pgh-accent: #10B981;
  --pgh-accent-light: #34D399;
  
  /* Neutral Colors */
  --pgh-dark: #0F172A;
  --pgh-gray-900: #1E293B;
  --pgh-gray-700: #334155;
  --pgh-gray-500: #64748B;
  --pgh-gray-300: #CBD5E1;
  --pgh-gray-100: #F1F5F9;
  --pgh-light: #F8FAFC;
  --pgh-white: #FFFFFF;
  
  /* Gradients */
  --pgh-gradient-primary: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  --pgh-gradient-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  --pgh-gradient-accent: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --pgh-gradient-tech: linear-gradient(135deg, #0F172A 0%, #1E40AF 50%, #7C3AED 100%);
  
  /* Shadows */
  --pgh-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --pgh-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --pgh-shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --pgh-shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --pgh-shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
  
  /* Transitions */
  --pgh-transition-fast: 150ms ease;
  --pgh-transition: 250ms ease;
  --pgh-transition-slow: 350ms ease;
}

/* ===========================================
   GLOBAL STYLES
   =========================================== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection color */
::selection {
  background: var(--pgh-primary);
  color: var(--pgh-white);
}

/* ===========================================
   HEADER & NAVIGATION
   =========================================== */

/* Sticky header with blur effect */
.header-sticky {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: var(--pgh-shadow);
}

/* Navigation links */
.nav-link {
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--pgh-transition);
}

.nav-link:hover {
  color: var(--pgh-primary) !important;
}

/* ===========================================
   BUTTONS
   =========================================== */

/* Primary button enhancements */
.btn-primary {
  background: var(--pgh-gradient-primary);
  border: none;
  box-shadow: var(--pgh-shadow-sm);
  transition: all var(--pgh-transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--pgh-shadow-md), var(--pgh-shadow-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary button */
.btn-secondary {
  background: var(--pgh-gradient-dark);
  border: none;
  transition: all var(--pgh-transition);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--pgh-shadow-md);
}

/* Outline buttons */
.btn-outline-primary {
  border-width: 2px;
  font-weight: 600;
  transition: all var(--pgh-transition);
}

.btn-outline-primary:hover {
  background: var(--pgh-primary);
  border-color: var(--pgh-primary);
  transform: translateY(-2px);
}

/* ===========================================
   PRODUCT CARDS
   =========================================== */

/* Card container */
.product-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--pgh-white);
  border: 1px solid var(--pgh-gray-100);
  transition: all var(--pgh-transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pgh-shadow-lg);
  border-color: var(--pgh-primary-light);
}

/* Product image */
.product-card .card-img-top,
.product-card img {
  transition: transform var(--pgh-transition-slow);
}

.product-card:hover .card-img-top,
.product-card:hover img {
  transform: scale(1.05);
}

/* Product title */
.product-card .card-title,
.product-card .product-title {
  font-weight: 600;
  color: var(--pgh-dark);
  transition: color var(--pgh-transition);
}

.product-card:hover .card-title,
.product-card:hover .product-title {
  color: var(--pgh-primary);
}

/* Price styling */
.product-card .price,
.product-price {
  font-weight: 700;
  color: var(--pgh-primary);
}

.product-card .compare-at-price,
.compare-price {
  color: var(--pgh-gray-500);
  text-decoration: line-through;
}

/* Sale badge */
.badge-sale,
.product-card .badge {
  background: var(--pgh-accent);
  color: var(--pgh-white);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero-section,
.slideshow__slide {
  position: relative;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 64, 175, 0.6) 100%);
}

.hero-content h1,
.hero-content .h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-content p {
  opacity: 0.9;
  font-size: 1.125rem;
}

/* ===========================================
   COLLECTION / CATEGORY GRID
   =========================================== */

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all var(--pgh-transition);
}

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
  z-index: 1;
  transition: background var(--pgh-transition);
}

.collection-card:hover::before {
  background: linear-gradient(to top, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0.2) 60%);
}

.collection-card:hover {
  transform: scale(1.02);
  box-shadow: var(--pgh-shadow-lg);
}

.collection-card img {
  transition: transform var(--pgh-transition-slow);
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-card .collection-title {
  position: relative;
  z-index: 2;
  color: var(--pgh-white);
  font-weight: 700;
}

/* ===========================================
   TRUST BADGES / FEATURES
   =========================================== */

.trust-badge,
.feature-item {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: var(--pgh-light);
  transition: all var(--pgh-transition);
}

.trust-badge:hover,
.feature-item:hover {
  background: var(--pgh-white);
  box-shadow: var(--pgh-shadow-md);
  transform: translateY(-4px);
}

.trust-badge svg,
.feature-item svg,
.trust-badge i,
.feature-item i {
  font-size: 2rem;
  color: var(--pgh-primary);
  margin-bottom: 12px;
}

/* ===========================================
   FOOTER
   =========================================== */

footer,
.footer {
  background: var(--pgh-gradient-dark);
  color: var(--pgh-gray-300);
}

footer a,
.footer a {
  color: var(--pgh-gray-300);
  transition: color var(--pgh-transition);
}

footer a:hover,
.footer a:hover {
  color: var(--pgh-primary-light);
}

.footer-newsletter input {
  border-radius: 8px 0 0 8px;
  border: 2px solid var(--pgh-gray-700);
  background: var(--pgh-gray-900);
  color: var(--pgh-white);
}

.footer-newsletter input:focus {
  border-color: var(--pgh-primary);
  outline: none;
}

.footer-newsletter button {
  border-radius: 0 8px 8px 0;
  background: var(--pgh-primary);
}

/* ===========================================
   CART & CHECKOUT
   =========================================== */

/* Cart drawer */
.offcanvas-cart,
.cart-drawer {
  background: var(--pgh-white);
}

/* Cart item */
.cart-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--pgh-gray-100);
}

/* Quantity buttons */
.quantity-selector button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--pgh-gray-300);
  background: var(--pgh-white);
  transition: all var(--pgh-transition);
}

.quantity-selector button:hover {
  background: var(--pgh-primary);
  border-color: var(--pgh-primary);
  color: var(--pgh-white);
}

/* ===========================================
   SEARCH
   =========================================== */

.search-form input {
  border-radius: 8px;
  border: 2px solid var(--pgh-gray-200);
  padding: 12px 16px;
  transition: all var(--pgh-transition);
}

.search-form input:focus {
  border-color: var(--pgh-primary);
  box-shadow: var(--pgh-shadow-glow);
  outline: none;
}

/* ===========================================
   ANIMATIONS
   =========================================== */

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Pulse animation for notifications */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .product-card:hover {
    transform: none;
  }
  
  .collection-card:hover {
    transform: none;
  }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

/* Tech-themed gradient text */
.text-gradient {
  background: var(--pgh-gradient-tech);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow effect */
.glow {
  box-shadow: var(--pgh-shadow-glow);
}

/* Glass effect */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Dark glass */
.glass-dark {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================================
   HERO MINIMAL SECTION
   =========================================== */

.hero-minimal {
  position: relative;
  min-height: var(--hero-height-mobile, 90vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--pgh-dark);
}

@media (min-width: 768px) {
  .hero-minimal {
    min-height: var(--hero-height-desktop, 95vh);
  }
}

/* Background Layers */
.hero-minimal__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Animated Gradient */
.hero-minimal__gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  animation: gradientShift 15s ease infinite alternate;
}

@keyframes gradientShift {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Grid Pattern Overlay */
.hero-minimal__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

/* Content Container */
.hero-minimal__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Eyebrow Badge */
.hero-minimal__eyebrow {
  margin-bottom: 1.5rem;
}

.hero-minimal__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  color: var(--pgh-primary-light);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-minimal__badge svg {
  width: 16px;
  height: 16px;
}

/* Title */
.hero-minimal__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--pgh-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* Subtitle */
.hero-minimal__subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--pgh-gray-300);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.hero-minimal__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-minimal__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--pgh-transition);
}

.hero-minimal__btn--primary {
  background: var(--pgh-gradient-primary);
  color: var(--pgh-white);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.hero-minimal__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
  color: var(--pgh-white);
}

.hero-minimal__btn--primary svg {
  transition: transform var(--pgh-transition);
}

.hero-minimal__btn--primary:hover svg {
  transform: translateX(4px);
}

.hero-minimal__btn--secondary {
  background: transparent;
  color: var(--pgh-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-minimal__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--pgh-white);
}

/* Trust Badges */
.hero-minimal__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.hero-minimal__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pgh-gray-500);
  font-size: 0.875rem;
}

.hero-minimal__trust-item svg {
  color: var(--pgh-accent);
}

/* Scroll Indicator */
.hero-minimal__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--pgh-gray-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-minimal__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero-minimal__scroll-wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--pgh-primary);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(10px);
  }
}

/* Fade Up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

/* ===========================================
   LIFESTYLE GRID SECTION
   =========================================== */

.lifestyle-grid {
  padding: 5rem 0;
  background: var(--section-bg, var(--pgh-light));
}

/* Section Header */
.lifestyle-grid__header {
  text-align: center;
  margin-bottom: 3rem;
}

.lifestyle-grid__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pgh-primary);
  margin-bottom: 0.5rem;
}

.lifestyle-grid__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--pgh-dark);
  margin: 0;
}

/* Grid Layout */
.lifestyle-grid__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .lifestyle-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lifestyle-grid__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card */
.lifestyle-grid__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: var(--pgh-secondary);
  transition: transform var(--pgh-transition), box-shadow var(--pgh-transition);
}

.lifestyle-grid__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pgh-shadow-lg);
}

/* Card Background */
.lifestyle-grid__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lifestyle-grid__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lifestyle-grid__card:hover .lifestyle-grid__card-bg img {
  transform: scale(1.1);
}

/* Placeholder with Icon */
.lifestyle-grid__card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pgh-secondary) 0%, var(--pgh-dark) 100%);
  color: rgba(255, 255, 255, 0.15);
}

.lifestyle-grid__card:hover .lifestyle-grid__card-placeholder {
  color: rgba(59, 130, 246, 0.3);
}

.lifestyle-grid__card-placeholder svg {
  transition: all 0.4s ease;
}

.lifestyle-grid__card:hover .lifestyle-grid__card-placeholder svg {
  transform: scale(1.2);
}

/* Card Overlay */
.lifestyle-grid__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.6) 40%,
    rgba(15, 23, 42, 0.2) 100%
  );
  z-index: 1;
  transition: background var(--pgh-transition);
}

.lifestyle-grid__card:hover .lifestyle-grid__card-overlay {
  background: linear-gradient(
    to top,
    rgba(59, 130, 246, 0.9) 0%,
    rgba(59, 130, 246, 0.4) 40%,
    rgba(59, 130, 246, 0.1) 100%
  );
}

/* Card Content */
.lifestyle-grid__card-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1.5rem;
  color: var(--pgh-white);
}

.lifestyle-grid__card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pgh-primary-light);
  margin-bottom: 0.25rem;
}

.lifestyle-grid__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--pgh-white);
}

.lifestyle-grid__card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.lifestyle-grid__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pgh-white);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--pgh-transition);
}

.lifestyle-grid__card:hover .lifestyle-grid__card-cta {
  opacity: 1;
  transform: translateY(0);
}

.lifestyle-grid__card-cta svg {
  transition: transform var(--pgh-transition);
}

.lifestyle-grid__card:hover .lifestyle-grid__card-cta svg {
  transform: translateX(4px);
}

/* ===========================================
   COLLECTION CARD ENHANCEMENTS
   =========================================== */

/* Better collection cards from the theme */
.featured-collections .collection-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--pgh-transition);
}

.featured-collections .collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pgh-shadow-lg);
}

.featured-collections .collection-card img {
  transition: transform 0.5s ease;
}

.featured-collections .collection-card:hover img {
  transform: scale(1.08);
}

/* ===========================================
   PRODUCT CARD ENHANCEMENTS
   =========================================== */

/* Product Card Container */
.product-card {
  position: relative;
  background: var(--pgh-white);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--pgh-transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pgh-shadow-lg);
}

/* Product Card Link */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image Wrapper */
.product-card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pgh-gray-100);
}

.product-card-img-wrapper img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img-wrapper img {
  transform: scale(1.08);
}

/* Quick View Overlay */
.product-card-img-wrapper::after {
  content: 'Quick View';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  color: var(--pgh-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all var(--pgh-transition);
}

.product-card:hover .product-card-img-wrapper::after {
  opacity: 1;
  transform: translateY(0);
}

/* Product Badges - Base */
.product-card .badge {
  position: absolute;
  top: 0.75rem;
  z-index: 2;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

/* Sale Badge */
.product-sale-badge {
  left: 0.75rem;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Sold Out Badge */
.product-sold-out-badge {
  left: 0.75rem;
  background: var(--pgh-gray-700);
  color: white;
}

/* New Badge (custom) */
.product-new-badge {
  right: 0.75rem;
  background: linear-gradient(135deg, var(--pgh-primary) 0%, var(--pgh-primary-dark) 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Bestseller Badge (custom) */
.product-bestseller-badge {
  right: 0.75rem;
  background: linear-gradient(135deg, var(--pgh-accent) 0%, #059669 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Product Title */
.product-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pgh-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color var(--pgh-transition);
}

.product-card:hover .product-card-title {
  color: var(--pgh-primary);
}

/* Product Price */
.product-card-price {
  font-weight: 600;
  color: var(--pgh-dark);
}

.product-card-price .price-item--regular {
  font-size: 1.125rem;
}

.product-card-price .price-item--sale {
  font-size: 1.125rem;
  color: #DC2626;
}

.product-card-price .price-item--compare {
  font-size: 0.875rem;
  color: var(--pgh-gray-500);
  text-decoration: line-through;
}

/* Add to Cart Button on Card */
.product-card-atc-form .btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  background: var(--pgh-dark);
  color: var(--pgh-white);
  border: none;
  transition: all var(--pgh-transition);
}

.product-card-atc-form .btn:hover {
  background: var(--pgh-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Rating Badge */
.product-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  color: #F59E0B;
  font-size: 0.875rem;
}

/* Featured Products Section Enhancement */
.featured-products .product-card {
  background: transparent;
}

.featured-products .swiper-slide {
  height: auto;
}

/* Product Grid Enhancement */
.collection-products .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.collection-products .product-card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Skeleton Loading Animation */
@keyframes productCardSkeleton {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.product-card-img-wrapper.loading {
  background: linear-gradient(
    90deg,
    var(--pgh-gray-100) 0%,
    var(--pgh-gray-300) 50%,
    var(--pgh-gray-100) 100%
  );
  background-size: 200% 100%;
  animation: productCardSkeleton 1.5s infinite;
}

/* ===========================================
   TRUST BADGES SECTION
   =========================================== */

.trust-badges-section {
  padding: 5rem 0;
  background: var(--section-bg, var(--pgh-dark));
  color: var(--text-color, var(--pgh-white));
}

/* Section Header */
.trust-badges__header {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-badges__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

.trust-badges__subtitle {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Trust Badges Grid */
.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-badges__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Individual Badge */
.trust-badge {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--pgh-transition);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
}

/* Badge Icon */
.trust-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
  color: var(--pgh-primary-light);
  transition: all var(--pgh-transition);
}

.trust-badge:hover .trust-badge__icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0.15) 100%);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  transform: scale(1.1);
}

.trust-badge__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

/* Badge Content */
.trust-badge__heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.trust-badge__text {
  font-size: 0.875rem;
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}

/* Payment Icons */
.trust-badges__payments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.trust-badges__payments-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.trust-badges__payments-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badges__payments-icons svg {
  width: 50px;
  height: 32px;
  opacity: 0.85;
  transition: all var(--pgh-transition);
}

.trust-badges__payments-icons svg:hover {
  opacity: 1;
  transform: scale(1.1);
}

.trust-badges__payments-icons svg:hover {
  opacity: 1;
}

/* Icon Pulse Animation */
@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(59, 130, 246, 0);
  }
}

.trust-badge:hover .trust-badge__icon {
  animation: iconPulse 2s ease infinite;
}

/* ===========================================
   FOOTER ENHANCEMENTS
   =========================================== */

#footer {
  background: var(--pgh-dark) !important;
  color: var(--pgh-gray-300) !important;
}

#footer .title,
#footer .heading {
  color: var(--pgh-white) !important;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

#footer a {
  color: var(--pgh-gray-400);
  transition: color var(--pgh-transition);
}

#footer a:hover {
  color: var(--pgh-primary-light);
}

#footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Footer Links */
#footer .footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-block li {
  margin-bottom: 0.5rem;
}

#footer .footer-block a {
  position: relative;
  padding-left: 0;
  transition: all var(--pgh-transition);
}

#footer .footer-block a:hover {
  padding-left: 8px;
}

#footer .footer-block a::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--pgh-primary);
  transition: width var(--pgh-transition);
}

#footer .footer-block a:hover::before {
  width: 8px;
}

/* Social Icons */
.social-icons-wrapper a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.25rem;
  transition: all var(--pgh-transition);
}

.social-icons-wrapper a:hover {
  background: var(--pgh-primary);
  transform: translateY(-3px);
}

.social-icons-wrapper a svg {
  width: 18px;
  height: 18px;
}

/* Payment Icons in Footer */
.payment-icons-wrapper svg,
.payment-icons-wrapper img {
  height: 28px;
  opacity: 0.7;
  transition: opacity var(--pgh-transition);
}

.payment-icons-wrapper svg:hover,
.payment-icons-wrapper img:hover {
  opacity: 1;
}

/* Copyright */
#footer-copyright {
  font-size: 0.875rem;
  color: var(--pgh-gray-500);
}

#footer-copyright a {
  color: var(--pgh-gray-400);
}

#footer-copyright a:hover {
  color: var(--pgh-primary-light);
}

/* ===========================================
   NEWSLETTER SECTION ENHANCEMENTS
   =========================================== */

.newsletter-section,
section[class*="newsletter"] {
  background: linear-gradient(135deg, var(--pgh-primary-dark) 0%, var(--pgh-dark) 100%);
  color: var(--pgh-white);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.05'%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Newsletter Form */
.newsletter-form,
form[action*="subscribe"] {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input[type="email"],
form[action*="subscribe"] input[type="email"] {
  width: 100%;
  padding: 1rem 1.5rem;
  padding-right: 140px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--pgh-white);
  font-size: 1rem;
  transition: all var(--pgh-transition);
}

.newsletter-form input[type="email"]:focus,
form[action*="subscribe"] input[type="email"]:focus {
  outline: none;
  border-color: var(--pgh-primary-light);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.newsletter-form input[type="email"]::placeholder,
form[action*="subscribe"] input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button[type="submit"],
form[action*="subscribe"] button[type="submit"] {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.75rem 1.5rem;
  background: var(--pgh-white);
  color: var(--pgh-dark);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--pgh-transition);
}

.newsletter-form button[type="submit"]:hover,
form[action*="subscribe"] button[type="submit"]:hover {
  background: var(--pgh-primary-light);
  color: var(--pgh-white);
  transform: translateY(-50%) scale(1.05);
}

/* Newsletter Title */
.newsletter-section h2,
section[class*="newsletter"] h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.newsletter-section p,
section[class*="newsletter"] p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* ===========================================
   PHASE 6: FINAL POLISH & MICRO-INTERACTIONS
   =========================================== */

/* Smooth Page Load */
html {
  scroll-behavior: smooth;
}

body {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Button Ripple Effect */
.btn,
button {
  position: relative;
  overflow: hidden;
}

.btn::after,
.hero-minimal__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after,
.hero-minimal__btn:active::after {
  width: 300px;
  height: 300px;
}

/* Enhanced Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--pgh-primary);
  outline-offset: 2px;
}

/* Image Lazy Load Transition */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img.lazyloaded {
  opacity: 1;
}

/* Cursor Interactivity */
a, button, [role="button"] {
  cursor: pointer;
}

/* Link Underline Animation */
.animated-link {
  position: relative;
  text-decoration: none;
}

.animated-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pgh-primary);
  transition: width var(--pgh-transition);
}

.animated-link:hover::after {
  width: 100%;
}

/* Card Hover Glow */
.card-glow:hover {
  box-shadow: 
    0 10px 40px rgba(59, 130, 246, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

/* Pulse Animation for CTAs */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
  }
}

.cta-pulse {
  animation: ctaPulse 2s ease infinite;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Text Gradient Animation */
.gradient-text {
  background: linear-gradient(135deg, var(--pgh-primary) 0%, var(--pgh-accent) 50%, var(--pgh-primary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print Styles */
@media print {
  .hero-minimal,
  .trust-badges-section,
  .lifestyle-grid,
  #footer {
    background: white !important;
    color: black !important;
  }
}

/* ===========================================
   ANNOUNCEMENT MARQUEE
   =========================================== */

.announcement-marquee {
  background: linear-gradient(90deg, var(--pgh-primary) 0%, var(--pgh-primary-dark) 100%);
  color: var(--pgh-white);
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
}

.announcement-marquee__track {
  display: flex;
  animation: marquee var(--marquee-speed, 30s) linear infinite;
}

.announcement-marquee:hover .announcement-marquee__track {
  animation-play-state: paused;
}

.announcement-marquee__content {
  display: flex;
  flex-shrink: 0;
}

.announcement-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.announcement-marquee__icon {
  display: inline-flex;
  align-items: center;
}

.announcement-marquee__divider {
  margin: 0 1.5rem;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ===========================================
   STATS COUNTER
   =========================================== */

.stats-counter {
  padding: 5rem 0;
  background: var(--section-bg, var(--pgh-white));
  color: var(--text-color, var(--pgh-dark));
}

.stats-counter__header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-counter__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0;
}

.stats-counter__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-counter__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-counter__item {
  padding: 1.5rem;
}

.stats-counter__number {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--pgh-primary) 0%, var(--pgh-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-counter__suffix {
  font-size: 0.6em;
}

.stats-counter__label {
  font-size: 1rem;
  opacity: 0.7;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===========================================
   PREMIUM TYPOGRAPHY (Google Fonts: Inter)
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}