@charset "UTF-8";
:root {
  --primary-color: #000000;
  --primary-rgb: 0, 0, 0;
  --secondary-color: #f1f5f9;
  --accent-color: #3b82f6;
  --bg-color: #FAFAFA;
  --text-color: #1f2937;
  --border-color: #e2e8f0;
  --sidebar-width: 250px;
  --header-height: 70px;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  /* Prevents overflow from off-screen absolutely positioned elements */
}

body {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.layout {
  display: grid !important;
  grid-template-areas: "header header" "breadcrumbs breadcrumbs" "context sidebar" "main sidebar" "footer footer";
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
}

.categories-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.categories-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8));
  pointer-events: none;
  z-index: 1;
}
.categories-wrapper .categories-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.categories-wrapper .categories-scroll::-webkit-scrollbar {
  display: none;
}

.context-wrapper {
  grid-area: context;
  padding: 1rem 1.5rem;
  background-color: transparent;
}
.context-wrapper .context-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.context-wrapper .context-inner .page-title {
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: #111827;
  margin: 0;
  letter-spacing: 1px;
}

h2 {
  display: inline-block;
  background: linear-gradient(to right, var(--color-violet), var(--color-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
}

/* Global Search Results - Top Level for Robustness */
.search-results {
  position: absolute !important;
  top: calc(100% + 5px) !important;
  /* Center and stretch full width of viewport */
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  max-width: 100vw !important;
  /* Stretch down to the bottom of the viewport minus header space */
  height: calc(100dvh - 125px) !important;
  max-height: calc(100dvh - 125px) !important;
  background: #ffffff !important;
  border-top: 1px solid #E5E7EB;
  border-radius: 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 9999 !important;
  overflow-y: auto;
  display: none;
}
.search-results.active {
  display: block !important;
}
.search-results .search-section {
  padding: 0.5rem 0;
}
.search-results .search-section:not(:last-child) {
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}
.search-results .search-section .section-header {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #9CA3AF;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-results .search-result-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #1F2937;
  transition: background 0.2s;
}
.search-results .search-result-item:hover {
  background: #F9FAFB;
}
.search-results .search-result-item .result-icon-wrapper {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #F3F4F6;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.search-results .search-result-item .result-icon-wrapper img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
}
.search-results .search-result-item .result-icon-wrapper img.brand-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.search-results .search-result-item .result-icon-wrapper svg {
  color: #9CA3AF;
}
.search-results .search-result-item .result-info {
  flex: 1;
  min-width: 0;
}
.search-results .search-result-item .result-info .result-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-results .search-result-item .result-info .result-meta {
  display: block;
  font-size: 0.8rem;
  color: #6B7280;
}
.search-results .search-result-item .result-price {
  text-align: right;
  margin-left: 12px;
}
.search-results .search-result-item .result-price .current-price {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}
.search-results .search-result-item .result-price .original-price {
  display: block;
  font-size: 0.75rem;
  color: #9CA3AF;
  text-decoration: line-through;
}
.search-results .no-results {
  padding: 2rem 1rem;
  text-align: center;
  color: #6B7280;
  font-size: 0.9rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  background: color-mix(in srgb, var(--color-blue), transparent 90%);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-blue);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.category-pill:hover {
  color: var(--color-blue);
  border-color: rgba(var(--primary-color), 0.3);
  background: color-mix(in srgb, var(--color-blue), transparent 85%);
  transform: translateY(-1px);
}
.category-pill:active {
  transform: scale(0.96);
}
.category-pill.active {
  background: var(--color-blue);
  color: white;
  border-color: var(--color-blue);
}

.context-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.3rem 0.85rem;
  background: color-mix(in srgb, var(--color-green, #22c55e), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--color-green, #22c55e), transparent 60%);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-green, #22c55e);
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
}
.context-link-cta:hover {
  background: color-mix(in srgb, var(--color-green, #22c55e), transparent 78%);
  transform: translateY(-1px);
}

.breadcrumbs-wrapper {
  grid-area: breadcrumbs;
  background-color: transparent;
  padding: 1.5rem 1.5rem 0 1.5rem;
}
.breadcrumbs-wrapper .breadcrumbs-inner {
  max-width: 1200px;
}
.breadcrumbs-wrapper .breadcrumbs-inner .breadcrumbs {
  margin-bottom: 0.5rem;
}
.breadcrumbs-wrapper .breadcrumbs-inner .breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6B7280;
}
.breadcrumbs-wrapper .breadcrumbs-inner .breadcrumbs ol a {
  color: #6B7280;
  text-decoration: none;
}
.breadcrumbs-wrapper .breadcrumbs-inner .breadcrumbs ol a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.breadcrumbs-wrapper .breadcrumbs-inner .breadcrumbs ol a.home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.breadcrumbs-wrapper .breadcrumbs-inner .breadcrumbs ol a.home-link .breadcrumb-logo {
  height: 1.2em;
  width: auto;
  display: block;
  border-radius: 2px;
}
.breadcrumbs-wrapper .breadcrumbs-inner .breadcrumbs ol .separator {
  color: #9CA3AF;
}
.breadcrumbs-wrapper .breadcrumbs-inner .breadcrumbs ol [aria-current=page] {
  color: #111827;
  font-weight: 500;
}

.bg-fixed-layer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .layout {
    display: flex !important;
    flex-direction: column;
  }
  .layout .header {
    order: 1;
  }
  .layout .breadcrumbs-wrapper {
    order: 2;
  }
  .layout .context-wrapper {
    order: 3;
  }
  .layout .content {
    order: 4;
  }
  .layout .sidebar {
    order: 5;
    display: flex;
    padding: 1rem;
  }
  .layout .footer {
    order: 6;
  }
  .bg-fixed-layer {
    /* Remove background-attachment: scroll since we use a fixed positioning approach */
    background-attachment: scroll;
  }
}
.header {
  grid-area: header;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1000;
  flex-shrink: 0;
}
.header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
}
.header .header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  z-index: 1001;
}
.header .header-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.header .header-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  display: block;
}
.header .header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}
.header .header-nav .nav-link {
  text-decoration: none;
  color: var(--nav-link-color, #111827);
  font-weight: 500;
  font-size: 1.25rem;
  transition: color 0.2s ease;
  font-style: italic;
}
.header .header-nav .nav-link:hover {
  color: var(--primary-color);
}
.header .category-pill {
  background: color-mix(in srgb, var(--primary-color), transparent 90%);
  color: var(--primary-color);
}
.header .category-pill:hover {
  border-color: rgba(var(--primary-color), 0.3);
  background: color-mix(in srgb, var(--primary-color), transparent 85%);
  transform: translateY(-1px);
}
.header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--nav-link-color, #111827);
  z-index: 1001;
}
.header .mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}
.header .mobile-menu-toggle .icon-close {
  display: none;
}
.header .header-search-container {
  padding: 0 1rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
}
.header .header-search-container .global-search {
  width: 100%;
  position: relative;
}
.header .header-search-container .global-search .search-input {
  box-sizing: border-box;
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.75rem;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, var(--primary-color), var(--color-red)) border-box;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  background-color: #fff;
  color: #111827;
  transition: box-shadow 0.2s ease;
  box-shadow: inset 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.header .header-search-container .global-search .search-input:focus {
  outline: none;
  box-shadow: inset 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 0 0 2px rgba(var(--primary-color), 0.2);
}
.header .header-search-container .global-search .search-input::placeholder {
  color: #9CA3AF;
  font-style: italic;
}
.header .header-search-container .global-search .search-btn {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .header .header-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
  }
  .header .header-nav .nav-link {
    width: 100%;
    padding: 1.25rem;
    padding-left: 1rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    font-style: italic;
  }
  .header .header-nav .nav-link:last-child {
    border-bottom: none;
  }
  .header .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header.mobile-nav-open .mobile-menu-toggle .icon-hamburger {
    display: none;
  }
  .header.mobile-nav-open .mobile-menu-toggle .icon-close {
    display: block;
  }
  .header.mobile-nav-open .header-nav {
    transform: translateX(0);
    visibility: visible;
  }
}

