/* Avoli Russia Custom Styles & Enhancements */

:root {
  --avoli-black: #111111;
  --avoli-white: #ffffff;
  --avoli-purple: #c4b4f0;
  --avoli-purple-dark: #6342a6;
  --avoli-blue: #1959c9;
  --avoli-pink: #f26691;
  --avoli-teal: #2db3a6;
  --avoli-gray-light: #f7f7f8;
  --avoli-gray-border: #e2e4e8;
  --avoli-gray-text: #666666;
  --shopozz-orange: #ff6000;
  --shopozz-blue: #1c52a3;
  --shopozz-green: #27ae60;
  --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--avoli-black);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Announcement Bar */
.announcement-bar {
  background: #000000;
  color: #ffffff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 100;
}
.announcement-bar a {
  color: #ffcc00;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 600;
}
.announcement-bar a:hover {
  color: #ffffff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--avoli-gray-border);
  z-index: 90;
}
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-logo-img {
  height: 38px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav-item {
  position: relative;
}
.header-nav-link {
  text-decoration: none;
  color: var(--avoli-black);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav-link:hover, .header-nav-link.active {
  color: var(--avoli-blue);
}
.nav-badge {
  background: var(--shopozz-orange);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--avoli-gray-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  min-width: 240px;
  display: none;
  z-index: 100;
}
.header-nav-item:hover .dropdown-menu {
  display: block;
}
.dropdown-item {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--avoli-black);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover {
  background: var(--avoli-gray-light);
  color: var(--avoli-blue);
}
.dropdown-item span {
  display: block;
  font-size: 11px;
  color: var(--avoli-gray-text);
  margin-top: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-search-btn, .header-shopozz-badge {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--avoli-black);
  transition: color 0.2s;
  text-decoration: none;
}
.header-shopozz-btn {
  background: #000;
  color: #fff;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s;
}
.header-shopozz-btn:hover {
  background: var(--shopozz-orange);
  transform: translateY(-1px);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
}

/* Made For Volleyball Bar */
.color-bar-strip {
  background-color: var(--avoli-purple);
  padding: 12px 16px;
  text-align: center;
}
.color-bar-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* Hero Section */
.hero-banner {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
  opacity: 0.65;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 60px 24px;
  color: #ffffff;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  background: var(--avoli-pink);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px 0;
  max-width: 700px;
  letter-spacing: -0.5px;
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 28px 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-primary {
  background: #ffffff;
  color: #000000;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ffffff;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: #ffffff;
}
.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ffffff;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
}
.btn-shopozz {
  background: var(--shopozz-orange);
  color: #ffffff;
  border: 2px solid var(--shopozz-orange);
}
.btn-shopozz:hover {
  background: #e05500;
  border-color: #e05500;
  color: #ffffff;
}

/* Delivery Info Bar */
.delivery-usp-bar {
  background: #fbfbfd;
  border-bottom: 1px solid var(--avoli-gray-border);
  padding: 18px 0;
}
.delivery-usp-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.usp-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.usp-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  color: var(--avoli-black);
}
.usp-desc {
  font-size: 12px;
  color: var(--avoli-gray-text);
  margin: 2px 0 0 0;
}

/* Category Grid on Homepage */
.section-padding {
  padding: 60px 0;
}
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--avoli-gray-text);
  margin: 6px 0 0 0;
}
.section-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--avoli-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-link:hover {
  text-decoration: underline;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--avoli-gray-light);
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.category-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  z-index: 1;
}
.category-card:hover img {
  transform: scale(1.05);
}
.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.category-card-content {
  position: relative;
  z-index: 3;
}
.category-card-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px 0;
}
.category-card-badge {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* Product Card Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--avoli-gray-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}
.product-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f8f9fa;
  overflow: hidden;
  display: block;
}
.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-image {
  transform: scale(1.04);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}
