﻿:root {
      --primary: #0fa37f;
      --primary-dark: #0b7058;
      --secondary: #113a32;
      --text: #1f252b;
      --muted: #64707d;
      --border: #e5e8ec;
      --border-strong: #d8dde3;
      --bg: #f4f5f7;
      --soft: #edf8f4;
      --white: #ffffff;
      --danger: #d83333;
      --shadow: 0 14px 34px rgba(14, 39, 33, 0.08);
      --radius: 18px;
      --container: 1380px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      max-width: 100%;
      display: block;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button,
    input,
    select {
      font: inherit;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    .topbar {
      background: #0c2e27;
      color: #d9f6ed;
      font-size: 0.92rem;
    }

    .topbar-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      padding: 8px 0;
    }

    .topbar-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .site-header {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .header-inner {
      min-height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo a {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--secondary);
    }

    .logo-mark {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), #29c79f);
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 800;
      box-shadow: var(--shadow);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }

    .logo-title {
      font-size: 1.16rem;
      letter-spacing: -0.02em;
    }

    .logo-sub {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 600;
    }

    .main-nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .main-nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .main-nav a {
      color: #49505a;
      font-size: 0.98rem;
      font-weight: 600;
      transition: 0.2s ease;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--primary-dark);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      position: relative;
    }

    .icon-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: 0.2s ease;
      position: relative;
    }

    .icon-btn:hover {
      background: var(--bg);
    }

    .cart-btn {
      position: relative;
      overflow: visible;
    }

    .cart-icon {
      font-size: 18px;
      line-height: 1;
    }

    .cart-count {
      position: absolute;
      top: -8px;
      right: -8px;
      min-width: 22px;
      height: 22px;
      padding: 0 6px;
      border-radius: 999px;
      background: #ff4d4f;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      border: 2px solid #fff;
    }

    .header-search-box {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      width: min(380px, calc(100vw - 24px));
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px;
      box-shadow: var(--shadow);
      display: none;
      z-index: 2000;
    }

    .header-search-box.active {
      display: block;
    }

    .header-search-form {
      display: flex;
      gap: 8px;
    }

    .header-search-form input {
      flex: 1;
      min-width: 0;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 11px 12px;
      outline: none;
      background: #fff;
    }

    .header-search-form input:focus {
      border-color: var(--primary);
    }

    .header-search-form button {
      border: none;
      border-radius: 10px;
      padding: 11px 14px;
      background: var(--primary);
      color: #fff;
      font-weight: 800;
      cursor: pointer;
    }

    .header-search-form button:hover {
      background: var(--primary-dark);
    }

    .header-search-message {
      margin-top: 10px;
      color: #c0392b;
      font-size: .9rem;
      display: none;
    }

    .phone {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 0.95rem;
      white-space: nowrap;
      padding: 0 4px;
    }

    .login-btn {
      padding: 11px 18px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: #fff;
      color: #4e555f;
      font-weight: 600;
      transition: 0.2s ease;
    }

    .login-btn:hover {
      background: var(--bg);
    }

    .logout-session-btn {
      cursor: pointer;
      font-family: inherit;
    }

    .shop-hero {
      background:
        radial-gradient(circle at top left, rgba(15,163,127,.10), transparent 26%),
        linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
      border-bottom: 1px solid var(--border);
    }

    .shop-hero-inner {
      padding: 44px 0 36px;
    }

    .breadcrumbs {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.92rem;
      margin-bottom: 18px;
    }

    .breadcrumbs a:hover {
      color: var(--primary-dark);
    }

    .shop-hero h1 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: #15251f;
      margin-bottom: 14px;
      max-width: 920px;
    }

    .shop-hero p {
      max-width: 820px;
      color: var(--muted);
      font-size: 1.04rem;
    }

    .shop-section {
      padding: 34px 0 70px;
      background: var(--bg);
    }

    .shop-layout {
      display: grid;
      grid-template-columns: 310px 1fr;
      gap: 28px;
      align-items: start;
    }

    .sidebar {
      position: sticky;
      top: 112px;
    }

    .sidebar-card {
      background: #fff;
      border: 1px solid #d9dfe4;
      border-radius: 24px;
      padding: 28px;
      box-shadow: none;
      margin-bottom: 22px;
    }

    .sidebar-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
      font-size: 1.12rem;
      font-weight: 800;
      color: #1d2328;
    }

    .sidebar-list {
      list-style: none;
      display: grid;
      gap: 18px;
    }

    .sidebar-list a,
    .sidebar-list button {
      color: #425161;
      font-size: 1rem;
      font-weight: 500;
      background: transparent;
      border: 0;
      padding: 0;
      text-align: left;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .sidebar-list a:hover,
    .sidebar-list a.active,
    .sidebar-list button:hover,
    .sidebar-list button.active {
      color: #16816e;
      font-weight: 800;
    }

    .range-price-box {
      display: grid;
      gap: 18px;
    }

    .slider-values {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .slider-values span {
      min-width: 120px;
      text-align: center;
      padding: 14px;
      border-radius: 16px;
      background: #f7f8fa;
      border: 1px solid #dfe5ea;
      font-weight: 800;
      color: #24303a;
      font-size: 0.98rem;
    }

    .range-slider {
      position: relative;
      height: 42px;
      display: flex;
      align-items: center;
    }

    .slider-track,
    .slider-range {
      position: absolute;
      height: 6px;
      border-radius: 999px;
      top: 50%;
      transform: translateY(-50%);
    }

    .slider-track {
      width: 100%;
      background: #d9e1e6;
      z-index: 1;
    }

    .slider-range {
      background: var(--primary);
      z-index: 2;
      left: 0;
      width: 100%;
    }

    .range-slider input[type="range"] {
      position: absolute;
      width: 100%;
      appearance: none;
      -webkit-appearance: none;
      background: none;
      pointer-events: none;
      z-index: 3;
    }

    .range-slider input[type="range"]::-webkit-slider-thumb {
      appearance: none;
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: #fff;
      border: 3px solid var(--primary);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      cursor: pointer;
      pointer-events: auto;
    }

    .range-slider input[type="range"]::-moz-range-thumb {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid var(--primary);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      cursor: pointer;
      pointer-events: auto;
    }

    #rangeMin {
      z-index: 4;
    }

    #rangeMax {
      z-index: 5;
    }

    .price-summary {
      padding: 18px;
      border-radius: 16px;
      background: #f7f8fa;
      border: 1px solid #e2e6ea;
      font-size: 0.96rem;
      color: var(--muted);
      line-height: 1.55;
    }

    .filter-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn-filter {
      flex: 1;
      min-width: 110px;
      border: none;
      border-radius: 16px;
      padding: 12px 14px;
      font-weight: 800;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .btn-filter.secondary {
      background: #fff;
      border: 1px solid #dce2e7;
      color: #465364;
      min-height: 56px;
    }

    .btn-filter.secondary:hover {
      background: var(--bg);
    }

    .quick-filters {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .quick-filters-left {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .pill-filter {
      min-height: 68px;
      padding: 0 28px;
      border-radius: 22px;
      border: 1px solid #d9dfe4;
      background: #fff;
      color: #2f3b47;
      font-weight: 800;
      font-size: 0.98rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.22s ease;
    }

    .pill-filter:hover {
      border-color: #b7d8cf;
      background: #fbfefd;
    }

    .pill-filter.active {
      color: #11816d;
      border-color: #bfe5db;
      box-shadow: inset 0 -3px 0 #19b394;
    }

    .availability-note {
      color: #6b7280;
      font-size: 1rem;
      white-space: nowrap;
    }

    .content-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .outlet-style-top {
      margin-bottom: 18px;
    }

    .shop-title {
      font-size: 1.7rem;
      font-weight: 800;
      color: #1a2025;
      margin-bottom: 8px;
    }

    .results-text {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .toolbar-outlet {
      display: grid;
      grid-template-columns: minmax(280px, 620px) 300px;
      gap: 16px;
      align-items: center;
      margin-bottom: 24px;
    }

    .outlet-searchbar,
    .outlet-sort-box {
      min-height: 68px;
      border-radius: 22px;
      border: 1px solid #dbe1e6;
      background: #fff;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 20px;
    }

    .outlet-searchbar {
      justify-content: space-between;
    }

    .outlet-searchbar input {
      border: 0;
      outline: none;
      background: transparent;
      width: 100%;
      font-size: 1rem;
      color: #374151;
    }

    .outlet-searchbar button {
      border: 0;
      background: transparent;
      cursor: pointer;
      font-size: 1.15rem;
    }

    .outlet-sort-box {
      color: #374151;
      font-size: 1rem;
    }

    .outlet-sort-box strong {
      font-weight: 700;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px 18px;
    }

    .product-card {
      border: 1px solid var(--border-strong);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      position: relative;
      box-shadow: 0 10px 24px rgba(14, 39, 33, 0.05);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 36px rgba(14, 39, 33, 0.10);
    }

    .product-media {
      position: relative;
      aspect-ratio: 4 / 4;
      overflow: hidden;
      background: #eff3f2;
    }

    .product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease, opacity 0.2s ease;
    }

    .product-card:hover .product-image {
      transform: scale(1.04);
    }

    .ribbon {
      position: absolute;
      top: 18px;
      left: -36px;
      transform: rotate(-45deg);
      background: #0df09c;
      color: #08382a;
      font-size: 12px;
      font-weight: 800;
      padding: 8px 40px;
      z-index: 3;
      letter-spacing: 0.01em;
      white-space: nowrap;
    }

    .ribbon.red {
      background: var(--danger);
      color: #fff;
    }

    .wishlist {
      position: absolute;
      top: 12px;
      right: 12px;
      min-width: 82px;
      height: 36px;
      padding: 0 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      display: grid;
      place-items: center;
      font-size: 0.76rem;
      font-weight: 900;
      text-transform: uppercase;
      z-index: 3;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(0,0,0,0.05);
    }
    .wishlist{
  cursor:pointer;
  transition:.2s;
}

.wishlist:hover{
  transform:translateY(-1px);
}

    .product-colors {
      position: absolute;
      left: 14px;
      bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      z-index: 3;
      flex-wrap: wrap;
    }

    .brand-mark-small {
      color: var(--primary-dark);
      font-size: 11px;
      font-weight: 800;
      margin-right: 6px;
      text-shadow: 0 1px 2px rgba(255,255,255,0.85);
      background: rgba(255,255,255,0.86);
      padding: 4px 8px;
      border-radius: 999px;
    }

    .color-square {
      width: 16px;
      height: 16px;
      border-radius: 4px;
      border: 1px solid rgba(0,0,0,0.12);
      display: inline-block;
      box-shadow: 0 1px 2px rgba(0,0,0,0.08);
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .color-square:hover {
      transform: scale(1.12);
    }

    .color-square.active {
      transform: scale(1.12);
      border-color: #0fa37f;
      box-shadow: 0 0 0 2px rgba(15,163,127,0.18);
    }

    .c1 { background: #ffffff; }
    .c2 { background: #111111; }
    .c3 { background: #c8a12a; }
    .c4 { background: #f1f1f1; }
    .c5 { background: #73797d; }
    .c6 { background: #d8a1a9; }

    .product-info {
      padding: 16px 14px 18px;
    }

    .product-category {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--primary-dark);
      background: var(--soft);
      border-radius: 999px;
      padding: 6px 10px;
      margin-bottom: 10px;
    }

    .product-name {
      font-size: 1rem;
      line-height: 1.4;
      margin-bottom: 12px;
      color: #1f252b;
      min-height: 48px;
      font-weight: 700;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .price-current {
      font-size: 1.06rem;
      font-weight: 800;
      color: #111;
    }

    .price-old {
      font-size: 0.9rem;
      color: #757575;
      text-decoration: line-through;
    }

    .product-meta {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 14px;
      min-height: 42px;
    }

    .product-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn-card {
      flex: 1;
      min-width: 120px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 11px 14px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.92rem;
      transition: 0.2s ease;
    }

    .btn-card.primary {
      background: var(--primary);
      color: #fff;
    }

    .btn-card.primary:hover {
      background: var(--primary-dark);
    }

    .btn-card.secondary {
      border: 1px solid var(--border);
      background: #fff;
      color: #3f4b56;
    }

    .btn-card.secondary:hover {
      background: var(--bg);
    }

    .hidden-card {
      display: none !important;
    }

    .pagination-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin: 30px 0 6px;
    }

    .pagination-pages {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .pagination-btn {
      min-width: 44px;
      min-height: 44px;
      border: 1px solid var(--border-strong);
      border-radius: 12px;
      background: #fff;
      color: #34414d;
      font-weight: 800;
      cursor: pointer;
      padding: 0 14px;
      transition: 0.2s ease;
    }

    .pagination-btn:hover:not(:disabled),
    .pagination-btn.active {
      border-color: var(--primary);
      background: var(--primary);
      color: #fff;
    }

    .pagination-btn:disabled {
      cursor: not-allowed;
      opacity: 0.45;
    }

    .empty-state {
      display: none;
      margin-top: 10px;
      padding: 28px;
      border: 1px dashed var(--border-strong);
      border-radius: 18px;
      background: #fff;
      color: var(--muted);
      text-align: center;
    }

    .shop-copy {
      margin-top: 36px;
      padding: 26px;
      border-radius: 18px;
      background: #fbfcfd;
      border: 1px solid var(--border);
    }

    .shop-copy h2 {
      font-size: 1.35rem;
      margin-bottom: 10px;
      color: #182126;
    }

    .shop-copy p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .site-footer {
      background: #0f1514;
      color: #d1d7d5;
      padding: 58px 0 28px;
      margin-top: 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 28px;
      margin-bottom: 36px;
    }

    .footer-brand p {
      margin-top: 16px;
      color: #99a3a0;
      max-width: 320px;
    }

    .footer-title {
      color: #fff;
      margin-bottom: 14px;
      font-size: 1rem;
      font-weight: 700;
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: #aab4b1;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: #95a09d;
      font-size: .94rem;
    }

    .legacy-contact-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #45c655;
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 26px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.18);
      z-index: 100;
    }

    @media (max-width: 1280px) {
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .toolbar-outlet {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 1024px) {
      .main-nav {
        display: none;
      }

      .shop-layout {
        grid-template-columns: 1fr;
      }

      .sidebar {
        position: static;
      }

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(var(--container), calc(100% - 20px));
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .header-inner {
        padding: 14px 0;
        min-height: auto;
      }

      .header-right .phone,
      .header-right .login-btn {
        display: none;
      }

      .content-top {
        flex-direction: column;
      }

      .quick-filters-left {
        flex-direction: column;
        width: 100%;
      }

      .pill-filter {
        width: 100%;
        justify-content: center;
      }

      .availability-note {
        white-space: normal;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

/* Premium storefront finish */
body{
  background:
    radial-gradient(circle at 12% 0%, rgba(15,163,127,.09), transparent 28%),
    linear-gradient(180deg, #f7faf8 0%, #eef4f2 100%);
}

.shop-hero{
  background:
    linear-gradient(115deg, rgba(4,28,24,.9), rgba(18,86,70,.54) 52%, rgba(245,247,244,.08)),
    url("assets/premium/shop-hero.jpg") center / cover no-repeat;
  color:#fff;
  border-bottom:0;
}

.shop-hero h1{
  color:#fff;
}

.shop-hero p,
.shop-hero .breadcrumbs{
  color:rgba(255,255,255,.78);
}

.shop-hero .breadcrumbs a:hover{
  color:#fff;
}

.sidebar-card,
.outlet-searchbar,
.outlet-sort-box,
.shop-copy{
  border-color:rgba(13,63,52,.12);
  box-shadow:0 18px 42px rgba(15,35,48,.08);
}

.pill-filter{
  border-radius:999px;
  box-shadow:0 10px 24px rgba(15,35,48,.05);
}

.pill-filter.active{
  background:#0c2e27;
  color:#fff;
  border-color:#0c2e27;
  box-shadow:0 16px 32px rgba(12,46,39,.18);
}

.products-grid{
  gap:26px 22px;
}

.product-card{
  border-color:rgba(13,63,52,.12);
  border-radius:22px;
  box-shadow:0 18px 42px rgba(15,35,48,.08);
}

.product-card:hover{
  transform:translateY(-7px);
  box-shadow:0 28px 64px rgba(15,35,48,.14);
}

.product-media{
  background:#eef4f2;
}

.product-info{
  padding:20px 18px 22px;
}

.product-category{
  text-transform:uppercase;
  letter-spacing:.04em;
}

.price-current{
  color:#0c2e27;
  font-size:1.16rem;
}

.btn-card.primary,
.btn-primary{
  background:#0c2e27;
}

.btn-card.primary:hover,
.btn-primary:hover{
  background:#0f705c;
}

.btn-card.secondary,
.btn-secondary{
  border-color:rgba(13,63,52,.14);
  box-shadow:0 8px 18px rgba(15,35,48,.04);
}

.legacy-contact-float{
  background:linear-gradient(135deg,#65df55,#37c86a);
  box-shadow:0 18px 38px rgba(0,0,0,.20);
}
/* Codigo: muestra el logo oficial de EspacioDucha en cabeceras y pies. */
.logo-image,
.brand-logo-image,
.ed-brand-logo-image,
.payment-logo-image {
  display: block;
  width: clamp(118px, 13vw, 168px);
  height: auto;
  max-height: 68px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-brand .logo-image {
  width: 158px;
  max-height: 72px;
}

.payment-logo-image {
  width: 150px;
  max-height: 78px;
}

.logo a,
.brand,
.ed-brand {
  min-width: 0;
}

@media (max-width: 640px) {
  .logo-image,
  .brand-logo-image,
  .ed-brand-logo-image {
    width: 122px;
    max-height: 56px;
  }
}

.product-name{
  min-height:3.2em;
}

.product-meta{
  min-height:3.3em;
}

.premium-card-notes{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:14px 0 12px;
}

.premium-card-notes span{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#f4faf8;
  border:1px solid rgba(13,63,52,.1);
  color:#31554b;
  font-size:.78rem;
  font-weight:800;
}

.shop-hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.shop-hero-points span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 13px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  font-weight:900;
  backdrop-filter:blur(6px);
}

.collection-intro{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  margin:0 0 24px;
  padding:24px;
  border:1px solid rgba(13,63,52,.12);
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 42px rgba(15,35,48,.08);
}

.collection-intro h2{
  color:#0c2e27;
  margin:4px 0 6px;
  font-size:1.45rem;
}

.collection-intro p{
  color:#52645e;
  max-width:720px;
}

.card-kicker{
  display:inline-flex;
  color:#0f705c;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.premium-buying-guide{
  background:#fff;
}

.buying-guide-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:18px 0;
}

.buying-guide-grid div{
  padding:16px;
  border:1px solid rgba(13,63,52,.1);
  border-radius:16px;
  background:#f7fbfa;
}

.buying-guide-grid strong,
.buying-guide-grid span{
  display:block;
}

.buying-guide-grid strong{
  color:#0c2e27;
  margin-bottom:5px;
}

.buying-guide-grid span{
  color:#52645e;
  font-size:.92rem;
}

.shop-advisory-panel{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
  align-items:center;
  margin:24px 0;
  border:1px solid rgba(13,63,52,.12);
  border-radius:22px;
  background:#fff;
  box-shadow:0 20px 48px rgba(14,39,33,.08);
  padding:26px;
}

.shop-advisory-copy h2{
  margin:8px 0 10px;
  color:#0c2e27;
  line-height:1.12;
}

.shop-advisory-copy p{
  margin:0;
  color:#52645e;
}

.shop-timeline-grid,
.shop-project-guides{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.shop-timeline-grid article,
.shop-project-guides article{
  border:1px solid rgba(13,63,52,.12);
  border-radius:16px;
  background:#f8fbfa;
  padding:16px;
}

.shop-timeline-grid strong,
.shop-timeline-grid span,
.shop-project-guides span,
.shop-project-guides h3,
.shop-project-guides p{
  display:block;
}

.shop-timeline-grid strong{
  color:#0c2e27;
  margin-bottom:8px;
}

.shop-timeline-grid span,
.shop-project-guides p{
  color:#52645e;
  font-size:.92rem;
  line-height:1.45;
  margin:0;
}

.shop-project-guides{
  margin:20px 0 6px;
}

.shop-project-guides article{
  background:#fff;
  box-shadow:0 14px 30px rgba(14,39,33,.06);
}

.shop-project-guides span{
  color:#0f705c;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:8px;
}

.shop-project-guides h3{
  color:#0c2e27;
  margin:0 0 8px;
  line-height:1.2;
  font-size:1.05rem;
}

.comparison-strip{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin:0 0 22px;
}

.comparison-strip article{
  border:1px solid rgba(13,63,52,.12);
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 24px rgba(15,35,48,.06);
  padding:16px;
}

.comparison-strip strong,
.comparison-strip span{
  display:block;
}

.comparison-strip strong{
  color:#0c2e27;
  margin-bottom:6px;
}

.comparison-strip span{
  color:#52645e;
  font-size:.92rem;
  line-height:1.4;
}

.compare-panel{
  margin:0 0 22px;
  border:1px solid rgba(13,63,52,.12);
  border-radius:16px;
  background:#fff;
  box-shadow:0 14px 34px rgba(15,35,48,.08);
  padding:18px;
}

.compare-heading{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  margin-bottom:14px;
}

.compare-heading strong{
  display:block;
  color:#0c2e27;
  font-size:1.05rem;
}

.compare-heading button{
  border:1px solid rgba(13,63,52,.14);
  border-radius:12px;
  background:#f7fbfa;
  color:#0c2e27;
  min-height:38px;
  padding:0 12px;
  font-weight:900;
  cursor:pointer;
}

.compare-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.compare-card{
  position:relative;
  display:grid;
  grid-template-columns:78px minmax(0,1fr);
  gap:10px 12px;
  align-items:center;
  border:1px solid rgba(13,63,52,.1);
  border-radius:14px;
  background:#f8fbfa;
  padding:12px;
}

.compare-card button{
  position:absolute;
  top:8px;
  right:8px;
  width:28px;
  height:28px;
  border:0;
  border-radius:50%;
  background:#0c2e27;
  color:#fff;
  cursor:pointer;
  font-weight:900;
}

.compare-card img{
  width:78px;
  height:78px;
  object-fit:cover;
  border-radius:12px;
  grid-row:1 / span 4;
}

.compare-card strong,
.compare-card span,
.compare-card small,
.compare-card a{
  min-width:0;
}

.compare-card strong{
  color:#0c2e27;
  padding-right:24px;
}

.compare-card span{
  color:#0f705c;
  font-weight:900;
}

.compare-card small{
  color:#52645e;
}

.compare-card a{
  color:#0c2e27;
  font-weight:900;
}

.btn-card.compare{
  background:#f7fbfa;
  color:#0c2e27;
  border:1px solid rgba(13,63,52,.14);
}

.btn-card.compare.active{
  background:#0c2e27;
  color:#fff;
}

@media(max-width:760px){
  .collection-intro{
    align-items:flex-start;
    flex-direction:column;
  }

  .comparison-strip{
    grid-template-columns:1fr;
  }

  .compare-grid,
  .shop-timeline-grid,
  .shop-project-guides{
    grid-template-columns:1fr;
  }

  .shop-advisory-panel{
    grid-template-columns:1fr;
  }

  .buying-guide-grid{
    grid-template-columns:1fr;
  }
}

.product-card-skeleton{
  pointer-events:none;
}

.skeleton-media,
.skeleton-line,
.skeleton-actions span{
  display:block;
  border-radius:14px;
  background:linear-gradient(90deg,#eef3f1 0%,#f8fbfa 48%,#eef3f1 100%);
  background-size:220% 100%;
  animation:skeletonPulse 1.4s ease-in-out infinite;
}

.skeleton-media{
  aspect-ratio:1 / 1;
}

.skeleton-line{
  height:14px;
  margin-bottom:12px;
}

.skeleton-line.short{
  width:42%;
}

.skeleton-line.title{
  height:26px;
  width:88%;
}

.skeleton-line.tiny{
  width:56%;
}

.skeleton-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:18px;
}

.skeleton-actions span{
  height:42px;
}

.premium-empty-message{
  grid-column:1 / -1;
  display:grid;
  gap:6px;
  padding:30px;
  border:1px solid rgba(13,63,52,.12);
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 38px rgba(15,35,48,.08);
}

.premium-empty-message strong{
  color:#0c2e27;
  font-size:1.15rem;
}

.premium-empty-message span{
  color:#64707d;
}

.facet-options{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}

.facet-chip{
  min-height:38px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(13,63,52,.14);
  background:#fff;
  color:#334155;
  font-size:.88rem;
  font-weight:900;
  cursor:pointer;
}

.facet-chip:hover,
.facet-chip.active{
  border-color:#0f705c;
  background:#e8f8f3;
  color:#0c6f5a;
}

.decision-assistant{
  background:
    linear-gradient(180deg, #0c2e27, #123f35);
  color:#fff;
  border-color:rgba(255,255,255,.14);
}

.decision-assistant .sidebar-title,
.decision-assistant p{
  color:#fff;
}

.decision-assistant p{
  margin:0 0 16px;
  color:rgba(255,255,255,.78);
}

.assistant-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}

.assistant-options button{
  min-height:42px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.assistant-options button:hover,
.assistant-options button.active{
  background:#fff;
  color:#0c2e27;
}

.assistant-result{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.88);
  font-size:.92rem;
}

.assistant-result a{
  color:#fff;
  font-weight:900;
  text-decoration:underline;
}

.assistant-wizard{
  margin-top:14px;
  display:grid;
  gap:10px;
}

.assistant-wizard label{
  display:grid;
  gap:6px;
  color:rgba(255,255,255,.84);
  font-size:.82rem;
  font-weight:900;
}

.assistant-wizard select{
  width:100%;
  min-height:40px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:#fff;
  color:#0c2e27;
  font-weight:800;
  padding:0 10px;
}

.assistant-wizard button{
  min-height:42px;
  border:0;
  border-radius:12px;
  background:#fff;
  color:#0c2e27;
  font-weight:950;
  cursor:pointer;
}

.assistant-wizard button:hover{
  background:#e8f8f3;
}

@keyframes skeletonPulse{
  0%{background-position:100% 0}
  100%{background-position:-100% 0}
}

@media (max-width: 760px) {
  .shop-hero-inner {
    padding: 34px 0 28px;
  }

  .shop-hero h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
    max-width: 11ch;
  }

  .shop-hero p {
    font-size: 1rem;
  }

  .shop-section {
    padding: 24px 0 52px;
  }

  .shop-layout {
    gap: 18px;
  }

  .sidebar-card {
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 16px;
  }

  .sidebar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sidebar-list a,
  .sidebar-list button {
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid rgba(13,63,52,.12);
    border-radius: 12px;
    background: #fbfdfc;
    font-size: .92rem;
  }

  .slider-values {
    flex-direction: column;
    align-items: stretch;
  }

  .slider-values span {
    min-width: 0;
    width: 100%;
  }

  .quick-filters {
    gap: 12px;
    margin-bottom: 18px;
  }

  .quick-filters-left {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .pill-filter {
    width: 100%;
    min-height: 50px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: .9rem;
    text-align: center;
  }

  .toolbar-outlet {
    gap: 10px;
    margin-bottom: 18px;
  }

  .outlet-searchbar,
  .outlet-sort-box {
    min-height: 54px;
    border-radius: 16px;
    padding: 0 14px;
  }

  .products-grid {
    gap: 16px;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-info {
    padding: 16px;
  }

  .product-name {
    min-height: auto;
  }

  .product-meta {
    min-height: auto;
  }

  .product-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-card {
    min-height: 46px;
  }

  .wishlist {
    min-width: 70px;
    height: 32px;
    font-size: .68rem;
  }

  .comparison-dock {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 420px) {
  .quick-filters-left,
  .sidebar-list {
    grid-template-columns: 1fr;
  }

  .breadcrumbs {
    font-size: .86rem;
  }

  .shop-title {
    font-size: 1.38rem;
  }

  .ribbon {
    left: -42px;
    font-size: 10px;
    padding: 7px 38px;
  }
}
