:root {
  --cc-bg: #000000;
  --cc-bg-2: #030407;
  --cc-panel: rgba(12, 18, 30, 0.82);
  --cc-panel-strong: rgba(15, 22, 34, 0.95);
  --cc-card: rgba(9, 15, 28, 0.88);
  --cc-border: rgba(100, 218, 255, 0.18);
  --cc-border-pink: rgba(255, 79, 216, 0.28);
  --cc-text: #ffffff;
  --cc-muted: #9aa6b7;
  --cc-violet: #b012a8;
  --cc-pink: #ff4fd8;
  --cc-cyan: #00fff0;
  --cc-blue: #149dff;
  --cc-green: #38f4c8;
  --cc-gradient: linear-gradient(135deg, #b012a8 0%, var(--cc-pink) 34%, #00b8ff 68%, #00fff0 100%);
  --cc-gradient-blue: linear-gradient(135deg, #00fff0, #00b8ff);
  --cc-radius: 18px;
  --cc-radius-lg: 24px;
  --cc-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --cc-glow-pink: 0 0 28px rgba(255, 79, 216, 0.34);
  --cc-glow-cyan: 0 0 28px rgba(0, 207, 255, 0.32);
  --cc-container: 1400px;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--cc-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 79, 216, 0.14), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(0, 255, 240, 0.12), transparent 30%),
    linear-gradient(180deg, #000000 0%, #020307 48%, #000000 100%);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.cc-page {
  min-height: 100vh;
  background: transparent;
}

.cc-container {
  width: min(100% - 72px, var(--cc-container));
  margin: 0 auto;
}

.cc-promo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  background: rgba(3, 5, 12, 0.92);
  font-size: 13px;
  font-weight: 550;
  text-transform: uppercase;
}

.cc-promo-module-slot {
  overflow: hidden;
}

.cc-promo-module-slot > * {
  width: 100%;
}

.cc-promo-bar span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cc-banner-placeholder {
  color: rgba(22, 24, 33, 0.46);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

.cc-promo-bar span:nth-child(2) {
  justify-content: center;
}

.cc-promo-bar span:nth-child(3) {
  justify-content: flex-end;
}

.cc-pro-banner {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  color: #fff;
  background: var(--cc-gradient);
  font-weight: 650;
}

.cc-pro-mode .cc-pro-banner {
  display: flex;
}

.cc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 7, 17, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.cc-header-inner {
  display: grid;
  grid-template-columns: 350px 1fr 310px;
  gap: 24px;
  align-items: center;
  min-height: 96px;
}

.cc-logo {
  display: inline-flex;
  align-items: center;
  width: min(100%, 330px);
  min-width: 0;
  line-height: 1;
}

.cc-logo img {
  display: block;
  width: 100%;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

.cc-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  max-width: 100%;
  min-height: 76px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cc-logo strong {
  background: var(--cc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cc-logo small {
  color: #fff;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.07em;
}

.cc-logo-mark {
  display: none;
}

.cc-main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
}

.cc-main-menu a {
  position: relative;
  padding: 12px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cc-main-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--cc-gradient);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--cc-glow-pink);
}

.cc-main-menu a:hover::after,
.cc-main-menu a:focus::after,
.cc-main-menu a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.cc-prestashop-menu > * {
  width: 100%;
}

.cc-prestashop-menu #_desktop_top_menu,
.cc-prestashop-menu .top-menu,
.cc-prestashop-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-prestashop-menu li {
  position: relative;
  margin: 0;
}

.cc-prestashop-menu a,
.cc-prestashop-menu .dropdown-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cc-prestashop-menu a::after,
.cc-prestashop-menu .dropdown-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--cc-gradient);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--cc-glow-pink);
}

.cc-prestashop-menu a:hover::after,
.cc-prestashop-menu a:focus::after,
.cc-prestashop-menu .current a::after,
.cc-prestashop-menu .dropdown-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.cc-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.cc-pro-button,
.cc-icon-button,
.cc-mobile-toggle,
.cc-tool-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  cursor: pointer;
}

.cc-pro-button {
  border-color: rgba(255, 79, 216, 0.45);
  background: rgba(255, 79, 216, 0.12);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--cc-glow-pink);
}

.cc-mobile-toggle {
  display: none;
}

.cc-gradient-button,
.btn-primary,
.add-to-cart {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  width: 100%;
  padding: 13px 22px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--cc-gradient-blue);
  box-shadow: 0 0 32px rgba(20, 157, 255, 0.28);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cc-layout {
  padding: 24px 0 56px;
}

.cc-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.cc-card,
.cc-options-panel,
.cc-cart-summary,
.cc-preview-area,
.cc-layer-panel,
.cc-filters,
.cc-home-section {
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: linear-gradient(180deg, rgba(18, 26, 40, 0.84), rgba(8, 13, 24, 0.86));
  box-shadow: var(--cc-shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
}

.cc-product-page {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(360px, 430px) minmax(260px, 310px);
  gap: 24px;
  align-items: start;
}

.cc-product-thumbs {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: rgba(7, 11, 20, 0.72);
}

.cc-thumb {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 207, 255, 0.2);
  border-radius: 10px;
  background: #070b14;
  opacity: 0.76;
}

.cc-thumb:hover,
.cc-thumb:focus {
  opacity: 1;
  border-color: var(--cc-cyan);
  box-shadow: var(--cc-glow-cyan);
}

.cc-preview-column {
  min-width: 0;
}

.cc-preview-area {
  min-height: 620px;
  padding: 22px;
  background:
    radial-gradient(circle at 48% 45%, rgba(0, 207, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(18, 24, 34, 0.72), rgba(5, 9, 17, 0.78));
}

.cc-configurator-wrapper {
  width: 100%;
}

.cc-configurator-wrapper .sticker-configurator,
.cc-configurator-wrapper #sc-configurator {
  margin: 0;
}

.cc-product-page:has(#sc-configurator) {
  grid-template-columns: 96px minmax(920px, 1fr) minmax(280px, 340px);
}

.cc-product-page:has(#sc-configurator) .cc-preview-column {
  grid-column: 2;
}

.cc-product-page:has(#sc-configurator) .cc-preview-area {
  min-height: 0;
}

.cc-product-page:has(#sc-configurator) .cc-product-side {
  display: grid;
  grid-column: 3;
}