.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--avoli-gray-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px 0;
  color: var(--avoli-black);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
}
.product-card-title:hover {
  color: var(--avoli-blue);
}
.product-card-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.price-usd {
  font-size: 18px;
  font-weight: 800;
  color: var(--avoli-black);
}
.price-rub {
  font-size: 13px;
  font-weight: 600;
  color: var(--avoli-gray-text);
}
.product-card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
  max-height: 28px;
  overflow: hidden;
}
.size-chip-mini {
  background: var(--avoli-gray-light);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  color: #444;
}
.product-card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.btn-card-buy {
  background: var(--shopozz-orange);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-card-buy:hover {
  background: #e05500;
}
.btn-card-details {
  background: var(--avoli-gray-light);
  color: var(--avoli-black);
  border: 1px solid var(--avoli-gray-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.btn-card-details:hover {
  background: #e2e4e8;
}

/* Tech Highlights Section */
.tech-section {
  background: #0d0d0d;
  color: #ffffff;
  padding: 80px 0;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.tech-card {
  background: #181818;
  border: 1px solid #282828;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.tech-card:hover {
  transform: translateY(-4px);
  border-color: #444;
}
.tech-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--avoli-purple);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.tech-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px 0;
}
.tech-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #a0a0a0;
  margin: 0;
}

/* Shopozz Feature Banner */
.shopozz-banner {
  background: linear-gradient(135deg, #1c52a3 0%, #0d2852 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}
.shopozz-banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.shopozz-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--shopozz-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.shopozz-banner-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.shopozz-banner-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px 0;
}
.shopozz-steps-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 24px;
}
.mini-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.mini-step-num {
  background: var(--shopozz-orange);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.mini-step-text {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}
.mini-step-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

/* Catalog Filter Layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 36px 0 60px 0;
}
.filter-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
  background: #ffffff;
  border: 1px solid var(--avoli-gray-border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--avoli-gray-border);
}
.filter-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-reset {
  background: none;
  border: none;
  color: var(--avoli-blue);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.filter-group {
  margin-bottom: 22px;
}
.filter-group-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
  color: var(--avoli-black);
}
.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filter-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  user-select: none;
}
.filter-item input[type="checkbox"], .filter-item input[type="radio"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: var(--avoli-black);
}
.filter-sizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.size-filter-btn {
  background: var(--avoli-gray-light);
  border: 1px solid var(--avoli-gray-border);
  border-radius: 4px;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}
.size-filter-btn:hover {
  border-color: #000;
}
.size-filter-btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
}
.catalog-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.catalog-count {
  font-size: 14px;
  color: var(--avoli-gray-text);
  margin: 0;
}
.catalog-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-input-catalog {
  padding: 8px 14px;
  border: 1px solid var(--avoli-gray-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  width: 220px;
}
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--avoli-gray-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}

/* Product Detail Page */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  padding: 40px 0 80px 0;
}
.product-gallery {
  position: sticky;
  top: 90px;
  height: fit-content;
}
.main-image-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: #f8f9fa;
  border-radius: var(--radius-md);
  border: 1px solid var(--avoli-gray-border);
  overflow: hidden;
  margin-bottom: 16px;
}
.main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbs-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.thumb-item {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #f8f9fa;
}
.thumb-item.active {
  border-color: #000000;
}
.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-panel {
  display: flex;
  flex-direction: column;
}
.product-brand-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--avoli-gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.product-main-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px 0;
}
.product-price-box {
  background: #f8f9fa;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-price-usd {
  font-size: 28px;
  font-weight: 800;
  color: #000;
}
.detail-price-rub {
  font-size: 15px;
  font-weight: 600;
  color: var(--avoli-gray-text);
}
.rate-hint {
  font-size: 11px;
  color: #888;
  display: block;
  margin-top: 2px;
}

