/* ===== GXW SITE-WIDE DESIGN FIXES ===== */

/* 1. Fix logo size - reduce from oversized to proper size */
.header-logo img,
.site-logo img,
img[style*="height: 123px"],
img[style*="height:123px"],
.gxw-header img,
header img,
.zp-header img,
.zp-header-logo img {
  height: 52px !important;
  width: auto !important;
  max-height: 52px !important;
  image-rendering: -webkit-optimize-contrast !important;
  object-fit: contain !important;
}

/* 2. Hide Snapchat social link */
a[href*="snapchat.com"],
a[href*="snap.com"],
.social-link-snapchat {
  display: none !important;
}

/* 3. Better typography with Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 4. Product card improvements */
.zp-pdp-img-container img,
.zp-product-card img,
.product-image img,
.item-image img {
  object-fit: contain !important;
  background: #f8f9fa;
}

/* 5. Better card hover effects */
.zp-product-card,
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.zp-product-card:hover,
.product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
}

/* 6. Better button styling */
.zp-btn-primary,
.btn-primary,
a.gxw-btn {
  border-radius: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.zp-btn-primary:hover,
.btn-primary:hover,
a.gxw-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15) !important;
}

/* 7. Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* 8. Better category cards */
.category-card,
.zp-category-card {
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.category-card:hover,
.zp-category-card:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

/* 9. Product listing grid improvements */
.zp-product-list,
.product-grid {
  gap: 20px !important;
}

/* 10. Better search bar */
.zp-search-input,
#search-with-suggestion {
  border-radius: 8px !important;
  border: 1px solid #e0e0e0 !important;
  padding: 8px 16px !important;
  transition: border-color 0.2s ease !important;
}

.zp-search-input:focus,
#search-with-suggestion:focus {
  border-color: #c8a415 !important;
  box-shadow: 0 0 0 3px rgba(200, 164, 21, 0.1) !important;
}