.cc-product-page:has(#sc-configurator) .social-sharing {
  display: none !important;
}

.cc-configurator-wrapper #sc-configurator {
  width: 100%;
}

.cc-configurator-wrapper .sc-page-shell {
  max-width: none;
  margin: 0;
  padding: 0;
}

.cc-configurator-wrapper #sc-configurator.sc-product,
.cc-configurator-wrapper .sc-product {
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 440px);
  gap: 24px;
}

.cc-configurator-wrapper .sc-preview-panel,
.cc-configurator-wrapper .sc-config-panel {
  width: 100%;
  min-width: 0;
}

.cc-configurator-wrapper .sc-preview-panel {
  position: sticky;
  top: 124px;
}

.cc-configurator-wrapper .sc-checkout {
  border: 1px solid rgba(0, 207, 255, 0.2);
  background: rgba(8, 13, 24, 0.96);
  box-shadow: var(--cc-shadow), var(--cc-glow-cyan);
}

.cc-reassurance-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.cc-reassurance-item,
.cc-footer-reassurance-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  color: #fff;
  background: rgba(9, 15, 28, 0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.cc-reassurance-item span:last-child,
.cc-footer-reassurance-item span:last-child {
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-reassurance-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--cc-cyan);
  background: rgba(0, 207, 255, 0.1);
  box-shadow: var(--cc-glow-cyan);
}

.cc-product-side {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 18px;
}

.cc-options-panel,
.cc-cart-summary {
  padding: 22px;
}

.cc-product-title {
  margin: 12px 0 10px;
  color: var(--cc-text);
  font-size: clamp(26px, 3.3vw, 44px);
  line-height: 1.02;
  text-transform: uppercase;
}

.cc-product-subtitle,
.cc-muted {
  color: var(--cc-muted);
}

.cc-cart-summary {
  position: sticky;
  top: 124px;
}

.cc-cart-summary h2,
.cc-options-panel h2 {
  margin-top: 0;
  font-size: 18px;
  text-transform: uppercase;
}

.cc-cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--cc-muted);
}

.cc-cart-summary strong {
  color: #fff;
}

.cc-secure-note {
  margin-top: 12px;
  color: var(--cc-muted);
  font-size: 13px;
  text-align: center;
}

.cc-footer-reassurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 34px 0;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: rgba(8, 13, 24, 0.76);
}

.cc-footer-reassurance-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cc-footer-reassurance-item + .cc-footer-reassurance-item {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.cc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.cc-product-grid-empty {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 240px;
  place-items: center;
  border: 1px dashed rgba(255, 79, 216, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.cc-product-grid-empty p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 16px;
}

.cc-home-products-slot .products,
.cc-home-products-slot .product_list,
.cc-home-products-slot .js-product-list .products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.cc-home-products-slot .product-miniature {
  width: auto;
}

.cc-home-products-slot .product-miniature .thumbnail-container,
.cc-home-products-slot article.product-miniature {
  overflow: hidden;
  min-height: 450px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: #ffffff;
  box-shadow: var(--cc-shadow);
}

.cc-home-products-slot .product-miniature .product-thumbnail img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.cc-home-products-slot .product-miniature .product-description {
  min-height: 200px;
  padding: 18px;
  background: #ffffff;
}

.cc-home-products-slot .product-miniature .product-title,
.cc-home-products-slot .product-miniature .product-title a {
  color: var(--cc-text);
  font-size: 20px;
  font-weight: 500;
}

.cc-home-products-slot .product-miniature .price {
  color: var(--cc-text);
  font-size: 28px;
  font-weight: 650;
}

@media (max-width: 1280px) {
  .cc-home-products-slot .products,
  .cc-home-products-slot .product_list,
  .cc-home-products-slot .js-product-list .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .cc-home-products-slot .products,
  .cc-home-products-slot .product_list,
  .cc-home-products-slot .js-product-list .products {
    grid-template-columns: 1fr;
  }
}

.cc-product-card {
  position: relative;
  overflow: hidden;
  height: 450px;
  min-height: 0;
  border: 1px solid rgba(0, 207, 255, 0.22);
  border-radius: var(--cc-radius);
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.92), rgba(4, 8, 17, 0.96));
  box-shadow: var(--cc-shadow), inset 0 1px 0 rgba(255,255,255,0.05);
}

.cc-product-card:nth-child(odd) {
  border-color: rgba(255, 79, 216, 0.22);
}

.cc-product-card-image {
  display: block;
  overflow: hidden;
  height: 250px;
  aspect-ratio: auto;
  background:
    radial-gradient(circle at 50% 78%, rgba(255, 79, 216, 0.28), transparent 34%),
    #08101d;
}

.cc-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cc-product-card:hover img {
  transform: scale(1.045);
}

.cc-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--cc-pink), var(--cc-violet));
  box-shadow: var(--cc-glow-pink);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.cc-product-card .cc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.cc-favorite-button {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.cc-product-card-body {
  display: grid;
  gap: 9px;
  min-height: 0;
  height: 200px;
  padding: 16px 18px 18px;
}

.cc-product-category {
  margin: 0;
  color: var(--cc-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.cc-product-card-title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.cc-product-card-price,
.cc-price-ht {
  color: #fff;
  font-size: 28px;
  font-weight: 650;
}

.cc-rating-line {
  color: #ffc400;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.cc-rating-line span {
  color: var(--cc-muted);
  letter-spacing: 0;
}

.cc-product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 2px;
}

.cc-card-cart-button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 1px solid var(--cc-cyan);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(0, 207, 255, 0.08);
  box-shadow:
    0 0 18px rgba(0, 207, 255, 0.38),
    0 0 26px rgba(255, 79, 216, 0.22),
    inset 0 0 14px rgba(0, 207, 255, 0.12);
  font-size: 0;
  line-height: 1;
}

.cc-card-cart-button::before {
  content: "";
  width: 32px;
  height: 32px;
  background: var(--cc-gradient);
  filter:
    drop-shadow(0 0 4px rgba(255, 79, 216, 0.95))
    drop-shadow(0 0 8px rgba(0, 207, 255, 0.85));
  transform: rotate(-12deg);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='5.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 48l3-12L43 10a7 7 0 0 1 10 10L27 46z'/%3E%3Cpath d='M38 15l11 11'/%3E%3Cpath d='M17 36l11 11'/%3E%3Cpath d='M12 52l15-5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='5.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 48l3-12L43 10a7 7 0 0 1 10 10L27 46z'/%3E%3Cpath d='M38 15l11 11'/%3E%3Cpath d='M17 36l11 11'/%3E%3Cpath d='M12 52l15-5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.cc-listing-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 24px;
}

.cc-shop-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(340px, 0.72fr) minmax(340px, 0.72fr) 300px;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.cc-shop-heading h1 {
  margin: 0;
  background: var(--cc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.cc-shop-heading strong {
  color: inherit;
  font-weight: inherit;
}

.cc-breadcrumb-lite {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--cc-muted);
}

.cc-breadcrumb-lite a::after {
  content: "›";
  margin-left: 12px;
}

.cc-shop-intro {
  margin: 0;
  color: #dfe7f5;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.75;
}

.cc-sort-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 260px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 79, 216, 0.42);
  border-radius: 10px;
  color: #fff;
  background: rgba(11, 16, 29, 0.72);
}