.picker-section {
  margin-bottom: 24px;
}
.picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.picker-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.size-guide-link {
  font-size: 12px;
  color: var(--avoli-blue);
  text-decoration: underline;
  cursor: pointer;
}
.sizes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-chip {
  padding: 8px 16px;
  border: 1px solid var(--avoli-gray-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.size-chip:hover {
  border-color: #000;
}
.size-chip.selected {
  background: #000;
  color: #fff;
  border-color: #000;
}

.colors-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-chip {
  padding: 8px 16px;
  border: 1px solid var(--avoli-gray-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.color-chip.selected {
  background: var(--avoli-black);
  color: #fff;
  border-color: var(--avoli-black);
}

/* Product Action Box */
.product-order-box {
  background: #fff9f5;
  border: 2px solid #ffd8c2;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
}
.order-box-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #9c3300;
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-box-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 16px 0;
}
.btn-buy-shopozz-large {
  width: 100%;
  background: var(--shopozz-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(255, 96, 0, 0.35);
}
.btn-buy-shopozz-large:hover {
  background: #e05500;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 96, 0, 0.45);
}

/* Tabs & Accordion */
.product-tabs {
  border-top: 1px solid var(--avoli-gray-border);
  padding-top: 24px;
}
.tab-content-text {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
.tab-content-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 16px 0 8px 0;
}
.tab-content-text ul {
  padding-left: 20px;
  margin: 0 0 16px 0;
}
.tab-content-text li {
  margin-bottom: 6px;
}

/* Shopozz Modal (Requirement #3) */
.shopozz-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.shopozz-modal-backdrop.open {
  display: flex;
  opacity: 1;
}
.shopozz-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.shopozz-modal-backdrop.open .shopozz-modal-card {
  transform: translateY(0);
}
.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--avoli-gray-light);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.15s;
  z-index: 10;
}
.modal-close-btn:hover {
  background: #e2e4e8;
  color: #000;
}
.modal-header {
  padding: 28px 28px 16px 28px;
  border-bottom: 1px solid var(--avoli-gray-border);
}
.modal-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff4eb;
  color: var(--shopozz-orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}
.modal-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--avoli-black);
}
.modal-subtitle {
  font-size: 13px;
  line-height: 1.5;
  color: var(--avoli-gray-text);
  margin: 0;
}
.modal-body {
  padding: 24px 28px;
}
.modal-product-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8f9fa;
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 20px;
}
.modal-prod-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--avoli-gray-border);
}
.modal-prod-info {
  flex: 1;
}
.modal-prod-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.modal-prod-meta {
  font-size: 12px;
  color: var(--avoli-gray-text);
  margin: 0;
}

/* Copy Inputs Fields */
.copy-field-group {
  margin-bottom: 14px;
}
.copy-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #444;
  margin-bottom: 6px;
}
.copy-field-input-wrap {
  display: flex;
  gap: 8px;
}
.copy-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--avoli-gray-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-size: 13px;
  font-family: inherit;
  color: #111;
  outline: none;
}
.copy-input:focus {
  border-color: var(--avoli-blue);
}
.btn-copy-item {
  background: var(--avoli-black);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.15s;
}
.btn-copy-item:hover {
  background: var(--avoli-blue);
}
.btn-copy-item.copied {
  background: var(--shopozz-green);
}

.copy-all-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
  padding: 12px 16px;
  background: #f1f5f9;
  border-radius: var(--radius-md);
}
.copy-all-text {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin: 0;
}
.btn-copy-all {
  background: #334155;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-copy-all:hover {
  background: #0f172a;
}
.btn-copy-all.copied {
  background: var(--shopozz-green);
}

/* Modal Steps & Footer CTA */
.modal-steps-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.modal-steps-title {
  font-size: 13px;
  font-weight: 800;
  color: #9a3412;
  margin: 0 0 6px 0;
  text-transform: uppercase;
}
.modal-steps-list {
  padding-left: 18px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #7c2d12;
}

.modal-footer {
  padding: 0 28px 28px 28px;
}
.btn-open-shopozz {
  width: 100%;
  background: var(--shopozz-orange);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(255, 96, 0, 0.35);
  transition: all 0.2s;
}
.btn-open-shopozz:hover {
  background: #e05500;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 96, 0, 0.45);
}

/* Toast Message */
.toast-notice {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer */
.site-footer {
  background: #0d0d0d;
  color: #ffffff;
  padding: 60px 0 30px 0;
  border-top: 1px solid #222;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #888;
  margin: 14px 0 20px 0;
  max-width: 320px;
}
.footer-shopozz-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  color: #ff9966;
  text-decoration: none;
}
.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 18px 0;
  color: #ffffff;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 14px;
  color: #999;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover {
  color: #ffffff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #222;
  font-size: 13px;
  color: #666;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: #666;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: #aaa;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .delivery-usp-inner { grid-template-columns: repeat(2, 1fr); }
  .category-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: 1fr; }
  .shopozz-banner-inner { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 32px; }
  .delivery-usp-inner { grid-template-columns: 1fr; }
  .category-cards-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card-body { padding: 12px; }
  .product-card-title { font-size: 13px; height: 34px; }
  .price-usd { font-size: 15px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