.sidebar {
  grid-area: sidebar;
  padding: 1.5rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar .widget {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.sidebar .widget h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #111827;
  border-bottom: 2px solid var(--bg-color);
  padding-bottom: 0.5rem;
}

.product-card-wrapper {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  width: 100%;
  height: 100%;
}
.product-card-wrapper:hover, .product-card-wrapper:focus, .product-card-wrapper:active {
  text-decoration: none !important;
}
.product-card-wrapper * {
  text-decoration: none !important;
}

.product-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  width: 100%;
  min-width: 0;
  flex: 1;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
}
.product-card .product-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: darkslategray;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 6px 0 6px 0;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.product-card .product-image-container {
  width: 100%;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.product-card .product-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card .product-image-container .image-placeholder {
  width: 100%;
  height: 100%;
  background: #f3f4f6;
}
.product-card:hover .product-image-container img {
  transform: scale(1.05);
}
.product-card .product-info {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.product-card .product-info .product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card .product-info .product-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  height: 2.8em;
}
.product-card .product-info .product-pricing {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
.product-card .product-info .product-pricing .sale-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-red, #ef4444);
}
.product-card .product-info .product-pricing .original-price {
  font-size: 0.85rem;
  color: #9CA3AF;
  text-decoration: line-through !important;
}
.product-card .product-info .product-pricing .regular-price {
  font-weight: bold;
}
.product-card .product-info .product-savings {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-green, #10b981);
  margin-top: 2px;
}

.offer-card-wrapper {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
}
.offer-card-wrapper:hover, .offer-card-wrapper:focus, .offer-card-wrapper:active {
  text-decoration: none !important;
}
.offer-card-wrapper * {
  text-decoration: none !important;
}

.offer-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0.75rem 1.25rem 1.25rem 0.75rem;
  gap: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  width: 100%;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .offer-card {
    padding: 1rem;
    gap: 1rem;
  }
}
@media (max-width: 380px) {
  .offer-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.offer-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--primary-color);
}
.is-compact .offer-card {
  padding: 0.75rem 0;
  gap: 1rem;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.is-compact .offer-card:hover {
  transform: none;
  background: rgba(0, 0, 0, 0.02);
}
.is-compact .offer-card .offer-icon-wrapper .offer-brand-logo,
.is-compact .offer-card .offer-icon-wrapper .offer-icon {
  width: 32px;
  height: 32px;
  border-radius: 0 0.5rem;
  border: none;
}
.is-compact .offer-card .offer-content {
  margin-top: 0;
}
.is-compact .offer-card .offer-content .offer-title {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.is-compact .offer-card .offer-content .offer-brand {
  font-size: 0.65rem;
}
.is-compact .offer-card .offer-content .offer-promo-display {
  margin-top: 0.5rem;
}
.is-compact .offer-card .offer-content .offer-promo-display .promo-code-box,
.is-compact .offer-card .offer-content .offer-promo-display .promo-redeem-btn {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}
.is-compact .offer-card .offer-content .offer-promo-display .promo-copy-hint {
  display: none;
}
.is-compact .offer-card:last-child {
  border-bottom: none;
}
.offer-card .offer-icon-wrapper {
  flex-shrink: 0;
}
.offer-card .offer-icon-wrapper .offer-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 0 0.5rem;
  overflow: hidden;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card .offer-icon-wrapper .offer-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.offer-card .offer-icon-wrapper .offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 0 0.5rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card .offer-icon-wrapper .offer-icon.is-code {
  background: rgba(var(--primary-color), 0.1);
  color: var(--primary-color);
}
.offer-card .offer-icon-wrapper .offer-icon.is-deal {
  background: color-mix(in srgb, var(--color-green), transparent 90%);
  color: var(--color-green, #16a34a);
}
.offer-card .offer-content {
  flex-grow: 1;
  min-width: 0;
  margin-top: 0.5rem;
}
.offer-card .offer-content .offer-brand {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.offer-card .offer-content .offer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.35rem 0;
  line-height: 1.3;
  word-break: break-word;
}
.offer-card .offer-content .offer-meta {
  font-size: 0.75rem;
  color: #9CA3AF;
  font-weight: 500;
}
.offer-card .offer-content .offer-promo-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  background: transparent;
  padding: 0;
}
.offer-card .offer-content .offer-promo-display .promo-code-box,
.offer-card .offer-content .offer-promo-display .promo-redeem-btn {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  border: 1px dashed var(--primary-color);
  padding: 0.35rem 0.6rem;
  border-radius: 9999px;
  background: none;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  word-break: break-all;
}
.offer-card .offer-content .offer-promo-display .promo-code-box:hover,
.offer-card .offer-content .offer-promo-display .promo-redeem-btn:hover {
  cursor: text;
}
.offer-card .offer-content .offer-promo-display .promo-redeem-btn {
  font-family: inherit;
  border: none;
  background: var(--primary-color, var(--primary-color));
  color: #fff;
  cursor: pointer !important;
}
.offer-card .offer-content .offer-promo-display .promo-redeem-btn:hover {
  background: color-mix(in srgb, var(--primary-color), black 10%);
  cursor: pointer;
}
.offer-card .offer-content .offer-promo-display .promo-copy-hint {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
}
.offer-card .offer-content .offer-promo-display .promo-copy-hint svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}

.content {
  grid-area: main;
  padding: 1.5rem;
  flex-grow: 1;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .content {
    padding: 1rem;
  }
}
@media (max-width: 380px) {
  .content {
    padding: 0.75rem;
  }
}
.content .content-section {
  margin-bottom: 5rem;
}
.content .content-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.content .content-section .section-header .section-title-area {
  flex: 1;
  min-width: 0;
}
.content .content-section .section-header .section-title-area h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.01em;
}
.content .content-section .section-header .section-title-area .section-description {
  font-size: 1rem;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
  max-width: 800px;
}
@media (max-width: 768px) {
  .content .content-section .section-header .section-title-area {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 380px) {
  .content .content-section .section-header .section-title-area h2 {
    font-size: 1.25rem;
  }
  .content .content-section .section-header .section-title-area .section-description {
    font-size: 0.9rem;
  }
}
.content .content-section .section-header .section-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.content .content-section .section-header .section-actions .select-mini {
  padding: 0.3rem 1.5rem 0.3rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  background-color: #fff;
  color: #111827;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1em;
}
.content .content-section .section-header .section-actions .select-mini:focus {
  outline: none;
  border-color: var(--primary-color);
}
.content .content-section .section-header .section-actions .checkbox-mini {
  font-size: 0.875rem;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.content .content-section .section-header .section-actions .checkbox-mini input[type=checkbox] {
  accent-color: var(--primary-color);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.content .content-section .section-header .section-actions .section-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  white-space: nowrap;
}
.content .content-section .section-header .section-actions .section-link:hover {
  text-decoration: underline;
}
.content .content-section .product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .content .content-section .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .content .content-section .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .content .content-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 380px) {
  .content .content-section .product-grid {
    grid-template-columns: 1fr;
  }
}
.content .content-section .offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .content .content-section .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .content .content-section .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .content .content-section .offer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 380px) {
  .content .content-section .offer-grid {
    gap: 0.75rem;
  }
}
.content .content-section .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.content .content-section .pagination .page-indicator {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.content .content-section .btn-outline {
  background: transparent;
  border: 1px solid rgba(var(--primary-color), 0.3);
  color: var(--primary-color);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.content .content-section .btn-outline:hover {
  background: rgba(var(--primary-color), 0.05);
  border-color: var(--primary-color);
  transform: translateY(-1px);
}
.content .content-section .btn-outline:active {
  transform: translateY(0);
}
.content .content-section .section-filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.content .content-section .section-filters .filter-group {
  display: flex;
  align-items: center;
}
.content .content-section .section-filters .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  user-select: none;
}
.content .content-section .section-filters .checkbox-label input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(var(--primary-color), 0.3);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.content .content-section .section-filters .checkbox-label input[type=checkbox]:checked {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.content .content-section .section-filters .checkbox-label input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
}
.content .content-section .section-filters .checkbox-label input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-color), 0.1);
}
.content .content-section .load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.content .content-section .load-more-container .btn-load-more {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #111827;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
}
.content .content-section .load-more-container .btn-load-more:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-color), 0.2);
}
.content .content-section .load-more-container .btn-load-more:active:not(:disabled) {
  transform: translateY(0);
}
.content .content-section .load-more-container .btn-load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.content .content-section .load-more-container .btn-load-more .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(17, 24, 39, 0.1);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.content .content-section .brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: min-content;
  gap: 1.5rem;
}
.content .content-section .brand-grid .brand-card-wrapper {
  text-decoration: none !important;
  color: inherit;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  height: 100%;
}
.content .content-section .brand-grid .brand-card-wrapper:hover, .content .content-section .brand-grid .brand-card-wrapper:focus, .content .content-section .brand-grid .brand-card-wrapper:active {
  text-decoration: none !important;
}
.content .content-section .brand-grid .brand-card-wrapper * {
  text-decoration: none !important;
}
.content .content-section .brand-grid .brand-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-row: span 3;
  grid-template-rows: subgrid;
  padding: 0 1.25rem 1.25rem 0;
  gap: 1.25rem;
  box-sizing: border-box;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.content .content-section .brand-grid .brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.1) 1.6px, transparent 1.6px);
  background-size: 10px 10px;
  mask-image: radial-gradient(ellipse at 112% -12%, transparent 28%, rgba(0, 0, 0, 0.85) 40%, transparent 62%);
  -webkit-mask-image: radial-gradient(ellipse at 112% -12%, transparent 28%, rgba(0, 0, 0, 0.85) 40%, transparent 62%);
  pointer-events: none;
  top: -56px;
}
.content .content-section .brand-grid .brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
}
.content .content-section .brand-grid .brand-card .brand-logo {
  grid-row: 1;
  grid-column: 1;
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
  background: #f3f4f6;
  border-radius: 0 1rem;
  border: none;
  flex-shrink: 0;
  align-self: flex-start;
  margin: 10px 0px 0 10px;
}
.content .content-section .brand-grid .brand-card .brand-name {
  grid-row: 1;
  grid-column: 2;
  font-weight: 700;
  color: #111827;
  font-size: 1.15rem;
  line-height: 1.2;
  align-self: center;
}
.content .content-section .brand-grid .brand-card .brand-meta {
  grid-row: 2/span 2;
  grid-column: 1/span 2;
  display: flex;
  flex-direction: column;
  padding-left: 1.25rem;
  gap: 0;
}
.content .content-section .brand-grid .brand-card .brand-meta .brand-stats-grid {
  display: grid;
  grid-template-columns: max-content auto 1fr;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-end;
  min-height: 60px;
  align-content: start;
}
.content .content-section .brand-grid .brand-card .brand-meta .brand-stats-grid .stat-row {
  display: contents;
}
.content .content-section .brand-grid .brand-card .brand-meta .brand-stats-grid .stat-divider {
  grid-column: 1/-1;
  height: 1px;
  background: linear-gradient(to right, silver, transparent);
  padding: 0;
  margin: 2px 0;
}
.content .content-section .brand-grid .brand-card .brand-meta .brand-stats-grid .stat-count {
  text-align: right;
  font-size: 0.9rem;
  color: #111827;
  font-weight: 700;
  padding: 5px 0;
}
.content .content-section .brand-grid .brand-card .brand-meta .brand-stats-grid .stat-label {
  text-align: left;
  font-size: 0.9rem;
  color: #6b7280;
  padding: 5px 0;
}
.content .content-section .brand-grid .brand-card .brand-meta .brand-stats-grid .stat-tags {
  text-align: left;
  display: flex;
  gap: 4px;
  padding: 5px 0;
}
.content .content-section .brand-grid .brand-card .brand-meta .brand-stats-grid .stat-tags .sale-label {
  color: var(--color-red, #ef4444);
  font-weight: 700;
  font-size: 0.75rem;
  font-style: italic;
}
.content .content-section .brand-grid .brand-card .brand-meta .brand-stats-grid .stat-tags .codes-label {
  color: var(--color-green, #22c55e);
  font-weight: 700;
  font-size: 0.75rem;
  font-style: italic;
}
.content .content-section .brand-grid .brand-card .brand-meta .brand-categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .content .content-section .brand-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .content .content-section .brand-grid .brand-card {
    grid-template-columns: 80px 1fr;
  }
}
.content .content-section .article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.content .content-section .article-grid .article-card-wrapper {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  width: 100%;
  height: 100%;
}
.content .content-section .article-grid .article-card-wrapper:hover, .content .content-section .article-grid .article-card-wrapper:focus, .content .content-section .article-grid .article-card-wrapper:active {
  text-decoration: none !important;
}
.content .content-section .article-grid .article-card-wrapper * {
  text-decoration: none !important;
}
.content .content-section .article-grid .article-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  flex: 1;
}
.content .content-section .article-grid .article-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}
.content .content-section .article-grid .article-card .article-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}
.content .content-section .article-grid .article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .content-section .article-grid .article-card .article-image .article-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-color) 0%, #e5e7eb 100%);
}
.content .content-section .article-grid .article-card .article-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.content .content-section .article-grid .article-card .article-info .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.content .content-section .article-grid .article-card .article-info .article-tags .tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  background: rgba(var(--primary-color), 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}
.content .content-section .article-grid .article-card .article-info .article-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}
.content .content-section .article-grid .article-card .article-info .article-summary {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  flex-grow: 1;
}
.content .content-section .article-grid .article-card .article-info .article-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.content .content-section .article-grid .article-card .article-info .article-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .content .content-section .article-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer {
  grid-area: footer;
  padding: 2rem 1.5rem;
  background: linear-gradient(to bottom, #EF3E5C, #E42A53);
  color: white;
  text-align: center;
  flex-shrink: 0;
}
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.footer__logo-section {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.footer__logo-img {
  height: 48px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}
.footer__logo-text {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white !important;
  filter: none !important;
  text-shadow: none !important;
}
.footer__nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.75rem 0;
}
.footer__nav-link {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__nav-link:hover {
  opacity: 1;
}
.footer__nav-icon {
  display: none;
}
.footer__copyright {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  font-style: italic;
}
.footer__legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__legal-link {
  color: white;
  text-decoration: none;
  font-size: 0.938rem;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer__legal-link:hover {
  opacity: 1;
}

.brand-hub-page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-main, #FAFAFA);
}
.brand-hub-page-wrapper .footer {
  margin-top: auto;
}

.brand-hub-context {
  width: 100%;
  box-sizing: border-box;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}
.brand-hub-context .breadcrumbs {
  margin-bottom: 0.5rem;
}
.brand-hub-context .breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6B7280;
}
.brand-hub-context .breadcrumbs ol a {
  color: #6B7280;
  text-decoration: none;
}
.brand-hub-context .breadcrumbs ol a:hover {
  color: var(--color-red, #E42A53);
  text-decoration: underline;
}
.brand-hub-context .breadcrumbs ol .separator {
  color: rgb(160.770212766, 165.9234042553, 176.229787234);
}
.brand-hub-context .breadcrumbs ol [aria-current=page] {
  color: #1F2937;
  font-weight: 500;
}
.brand-hub-context .brand-h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #1F2937;
  margin: 0;
  letter-spacing: -0.025em;
}

.brand-hub-container {
  width: 100%;
  box-sizing: border-box;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .brand-hub-container {
    grid-template-columns: 240px 1fr;
  }
}
@media (max-width: 868px) {
  .brand-hub-container {
    grid-template-columns: 1fr;
  }
  .brand-hub-container .brand-hub-sidebar {
    order: 2;
    margin-top: 2rem;
  }
  .brand-hub-container .brand-hub-main {
    order: 1;
  }
}

.brand-hub-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand-hub-sidebar .sidebar-widget {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.brand-hub-sidebar .sidebar-widget h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #1F2937;
  border-bottom: 2px solid #FAFAFA;
  padding-bottom: 0.5rem;
}
.brand-hub-sidebar .sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.brand-hub-sidebar .sidebar-widget ul li a {
  color: #1F2937;
  text-decoration: none;
}
.brand-hub-sidebar .sidebar-widget ul li a:hover {
  color: var(--color-red, #E42A53);
}
.brand-hub-sidebar .sidebar-widget ul li label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #1F2937;
  cursor: pointer;
}
.brand-hub-sidebar .sidebar-widget.sticky-conversion {
  position: sticky;
  top: 1.5rem;
  background: color-mix(in srgb, var(--color-yellow, #DBA437), white 85%);
  border-color: color-mix(in srgb, var(--color-yellow, #DBA437), white 60%);
}
.brand-hub-sidebar .sidebar-widget.sticky-conversion p {
  font-size: 0.85rem;
  color: #1F2937;
  margin: 0 0 1rem 0;
}
.brand-hub-sidebar .sidebar-widget.sticky-conversion .alert-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.brand-hub-sidebar .sidebar-widget.sticky-conversion .alert-form input[type=email] {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  font-size: 0.9rem;
}
.brand-hub-sidebar .sidebar-widget.sticky-conversion .alert-form input[type=email]:focus {
  outline: none;
  border-color: var(--color-red, #E42A53);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-red, #E42A53), transparent 80%);
}
.brand-hub-sidebar .sidebar-widget.sticky-conversion .alert-form button {
  background: #1F2937;
  color: #fff;
  border: none;
  padding: 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.brand-hub-sidebar .sidebar-widget.sticky-conversion .alert-form button:hover {
  background: rgb(58.5755813953, 77.4709302326, 103.9244186047);
}

.brand-hub-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
}

.offers-dense-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.offers-dense-list .offer-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s;
}
.offers-dense-list .offer-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}
@media (max-width: 640px) {
  .offers-dense-list .offer-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }
}
.offers-dense-list .offer-card__badge {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-red, #E42A53);
  min-width: 100px;
  flex-shrink: 0;
}
.offers-dense-list .offer-card__content {
  flex: 1;
  padding: 0 1.5rem;
}
@media (max-width: 640px) {
  .offers-dense-list .offer-card__content {
    padding: 0;
  }
}
.offers-dense-list .offer-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 0.25rem 0;
}
.offers-dense-list .offer-card__verified {
  font-size: 0.8rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 4px;
}
.offers-dense-list .offer-card__verified:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-green, #10B981);
}
.offers-dense-list .offer-card__action {
  flex-shrink: 0;
}
.offers-dense-list .offer-card__action .promo-code-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.1s ease, opacity 0.2s ease;
  outline: none;
}
.offers-dense-list .offer-card__action .promo-code-btn:hover {
  opacity: 0.8;
}
.offers-dense-list .offer-card__action .promo-code-btn:active {
  transform: scale(0.98);
}
.offers-dense-list .offer-card__action .promo-code-btn .promo-code-box {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-red, #E42A53);
  border: 1.5px dashed rgba(var(--primary-rgb), 0.4);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  background: transparent;
  letter-spacing: 0.05em;
}
.offers-dense-list .offer-card__action .promo-code-btn .promo-copy-hint {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 600;
  text-transform: uppercase;
}
.offers-dense-list .offer-card__action .promo-code-btn .promo-copy-hint svg {
  stroke-width: 2.5;
  flex-shrink: 0;
}
.offers-dense-list .offer-card__action .promo-code-btn.is-copied .promo-copy-hint {
  color: var(--color-green, #10B981);
}
.offers-dense-list .offer-card__action .promo-code-btn.is-copied .promo-code-box {
  border-color: var(--color-green, #10B981);
  color: var(--color-green, #10B981);
}
@media (max-width: 640px) {
  .offers-dense-list .offer-card__action {
    width: 100%;
  }
  .offers-dense-list .offer-card__action .btn-copy-go,
  .offers-dense-list .offer-card__action .promo-code-btn {
    width: 100%;
    justify-content: center;
  }
}

.btn-copy-go {
  background-color: var(--color-red, #E42A53);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.1s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  white-space: nowrap;
}
.btn-copy-go:hover {
  background-color: color-mix(in srgb, var(--color-red, #E42A53), black 10%);
  box-shadow: 0 4px 6px color-mix(in srgb, var(--color-red, #E42A53), transparent 75%);
}
.btn-copy-go:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-copy-go:focus-visible {
  outline: 2px solid var(--color-yellow, #DBA437);
  outline-offset: 2px;
}
.btn-copy-go.is-copied {
  background-color: var(--color-green, #10B981);
  pointer-events: none;
}

.products-grid .section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 1rem 0;
}
.products-grid .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .products-grid .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
}
.products-grid .product-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.products-grid .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.products-grid .product-card:hover .product-card__title {
  color: var(--color-red, #E42A53);
}
.products-grid .product-card__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  padding: 1rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #FAFAFA;
}
.products-grid .product-card__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.products-grid .product-card__info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.products-grid .product-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.products-grid .product-card__price {
  margin-top: auto;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.products-grid .product-card__price .current-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1F2937;
}
.products-grid .product-card__price .original-price {
  font-size: 0.85rem;
  color: #6B7280;
  text-decoration: line-through;
}
.products-grid .product-card .btn-view-product {
  display: block;
  text-align: center;
  background: #FAFAFA;
  color: #1F2937;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.products-grid .product-card .btn-view-product:hover {
  background: var(--color-red, #E42A53);
  color: #fff;
  border-color: var(--color-red, #E42A53);
}

body {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
  color: #111827;
  background-color: var(--bg-color);
}

/*# sourceMappingURL=main.css.map */