.cc-sort-wrapper {
  display: flex;
  justify-content: flex-end;
}

.cc-sort-wrapper .products-sort-order,
.cc-sort-wrapper .select-title {
  min-width: 260px;
  min-height: 48px;
  border: 1px solid rgba(255, 79, 216, 0.32);
  border-radius: 10px;
  color: var(--cc-text);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: var(--cc-shadow);
}

.cc-shop-art {
  position: relative;
  min-height: 116px;
}

.cc-shop-art span {
  position: absolute;
  display: block;
  border: 2px solid rgba(255, 79, 216, 0.85);
  box-shadow: var(--cc-glow-pink);
}

.cc-art-laptop {
  left: 18px;
  bottom: 18px;
  width: 134px;
  height: 64px;
  border-radius: 10px;
  transform: rotate(-5deg);
}

.cc-art-laptop::after {
  content: "♡";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
}

.cc-art-bottle {
  left: 190px;
  top: 8px;
  width: 36px;
  height: 82px;
  border-radius: 14px 14px 9px 9px;
}

.cc-art-mug {
  left: 244px;
  bottom: 14px;
  width: 58px;
  height: 52px;
  border-radius: 6px 6px 16px 16px;
}

.cc-art-phone {
  right: 26px;
  top: 20px;
  width: 42px;
  height: 84px;
  border-radius: 12px;
  transform: rotate(14deg);
}

.cc-shop-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
}

.cc-sidebar-panel {
  padding: 20px;
  border: 1px solid var(--cc-border-pink);
  border-radius: var(--cc-radius);
  background: rgba(8, 13, 24, 0.76);
  box-shadow: var(--cc-shadow), inset 0 1px 0 rgba(255,255,255,0.05);
}

.cc-sidebar-panel h2,
.cc-sidebar-panel h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.cc-prestashop-sidebar:empty {
  display: none;
}

.cc-prestashop-sidebar .block-categories,
.cc-prestashop-sidebar .block_faceted_search,
.cc-prestashop-sidebar .facet,
.cc-prestashop-sidebar .search_filters,
.cc-prestashop-sidebar .card {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cc-prestashop-sidebar .h6,
.cc-prestashop-sidebar h4,
.cc-prestashop-sidebar .facet-title,
.cc-prestashop-sidebar .block-categories .category-top-link {
  display: block;
  margin: 0 0 14px;
  color: var(--cc-text);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.cc-prestashop-sidebar ul,
.cc-prestashop-sidebar .category-sub-menu {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-prestashop-sidebar a,
.cc-prestashop-sidebar label,
.cc-prestashop-sidebar .facet-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--cc-muted);
  font-size: 14px;
  font-weight: 500;
}

.cc-prestashop-sidebar a:hover,
.cc-prestashop-sidebar label:hover,
.cc-prestashop-sidebar .current > a {
  border-color: rgba(255, 79, 216, 0.30);
  color: var(--cc-text);
  background: rgba(255, 79, 216, 0.08);
}

.cc-prestashop-sidebar input {
  accent-color: var(--cc-pink);
}

.cc-category-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}

.cc-category-link strong {
  font-weight: 500;
}

.cc-category-link em,
.cc-filter-group em {
  color: #fff;
  font-style: normal;
}

.cc-category-link.is-active,
.cc-category-link:hover {
  border-color: rgba(255, 79, 216, 0.55);
  background: rgba(255, 79, 216, 0.16);
  box-shadow: var(--cc-glow-pink);
}

.cc-filter-group {
  display: grid;
  gap: 10px;
  padding-top: 12px;
}

.cc-filter-group + .cc-filter-group {
  margin-top: 14px;
}

.cc-filter-group label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  color: #dfe7f5;
  font-size: 13px;
}

.cc-filter-group input {
  width: 15px;
  height: 15px;
  accent-color: var(--cc-pink);
}

.cc-color-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.cc-color-dots span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 50%;
  background: var(--dot, #fff);
}

.cc-dot-black { --dot: #05070c; }
.cc-dot-white { --dot: #ffffff; }
.cc-dot-gray { --dot: #cbd5e1; }
.cc-dot-blue { --dot: #149dff; }
.cc-dot-red { --dot: #e11d48; }
.cc-dot-yellow { --dot: #facc15; }
.cc-dot-orange { --dot: #f59e0b; }
.cc-dot-pink { --dot: #d946ef; }

.cc-color-dots .is-rainbow {
  background: conic-gradient(#ff4fd8, #00cfff, #facc15, #ff4fd8);
}

.cc-price-slider {
  position: relative;
  height: 6px;
  margin: 8px 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

.cc-price-slider span {
  position: absolute;
  inset: 0 10% 0 0;
  border-radius: inherit;
  background: var(--cc-pink);
  box-shadow: var(--cc-glow-pink);
}

.cc-price-range {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 13px;
}

.cc-filters {
  position: sticky;
  top: 124px;
  padding: 22px;
}

.cc-filter-drawer-button {
  display: none;
}

.cc-home-hero,
.cc-home-section {
  margin-bottom: 34px;
  padding: clamp(28px, 5vw, 64px);
}

.cc-home-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  border: 1px solid var(--cc-border-pink);
  border-radius: var(--cc-radius-lg);
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 79, 216, 0.22), transparent 34%),
    radial-gradient(circle at 86% 26%, rgba(0, 207, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(12, 18, 32, 0.82), rgba(4, 8, 17, 0.96));
  box-shadow: var(--cc-shadow), var(--cc-glow-pink);
}

.cc-home-hero h1 {
  max-width: 860px;
  margin: 16px 0;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.96;
  text-transform: uppercase;
}

.cc-footer-hooks {
  padding: 24px;
}

.cc-mobile-cart-bar {
  display: none;
}

@media (max-width: 1280px) {
  .cc-product-page {
    grid-template-columns: 82px minmax(0, 1fr) minmax(320px, 390px);
  }

  .cc-product-page:has(#sc-configurator) {
    grid-template-columns: 82px minmax(0, 1fr) minmax(280px, 320px);
  }

  .cc-product-page:has(#sc-configurator) .cc-product-side {
    grid-column: 3;
  }

  .cc-configurator-wrapper #sc-configurator.sc-product,
  .cc-configurator-wrapper .sc-product {
    grid-template-columns: minmax(0, 1fr);
  }

  .cc-cart-summary {
    grid-column: 2 / 4;
  }

  .cc-shop-heading {
    grid-template-columns: 1fr 1fr;
  }

  .cc-shop-art {
    order: 3;
  }

  .cc-sort-button {
    order: 4;
    justify-self: end;
  }

  .cc-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .cc-container {
    width: min(100% - 24px, var(--cc-container));
  }

  .cc-promo-bar {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cc-promo-bar span,
  .cc-promo-bar span:nth-child(2),
  .cc-promo-bar span:nth-child(3) {
    justify-content: center;
  }

  .cc-header-inner {
    grid-template-columns: auto auto;
  }

  .cc-mobile-toggle {
    display: inline-flex;
  }

  .cc-main-menu {
    display: none;
    grid-column: 1 / -1;
    justify-content: stretch;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    background: rgba(8, 13, 24, 0.96);
  }

  .cc-mobile-menu-open .cc-main-menu {
    display: flex;
  }

  .cc-pro-button {
    display: none;
  }

  .cc-product-page,
  .cc-product-page:has(#sc-configurator),
  .cc-listing-layout,
  .cc-shop-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .cc-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-shop-art,
  .cc-sort-button {
    order: initial;
    justify-self: stretch;
  }

  .cc-shop-sidebar {
    display: none;
  }

  .cc-product-page:has(#sc-configurator) .cc-preview-column {
    grid-column: auto;
  }

  .cc-configurator-wrapper .sc-preview-panel {
    position: static;
  }

  .cc-product-thumbs {
    position: static;
    order: 2;
    grid-template-columns: repeat(4, 1fr);
  }

  .cc-preview-area {
    min-height: 440px;
  }

  .cc-product-side,
  .cc-cart-summary {
    position: static;
    grid-column: auto;
  }

  .cc-cart-summary {
    display: none;
  }

  .cc-mobile-cart-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 80;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--cc-border);
    border-radius: 18px;
    background: rgba(8, 13, 24, 0.96);
    box-shadow: var(--cc-shadow), var(--cc-glow-cyan);
  }

  .cc-reassurance-inline,
  .cc-footer-reassurance,
  .cc-product-grid {
    grid-template-columns: 1fr;
  }

  .cc-footer-reassurance-item + .cc-footer-reassurance-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .cc-filters {
    display: none;
  }

  .cc-filter-drawer-button {
    display: inline-flex;
    margin-bottom: 14px;
  }
}

/* White premium variant */
:root {
  --cc-bg: #f7f8fc;
  --cc-bg-2: #eef2f8;
  --cc-panel: rgba(255, 255, 255, 0.92);
  --cc-panel-strong: #ffffff;
  --cc-card: #ffffff;
  --cc-border: #e8eaf2;
  --cc-border-pink: rgba(255, 79, 216, 0.24);
  --cc-text: #161821;
  --cc-muted: #6b7280;
  --cc-shadow: 0 24px 70px rgba(17, 24, 39, 0.11);
}

body {
  color: var(--cc-text);
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 79, 216, 0.10), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(0, 255, 240, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 42%, #eef3f9 100%);
}

.cc-page {
  background: transparent;
}

.cc-promo-bar,
.cc-header {
  color: var(--cc-text);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--cc-border);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
}

.cc-header {
  backdrop-filter: blur(18px);
}

.cc-logo,
.cc-logo small,
.cc-main-menu a,
.cc-header-icon,
.cc-pro-button {
  color: var(--cc-text);
}

.cc-header {
  background: rgba(0, 0, 0, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20);
}

.cc-header .cc-logo,
.cc-header .cc-logo small,
.cc-header .cc-main-menu a,
.cc-header .cc-header-icon,
.cc-header .cc-icon-button,
.cc-header .cc-mobile-toggle {
  color: #ffffff;
}

.cc-header .cc-logo strong {
  background: var(--cc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cc-header-icon,
.cc-pro-button,
.cc-sort-button,
.cc-sidebar-panel,
.cc-product-card,
.cc-card,
.cc-options-panel,
.cc-cart-summary,
.cc-preview-area,
.cc-layer-panel,
.cc-filters,
.cc-home-section,
.cc-footer-reassurance {
  border-color: var(--cc-border);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: var(--cc-shadow);
}

.cc-shop-intro,
.cc-breadcrumb-lite,
.cc-product-category,
.cc-rating-line span,
.cc-category-link,
.cc-filter-group label,
.cc-price-range,
.cc-secure-note,
.cc-cart-summary-row,
.cc-reassurance-item p {
  color: var(--cc-muted);
}

.cc-sidebar-panel h2,
.cc-sidebar-panel h3,
.cc-product-card-title,
.cc-product-card-price,
.cc-category-link strong,
.cc-category-link em,
.cc-filter-group em,
.cc-cart-summary strong,
.cc-cart-summary h2,
.cc-options-panel h2 {
  color: var(--cc-text);
}

.cc-product-card {
  background: #ffffff;
}

.cc-product-card:nth-child(odd) {
  border-color: rgba(255, 79, 216, 0.24);
}

.cc-product-card-image {
  background:
    radial-gradient(circle at 50% 78%, rgba(255, 79, 216, 0.24), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef3f9);
}

.cc-product-card-body {
  background: #ffffff;
}

.cc-category-link.is-active,
.cc-category-link:hover {
  color: var(--cc-text);
  background: rgba(255, 79, 216, 0.09);
}

.cc-sort-button {
  color: var(--cc-text);
}

.cc-footer-reassurance-item + .cc-footer-reassurance-item {
  border-left-color: var(--cc-border);
}

@media (max-width: 920px) {
  .cc-main-menu,
  .cc-mobile-cart-bar {
    background: rgba(255, 255, 255, 0.96);
  }

  .cc-footer-reassurance-item + .cc-footer-reassurance-item {
    border-top-color: var(--cc-border);
  }
}

/* Live PrestaShop hardening: classic/custom CSS can be loaded after this theme. */
body .cc-header {
  background: rgba(0, 0, 0, 0.94) !important;
  border-bottom-color: rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20) !important;
}

body .cc-header .cc-main-menu a,
body .cc-header .cc-logo,
body .cc-header .cc-icon-button,
body .cc-header .cc-mobile-toggle {
  color: #ffffff !important;
}

body .cc-home-hero {
  overflow: hidden;
  min-height: 520px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 79, 216, 0.30), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(0, 255, 240, 0.28), transparent 34%),
    linear-gradient(135deg, #10121c 0%, #161821 48%, #06151b 100%) !important;
}

body .cc-home-hero h1 {
  max-width: 980px;
  color: #ffffff !important;
  font-size: clamp(42px, 5.5vw, 86px);
  font-weight: 650;
  line-height: 0.98;
}

body .cc-home-lead,
body .cc-home-hero .cc-muted {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 18px;
}

.cc-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 760px;
}

.cc-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 180px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 79, 216, 0.36);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 650;
  text-transform: uppercase;
}

.cc-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.cc-section-heading h2,
.cc-home-section h2 {
  margin: 0;
  color: var(--cc-text);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
}

.cc-section-heading p,
.cc-home-pro p {
  margin: 0;
  max-width: 560px;
  color: var(--cc-muted);
  font-size: 16px;
  line-height: 1.7;
}

.cc-home-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cc-home-category {
  display: grid;
  align-content: end;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--cc-border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 255, 240, 0.15), transparent 30%),
    radial-gradient(circle at 22% 80%, rgba(255, 79, 216, 0.12), transparent 34%),
    #ffffff;
  box-shadow: var(--cc-shadow);
}

.cc-home-category span {
  background: var(--cc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  font-weight: 650;
}

.cc-home-category strong {
  margin-top: 8px;
  color: var(--cc-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.cc-home-pro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  align-items: center;
  gap: 28px;
}

.cc-home-empty-state {
  padding: 26px;
  border: 1px dashed rgba(255, 79, 216, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.cc-home-empty-state p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 920px) {
  .cc-section-heading,
  .cc-home-pro {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cc-home-categories {
    grid-template-columns: 1fr;
  }

  body .cc-home-hero h1 {
    font-size: clamp(34px, 10vw, 54px);
  }
}

body .cc-product-grid-empty {
  min-height: 450px !important;
  place-items: center !important;
  padding: 24px !important;
}

/* Product cards must keep the preview proportions even with only 1 or 2 real PrestaShop products. */
body .cc-product-grid:not(.cc-product-grid-empty),
body .cc-home-products-slot .products,
body .cc-home-products-slot .product_list,
body .cc-home-products-slot .js-product-list .products {
  grid-template-columns: repeat(auto-fill, minmax(250px, 280px)) !important;
  justify-content: start !important;
  align-items: start !important;
}

body .cc-home-products-slot .products.row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

body .cc-home-products-slot .js-product,
body .cc-home-products-slot .product {
  float: none !important;
  width: 280px !important;
  max-width: 280px !important;
  flex: 0 0 280px !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body .cc-product-card,
body .cc-home-products-slot .product-miniature,
body .cc-home-products-slot .product-miniature .thumbnail-container,
body .cc-home-products-slot article.product-miniature {
  width: 100% !important;
  max-width: 280px !important;
  height: 450px !important;
  min-height: 450px !important;
}

body .cc-product-card-image,
body .cc-home-products-slot .product-miniature .product-thumbnail,
body .cc-home-products-slot .product-miniature .product-thumbnail img {
  display: block !important;
  width: 100% !important;
  height: 250px !important;
}

body .cc-product-card-body,
body .cc-home-products-slot .product-miniature .product-description {
  height: 200px !important;
  min-height: 200px !important;
}

@media (max-width: 640px) {
  body .cc-product-grid:not(.cc-product-grid-empty),
  body .cc-home-products-slot .products,
  body .cc-home-products-slot .product_list,
  body .cc-home-products-slot .js-product-list .products {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .cc-home-products-slot .js-product,
  body .cc-home-products-slot .product {
    width: 100% !important;
    max-width: none !important;
    flex-basis: 100% !important;
  }

  body .cc-product-card,
  body .cc-home-products-slot .product-miniature,
  body .cc-home-products-slot .product-miniature .thumbnail-container,
  body .cc-home-products-slot article.product-miniature {
    max-width: none !important;
  }
}

@media (max-width: 920px) {
  .cc-mobile-product-overview {
    display: grid;
    gap: 18px;
    width: min(100% - 24px, 680px);
    margin: 18px auto 110px;
    padding: 20px;
    border: 1px solid var(--cc-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--cc-shadow);
  }

  .cc-mobile-product-overview h2 {
    margin: 0;
    color: var(--cc-text);
    font-size: 28px;
    font-weight: 650;
  }

  .cc-mobile-product-price {
    color: #00a9d6;
    font-size: 22px;
    font-weight: 700;
  }

  .cc-mobile-product-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cc-mobile-product-gallery .cc-thumb {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--cc-border);
    border-radius: 10px;
    background: #f7f8fc;
  }

  .cc-mobile-product-gallery .cc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .cc-mobile-product-description {
    color: var(--cc-muted);
    font-size: 15px;
    line-height: 1.65;
  }

  .cc-product-overview-actions {
    position: sticky;
    bottom: 14px;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 10px;
    width: 100%;
  }

  .cc-mobile-customize-button,
  .cc-product-back-button {
    min-height: 52px;
  }

  .cc-product-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 79, 216, 0.45);
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #4b278f 0%, #b52091 100%);
    font-size: 13px;
    font-weight: 650;
    text-align: center;
    box-shadow: 0 8px 22px rgba(181, 32, 145, 0.24);
  }

  .cc-product-back-button:hover,
  .cc-product-back-button:focus {
    color: #fff;
    background: linear-gradient(135deg, #5b31a8 0%, #d029aa 100%);
    box-shadow: 0 10px 26px rgba(181, 32, 145, 0.32);
  }

  .cc-mobile-configurator-close {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 79, 216, 0.45);
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #4b278f 0%, #b52091 100%);
    box-shadow: 0 8px 22px rgba(181, 32, 145, 0.24);
    font-weight: 700;
    text-align: center;
  }

  .cc-mobile-configurator-close:hover,
  .cc-mobile-configurator-close:focus {
    color: #fff;
    background: linear-gradient(135deg, #5b31a8 0%, #d029aa 100%);
    box-shadow: 0 10px 26px rgba(181, 32, 145, 0.32);
  }

  body.page-product:not(.cc-mobile-configurator-open) .cc-product-page:has(#sc-configurator),
  body.page-product:not(.cc-mobile-configurator-open) .cc-mobile-cart-bar {
    display: none !important;
  }

  body.page-product.cc-mobile-configurator-open .cc-mobile-product-overview {
    display: none;
  }

  .cc-product-page:has(#sc-configurator) {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .cc-product-page:has(#sc-configurator) .cc-preview-column,
  .cc-product-page:has(#sc-configurator) .cc-preview-area,
  .cc-product-page:has(#sc-configurator) .cc-configurator-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
  }

  .cc-product-page:has(#sc-configurator) .cc-product-side,
  .cc-product-page:has(#sc-configurator) .cc-reassurance-inline {
    display: none !important;
  }
}

@media (min-width: 921px) {
  .cc-mobile-product-overview {
    display: none;
  }

  .cc-mobile-configurator-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    grid-column: 1 / -1;
    width: max-content;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 79, 216, 0.45);
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #4b278f 0%, #b52091 100%);
    box-shadow: 0 8px 22px rgba(181, 32, 145, 0.24);
    font-weight: 700;
  }

  .cc-mobile-configurator-close:hover,
  .cc-mobile-configurator-close:focus {
    color: #fff;
    background: linear-gradient(135deg, #5b31a8 0%, #d029aa 100%);
    box-shadow: 0 10px 26px rgba(181, 32, 145, 0.32);
  }

  body.page-product.cc-product-overview-open .cc-product-page:has(#sc-configurator),
  body.page-product.cc-product-overview-open .cc-mobile-cart-bar {
    display: none !important;
  }

  body.page-product.cc-product-overview-open .cc-mobile-product-overview {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    gap: 18px 32px;
    width: min(1180px, calc(100% - 48px));
    margin: 36px auto 80px;
    padding: 28px;
    border: 1px solid var(--cc-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--cc-shadow);
  }

  body.page-product.cc-product-overview-open .cc-mobile-product-overview > .cc-badge,
  body.page-product.cc-product-overview-open .cc-mobile-product-overview > h2,
  body.page-product.cc-product-overview-open .cc-mobile-product-overview > .cc-mobile-product-price,
  body.page-product.cc-product-overview-open .cc-mobile-product-overview > .cc-product-overview-actions {
    grid-column: 2;
  }

  body.page-product.cc-product-overview-open .cc-mobile-product-gallery {
    grid-column: 1;
    grid-row: 1 / span 5;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.page-product.cc-product-overview-open .cc-mobile-product-gallery .cc-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--cc-border);
    border-radius: 10px;
    background: #f7f8fc;
  }

  body.page-product.cc-product-overview-open .cc-mobile-product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  body.page-product.cc-product-overview-open .cc-mobile-product-description {
    grid-column: 2;
    color: var(--cc-muted);
    line-height: 1.7;
  }

  body.page-product.cc-product-overview-open .cc-product-overview-actions {
    position: static;
    display: flex;
    align-items: stretch;
    gap: 12px;
  }

  body.page-product.cc-product-overview-open .cc-product-back-button,
  body.page-product.cc-product-overview-open .cc-mobile-customize-button {
    min-height: 50px;
  }

  body.page-product.cc-product-overview-open .cc-product-back-button {
    min-width: 190px;
  }

  body.page-product.cc-product-overview-open .cc-mobile-customize-button {
    min-width: 240px;
  }
}

/* Final catalog grid: four products on desktop, two on mobile. */
body .cc-product-grid:not(.cc-product-grid-empty),
body .cc-home-products-slot .products,
body .cc-home-products-slot .product_list,
body .cc-home-products-slot .js-product-list .products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
}

body .cc-home-products-slot .js-product,
body .cc-home-products-slot .product,
body .cc-product-card,
body .cc-home-products-slot .product-miniature,
body .cc-home-products-slot .product-miniature .thumbnail-container,
body .cc-home-products-slot article.product-miniature {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex-basis: auto !important;
}

@media (max-width: 920px) {
  body .cc-header .cc-main-menu {
    display: none !important;
  }

  body.cc-mobile-menu-open .cc-header .cc-main-menu {
    display: flex !important;
  }

  body .cc-product-grid:not(.cc-product-grid-empty),
  body .cc-home-products-slot .products,
  body .cc-home-products-slot .product_list,
  body .cc-home-products-slot .js-product-list .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body .cc-product-card,
  body .cc-home-products-slot .product-miniature,
  body .cc-home-products-slot .product-miniature .thumbnail-container,
  body .cc-home-products-slot article.product-miniature {
    height: 360px !important;
    min-height: 360px !important;
  }

  body .cc-product-card-image,
  body .cc-home-products-slot .product-miniature .product-thumbnail,
  body .cc-home-products-slot .product-miniature .product-thumbnail img {
    height: 175px !important;
  }

  body .cc-product-card-body,
  body .cc-home-products-slot .product-miniature .product-description {
    height: 185px !important;
    min-height: 185px !important;
    padding: 12px !important;
  }

  body .cc-product-card-title,
  body .cc-product-card-title a,
  body .cc-home-products-slot .product-miniature .product-title,
  body .cc-home-products-slot .product-miniature .product-title a {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

  body .cc-product-card-price,
  body .cc-home-products-slot .product-miniature .price {
    font-size: 19px !important;
  }

  body .cc-header-inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
    min-height: 76px;
  }

  body .cc-logo {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 210px);
  }

  body .cc-logo img,
  body .cc-logo-placeholder {
    max-height: 58px;
    min-height: 50px;
  }

  body .cc-header-actions {
    grid-column: 2;
    grid-row: 1;
    gap: 7px;
    min-width: 0;
  }

  body .cc-header-actions .cc-icon-button {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  body .cc-mobile-toggle {
    width: 68px;
    min-width: 68px;
    height: 40px;
    flex: 0 0 68px;
    padding: 0 12px;
    order: -1;
  }

  body .cc-header .cc-main-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 60;
    width: auto;
    max-width: none;
    padding: 8px 14px;
    overflow: auto;
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(4, 7, 17, 0.98) !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  }

  body .cc-header .cc-main-menu > *,
  body .cc-header .cc-main-menu #_desktop_top_menu,
  body .cc-header .cc-main-menu #_mobile_top_menu,
  body .cc-header .cc-main-menu .top-menu,
  body .cc-header .cc-main-menu ul {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body .cc-header .cc-main-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  body .cc-header .cc-main-menu a {
    display: block;
    width: 100%;
    padding: 13px 4px;
    overflow-wrap: anywhere;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff !important;
    font-size: 15px;
    line-height: 1.25;
    text-align: left;
  }

  body .cc-header .cc-main-menu li:last-child > a {
    border-bottom: 0;
  }

  body .cc-header .cc-main-menu .sub-menu,
  body .cc-header .cc-main-menu .popover {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    padding-left: 14px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.page-product.cc-product-overview-open .cc-product-page,
  body.page-product.cc-product-overview-open .cc-mobile-cart-bar {
    display: none !important;
  }

  body.page-product.cc-mobile-configurator-open .cc-product-page {
    display: flex !important;
  }
}

/* Product listing inspired by a compact personalised-gift catalogue. */
.cc-category-navigation {
  width: 100%;
  margin: -8px 0 24px;
  overflow: hidden;
}

.cc-category-navigation-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 4px 2px 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.cc-category-navigation-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid var(--cc-border);
  border-radius: 12px;
  color: var(--cc-text);
  background: #fff;
  box-shadow: 0 6px 16px rgba(22, 24, 33, 0.07);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.cc-category-navigation-link:hover,
.cc-category-navigation-link:focus,
.cc-category-navigation-link.is-current {
  border-color: rgba(255, 79, 216, 0.42);
  color: #fff;
  background: var(--cc-gradient);
}

.cc-category-navigation-link img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
}

body .cc-shop-results .cc-product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px 18px !important;
  align-items: start !important;
}

body .cc-shop-results .cc-product-card {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

body .cc-shop-results .cc-product-card-image {
  display: block !important;
  width: 100% !important;
  max-width: 260px !important;
  height: auto !important;
  max-height: 260px !important;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--cc-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(22, 24, 33, 0.08);
}

body .cc-shop-results .cc-product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 260px;
  max-height: 260px;
  object-fit: contain;
  background: #fff;
}

body .cc-shop-results .cc-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  padding: 13px 4px 0 !important;
  background: transparent;
}

body .cc-shop-results .cc-product-card-title {
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: var(--cc-text);
  font-size: 16px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body .cc-shop-results .cc-product-card-title a {
  color: inherit;
  font-size: inherit !important;
  font-weight: inherit;
  line-height: inherit !important;
}

body .cc-shop-results .cc-rating-line {
  min-height: 20px;
  color: #ffbf00;
  font-size: 15px;
  line-height: 1.2;
}

body .cc-shop-results .cc-rating-line span {
  color: var(--cc-muted);
  font-size: 13px;
}

body .cc-shop-results .cc-product-card-price {
  margin-top: 1px;
  color: var(--cc-text);
  font-size: 23px !important;
  font-weight: 700;
  line-height: 1.15;
}

body .cc-shop-results .cc-product-personalize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  margin-top: 5px;
  padding: 10px 12px;
  border: 1px solid rgba(123, 77, 255, 0.16);
  border-radius: 11px;
  color: #fff;
  background: var(--cc-gradient);
  box-shadow: 0 8px 18px rgba(123, 77, 255, 0.18);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}

body .cc-shop-results .cc-favorite-button {
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(22, 24, 33, 0.09);
  border-radius: 50%;
  color: var(--cc-text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 14px rgba(22, 24, 33, 0.10);
  font-size: 22px;
}

@media (max-width: 1180px) {
  body .cc-shop-results .cc-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 920px) {
  .cc-category-navigation {
    width: calc(100% + 12px);
    margin: -4px 0 18px;
  }

  .cc-category-navigation-track {
    gap: 8px;
    padding-right: 12px;
  }

  .cc-category-navigation-link {
    min-height: 40px;
    padding: 8px 13px;
    font-size: 13px;
  }

  body .cc-shop-results .cc-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 12px !important;
  }

  body .cc-shop-results .cc-product-card-title {
    min-height: 38px;
    font-size: 14px !important;
  }

  body .cc-shop-results .cc-product-card-price {
    font-size: 20px !important;
  }

  body .cc-shop-results .cc-product-personalize {
    min-height: 42px;
    padding: 9px 8px;
    font-size: 13px;
  }

  body .cc-shop-results .cc-favorite-button {
    top: 7px;
    right: 7px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  body .cc-shop-results .cc-product-grid {
    column-gap: 8px !important;
  }

  body .cc-shop-results .cc-product-personalize {
    gap: 5px;
    font-size: 12px;
  }
}

/* Return actions: same visual weight as Personaliser, distinct return colour. */
body.page-product .cc-product-overview-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px;
  width: 100%;
}

body.page-product .cc-product-back-button,
body.page-product .cc-mobile-configurator-close {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 79, 216, 0.48) !important;
  border-radius: 10px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #54269f 0%, #d026a7 100%) !important;
  box-shadow: 0 9px 24px rgba(181, 32, 145, 0.28) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

body.page-product .cc-product-back-button:hover,
body.page-product .cc-product-back-button:focus,
body.page-product .cc-mobile-configurator-close:hover,
body.page-product .cc-mobile-configurator-close:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #6734bd 0%, #ec35bf 100%) !important;
  box-shadow: 0 11px 28px rgba(181, 32, 145, 0.36) !important;
}

body.page-product .cc-mobile-customize-button {
  width: 100%;
  min-width: 0 !important;
}

.cc-global-category-nav {
  position: relative;
  z-index: 30;
  width: 100%;
  border-bottom: 1px solid var(--cc-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(22, 24, 33, 0.06);
}

.cc-global-category-nav[hidden] {
  display: none !important;
}

.cc-global-category-track {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.cc-global-category-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--cc-border);
  border-radius: 9px;
  color: var(--cc-text);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.cc-global-category-link:hover,
.cc-global-category-link:focus,
.cc-global-category-link.is-current {
  border-color: rgba(255, 79, 216, 0.40);
  color: #fff;
  background: var(--cc-gradient);
}

@media (max-width: 480px) {
  .cc-global-category-track {
    min-height: 48px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .cc-global-category-link {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }

  body.page-product .cc-product-overview-actions {
    gap: 8px;
  }

  body.page-product .cc-product-back-button,
  body.page-product .cc-mobile-configurator-close,
  body.page-product .cc-mobile-customize-button {
    min-height: 48px;
    padding-right: 9px;
    padding-left: 9px;
    font-size: 12px;
  }
}

/* Personalise actions: restrained premium treatment. */
body .cc-shop-results .cc-product-personalize,
body.page-product .cc-mobile-customize-button,
body.page-product [data-cc-configurator-open] {
  border: 1px solid #bcbcbc !important;
  color: #000 !important;
  background: #fff !important;
  box-shadow: 0 1px 18px rgba(255, 0, 239, 0.4) !important;
}

body .cc-shop-results .cc-product-personalize:hover,
body .cc-shop-results .cc-product-personalize:focus,
body.page-product .cc-mobile-customize-button:hover,
body.page-product .cc-mobile-customize-button:focus,
body.page-product [data-cc-configurator-open]:hover,
body.page-product [data-cc-configurator-open]:focus {
  border-color: #9f9f9f !important;
  color: #000 !important;
  background: #fff !important;
  box-shadow: 0 2px 22px rgba(255, 0, 239, 0.5) !important;
}

/* Exact catalogue card format requested. */
body .cc-shop-results .cc-product-grid {
  grid-template-columns: repeat(4, 228.883px) !important;
  justify-content: start !important;
}

body .cc-shop-results .cc-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 228.883px !important;
  max-width: 228.883px !important;
  height: 322.383px !important;
  min-height: 322.383px !important;
  padding: 8px !important;
  padding-bottom: 15px !important;
  overflow: hidden;
  border: 0;
  border-radius: 6px !important;
  background-color: #fff !important;
  box-shadow: 0 0 3px 0 rgba(0, 112, 255, 0.25) !important;
}

body .cc-shop-results .cc-product-card-image {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1 !important;
  border-radius: 5px;
}

body .cc-shop-results .cc-product-card-image img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

body .cc-shop-results .cc-product-card-body {
  gap: 2px;
  height: auto !important;
  min-height: 0 !important;
  padding: 3px 0 0 !important;
}

body .cc-shop-results .cc-product-card-title {
  min-height: 14px;
  max-height: 14px;
  font-size: 12px !important;
  line-height: 1.18 !important;
  -webkit-line-clamp: 1;
}

body .cc-shop-results .cc-rating-line {
  min-height: 12px;
  font-size: 11px;
}

body .cc-shop-results .cc-product-card-price {
  font-size: 17px !important;
}

body .cc-shop-results .cc-product-personalize {
  min-height: 28px;
  margin-top: auto;
  padding: 4px 8px;
  font-size: 11px;
}

@media (max-width: 1180px) and (min-width: 921px) {
  body .cc-shop-results .cc-product-grid {
    grid-template-columns: repeat(3, 228.883px) !important;
  }
}

@media (max-width: 920px) {
  body .cc-shop-results .cc-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body .cc-shop-results .cc-product-card {
    width: 100% !important;
    max-width: 228.883px !important;
    height: 322.383px !important;
    min-height: 322.383px !important;
    justify-self: center;
  }
}

/* Wiloo-inspired catalogue structure, using CreativColor colours only. */
body .cc-subcategory-showcase {
  margin: 0 0 24px;
}

body .cc-subcategory-showcase h2 {
  margin: 0 0 14px;
  color: var(--cc-text);
  font-size: 20px;
  font-weight: 600;
}

body .cc-subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 12px;
}

body .cc-subcategory-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 146px;
  padding: 8px;
  border: 1px solid #ececf2;
  border-radius: 6px;
  color: var(--cc-text);
  background: #fff;
  box-shadow: 0 0 5px 1px rgba(0, 112, 255, 0.16);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body .cc-subcategory-card:nth-child(2n) {
  box-shadow: 0 0 5px 1px rgba(255, 0, 239, 0.14);
}

body .cc-subcategory-card:hover,
body .cc-subcategory-card:focus {
  border-color: rgba(255, 0, 239, 0.34);
  color: var(--cc-text);
  box-shadow: 0 5px 18px rgba(0, 112, 255, 0.16), 0 3px 16px rgba(255, 0, 239, 0.12);
  transform: translateY(-2px);
}

body .cc-subcategory-image {
  display: grid;
  width: 100%;
  height: 92px;
  place-items: center;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

body .cc-subcategory-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body .cc-subcategory-card strong {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body .cc-listing-layout {
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

body .cc-shop-sidebar {
  position: sticky;
  top: 118px;
}

body .cc-shop-sidebar .cc-sidebar-panel {
  padding: 18px;
  border: 1px solid #ececf2;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 5px 1px rgba(0, 112, 255, 0.14);
}

body .cc-shop-results {
  min-width: 0;
}

body .cc-sort-wrapper .products-sort-order,
body .cc-sort-wrapper .select-title {
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: 0 0 3px rgba(255, 0, 239, 0.20);
}

@media (max-width: 920px) {
  body .cc-subcategory-showcase {
    margin-bottom: 18px;
    overflow: hidden;
  }

  body .cc-subcategory-grid {
    display: flex;
    gap: 10px;
    padding: 2px 2px 10px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  body .cc-subcategory-card {
    flex: 0 0 138px;
    min-height: 132px;
  }

  body .cc-subcategory-image {
    height: 80px;
  }

  body .cc-listing-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
