/* Cygnus OC3 Theme
   Mobile-first design foundation v0.1
*/

:root {
  --cygnus-accent: #13bfb1;
  --cygnus-accent-hover: #35e7d8;
  --cygnus-text: #171a1d;
  --cygnus-muted: #6d747a;
  --cygnus-border: #e8ecee;
  --cygnus-bg: #f7f9f9;
  --cygnus-surface: #ffffff;
  --cygnus-radius: 14px;
  --cygnus-radius-small: 9px;
  --cygnus-container: 1280px;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cygnus-bg);
  color: var(--cygnus-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--cygnus-text);
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

a:hover,
a:focus {
  color: var(--cygnus-accent);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--cygnus-container);
}

/* Top utility bar */
#top {
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--cygnus-border);
  min-height: 38px;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

#top .container {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Main header */
header {
  background: #fff;
  border-bottom: 1px solid var(--cygnus-border);
  padding: 14px 0;
}

#logo {
  margin: 0;
}

#logo img {
  max-height: 54px;
  width: auto;
}

/* Search */
#search {
  margin-bottom: 0;
}

#search .form-control {
  height: 46px;
  background: #f4f6f6;
  border: 1px solid transparent;
  border-radius: var(--cygnus-radius-small) 0 0 var(--cygnus-radius-small);
  box-shadow: none;
  padding-left: 16px;
}

#search .form-control:focus {
  background: #fff;
  border-color: var(--cygnus-accent);
  box-shadow: none;
}

#search .btn {
  height: 46px;
  min-width: 48px;
  background: #f4f6f6;
  color: var(--cygnus-text);
  border: 1px solid transparent;
  border-left: 0;
  border-radius: 0 var(--cygnus-radius-small) var(--cygnus-radius-small) 0;
  box-shadow: none;
}

#search .btn:hover {
  background: var(--cygnus-accent);
  color: #fff;
}

/* Cart */
#cart {
  margin-bottom: 0;
}

#cart > .btn {
  min-height: 46px;
  background: var(--cygnus-text);
  color: #fff;
  border: 0;
  border-radius: var(--cygnus-radius-small);
  box-shadow: none;
  text-shadow: none;
}

#cart > .btn:hover,
#cart.open > .btn {
  background: var(--cygnus-accent);
  color: #fff;
}

/* Main navigation */
#menu {
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--cygnus-border);
  border-radius: 0;
  margin-bottom: 24px;
  min-height: 48px;
}

#menu .nav > li > a {
  color: var(--cygnus-text);
  font-weight: 600;
  text-shadow: none;
  padding: 15px 18px;
}

#menu .nav > li > a:hover,
#menu .nav > li.open > a {
  background: transparent;
  color: var(--cygnus-accent);
}

/* Page headings */
h1,
h2,
h3,
h4 {
  color: var(--cygnus-text);
  font-weight: 650;
  letter-spacing: -.02em;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  border: 0;
  padding: 4px 0 14px;
  margin-bottom: 12px;
  font-size: 13px;
}

/* Buttons */
.btn {
  border-radius: var(--cygnus-radius-small);
  box-shadow: none;
  text-shadow: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--cygnus-accent);
  border-color: var(--cygnus-accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #10aa9e;
  border-color: #10aa9e;
  color: #fff;
}

/* Product cards */
.product-thumb {
  height: 100%;
  overflow: hidden;
  background: var(--cygnus-surface);
  border: 1px solid var(--cygnus-border);
  border-radius: var(--cygnus-radius);
  box-shadow: none;
  margin-bottom: 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-thumb:hover {
  transform: translateY(-2px);
  border-color: #dbe2e3;
  box-shadow: 0 10px 30px rgba(17, 31, 35, .07);
}

.product-thumb .image {
  background: #fff;
  padding: 12px;
}

.product-thumb .image img {
  border-radius: 10px;
}

.product-thumb .caption {
  min-height: 150px;
  padding: 16px;
}

.product-thumb h4 {
  font-size: 16px;
  line-height: 1.35;
  margin-top: 0;
}

.product-thumb .price {
  color: var(--cygnus-text);
  font-size: 18px;
  font-weight: 700;
}

.product-thumb .price-old {
  color: #9aa0a4;
  font-size: 13px;
}

.product-thumb .button-group {
  display: flex;
  background: #fff;
  border: 0;
  padding: 0 12px 12px;
}

.product-thumb .button-group button {
  background: #f3f6f6;
  color: var(--cygnus-text);
  border: 0;
  min-height: 42px;
}

.product-thumb .button-group button:first-child {
  flex: 1;
  background: var(--cygnus-accent);
  color: #fff;
  border-radius: var(--cygnus-radius-small);
}

.product-thumb .button-group button:first-child:hover {
  background: #10aa9e;
}

/* Generic content surfaces */
.panel,
.well,
.list-group {
  border-color: var(--cygnus-border);
  border-radius: var(--cygnus-radius);
  box-shadow: none;
}

.form-control {
  border-color: #dfe4e5;
  border-radius: var(--cygnus-radius-small);
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--cygnus-accent);
  box-shadow: 0 0 0 2px rgba(19, 191, 177, .12);
}

/* Footer */
footer {
  background: #15191b;
  color: #aeb6ba;
  border: 0;
  margin-top: 48px;
  padding-top: 44px;
  padding-bottom: 28px;
}

footer h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

footer a {
  color: #bdc5c8;
}

footer a:hover {
  color: var(--cygnus-accent-hover);
}

/* Mobile first refinements */
@media (max-width: 767px) {
  body {
    font-size: 14px;
    padding-bottom: 8px;
  }

  #top {
    display: none;
  }

  header {
    padding: 10px 0;
  }

  #logo {
    text-align: left;
    margin-bottom: 10px;
  }

  #logo img {
    max-height: 40px;
  }

  #search {
    margin-bottom: 10px;
  }

  #menu {
    margin-bottom: 16px;
  }

  #menu .navbar-header {
    padding: 0 10px;
  }

  #menu .navbar-toggle {
    float: none;
    width: 100%;
    margin: 7px 0;
    background: #f4f6f6;
    border: 0;
    color: var(--cygnus-text);
    text-align: left;
    border-radius: var(--cygnus-radius-small);
  }

  #menu .nav > li > a {
    padding: 13px 18px;
  }

  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 21px;
  }

  .product-layout {
    padding-left: 6px;
    padding-right: 6px;
  }

  .product-thumb {
    margin-bottom: 12px;
    border-radius: 11px;
  }

  .product-thumb .image {
    padding: 7px;
  }

  .product-thumb .caption {
    min-height: 125px;
    padding: 11px;
  }

  .product-thumb h4 {
    font-size: 14px;
  }

  .product-thumb .description {
    display: none;
  }

  .product-thumb .price {
    font-size: 16px;
  }

  .product-thumb .button-group {
    padding: 0 8px 8px;
  }

  .product-thumb .button-group button {
    min-height: 39px;
  }

  footer {
    margin-top: 30px;
    padding-top: 30px;
  }
}


/* =========================================================
   CYGNUS HEADER v0.2
   ========================================================= */

.cy-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--cygnus-border);
  padding: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cy-header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.cy-brand {
  flex: 0 0 auto;
}

.cy-brand a {
  display: block;
}

.cy-brand img {
  display: block;
  width: auto;
  max-width: 175px;
  max-height: 48px;
}

.cy-brand-text {
  font-size: 24px;
  font-weight: 700;
}

/* Desktop navigation */

.cy-desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.cy-desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cygnus-text);
  font-size: 14px;
  font-weight: 650;
}

.cy-desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--cygnus-accent);
  transition: right .2s ease;
}

.cy-desktop-nav a:hover::after {
  right: 0;
}

/* Search */

.cy-search-slot {
  flex: 1 1 320px;
  min-width: 180px;
  max-width: 420px;
  margin-left: auto;
}

.cy-search-slot #search {
  width: 100%;
}

.cy-search-slot #search .form-control {
  height: 44px;
  border-radius: 22px 0 0 22px;
  padding-left: 18px;
}

.cy-search-slot #search .btn {
  height: 44px;
  border-radius: 0 22px 22px 0;
}

/* Right-side actions */

.cy-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
}

.cy-header-action {
  height: 44px;
  min-width: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  background: transparent;
  color: var(--cygnus-text);

  border: 1px solid transparent;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
}

button.cy-header-action {
  appearance: none;
  -webkit-appearance: none;
}

.cy-header-action:hover,
.cy-header-action:focus {
  background: #f3f6f6;
  border-color: var(--cygnus-border);
  color: var(--cygnus-accent);
  outline: none;
}

.cy-account {
  position: relative;
}

.cy-account .dropdown-menu {
  min-width: 205px;
  margin-top: 10px;
  padding: 7px;
  border: 1px solid var(--cygnus-border);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(17,31,35,.12);
}

.cy-account .dropdown-menu > li > a {
  padding: 9px 12px;
  border-radius: 7px;
}

.cy-account .dropdown-menu > li > a:hover {
  background: #f3f6f6;
  color: var(--cygnus-accent);
}

/* Preserve stock OC3 cart functionality */

.cy-cart-slot {
  min-width: 44px;
}

.cy-cart-slot #cart {
  margin: 0;
}

.cy-cart-slot #cart > .btn {
  min-height: 44px;
  height: 44px;
  border-radius: 22px;
  padding-left: 15px;
  padding-right: 15px;
}

.cy-cart-slot #cart .dropdown-menu {
  margin-top: 10px;
  border: 1px solid var(--cygnus-border);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(17,31,35,.12);
}

/* Mobile drawer */

.cy-menu-toggle {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  padding: 0;
  background: #f3f6f6;
  color: var(--cygnus-text);

  border: 0;
  border-radius: 50%;
  font-size: 18px;
}

.cy-mobile-menu {
  border-top: 1px solid var(--cygnus-border);
  padding: 8px 0 12px;
}

.cy-mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.cy-mobile-menu nav > a {
  min-height: 48px;
  padding: 0 4px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--cygnus-text);
  border-bottom: 1px solid #f0f2f2;

  font-size: 15px;
  font-weight: 600;
}

.cy-mobile-menu nav > a:last-child {
  border-bottom: 0;
}

.cy-mobile-menu nav > a i {
  color: #9aa1a4;
}


/* =========================================================
   HEADER BREAKPOINTS
   ========================================================= */

@media (max-width: 1100px) and (min-width: 768px) {

  .cy-header-row {
    gap: 14px;
  }

  .cy-desktop-nav {
    gap: 14px;
  }

  .cy-desktop-nav a {
    font-size: 13px;
  }

  .cy-brand img {
    max-width: 145px;
  }

  .cy-search-slot {
    max-width: 300px;
  }
}


@media (max-width: 767px) {

  .cy-site-header {
    padding: 0;
  }

  .cy-site-header .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cy-header-row {
    min-height: 64px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
    padding: 10px 0;
  }

  .cy-menu-toggle {
    order: 1;
  }

  .cy-brand {
    order: 2;
    flex: 1 1 auto;
  }

  .cy-brand img {
    max-width: 135px;
    max-height: 38px;
  }

  .cy-header-actions {
    order: 3;
    gap: 3px;
  }

  .cy-search-slot {
    order: 4;

    flex: 0 0 100%;
    max-width: none;

    margin: 2px 0 0;
  }

  .cy-search-slot #search .form-control {
    height: 42px;
  }

  .cy-search-slot #search .btn {
    height: 42px;
  }

  .cy-header-action {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    font-size: 17px;
  }

  .cy-cart-slot #cart > .btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 50%;
  }

  .cy-cart-slot #cart-total {
    display: none;
  }

  .cy-cart-slot #cart > .btn i {
    margin: 0;
    font-size: 17px;
  }

  .cy-cart-slot #cart .dropdown-menu {
    position: fixed;
    top: 118px;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100vh - 145px);
    overflow-y: auto;
  }
}


/* =========================================================
   MOBILE MENU COLLAPSE FIX v0.2.1
   ========================================================= */

@media (max-width: 767px) {

  .cy-mobile-menu {
    background: #fff;
  }

  .cy-mobile-menu.collapse {
    display: none;
  }

  .cy-mobile-menu.collapse.in {
    display: block;
  }

  .cy-mobile-menu.collapsing {
    display: block;
  }
}

@media (min-width: 768px) {
  .cy-mobile-menu {
    display: none !important;
  }
}


/* =========================================================
   FOCUS STATES v0.2.2
   No persistent browser/bootstrap frame after mouse click.
   Keep a clean indicator for keyboard navigation.
   ========================================================= */

a:focus,
button:focus,
.btn:focus,
input:focus {
  outline: none;
}

/* Header links/buttons must not keep Bootstrap focus frame */
.cy-site-header a:focus,
.cy-site-header button:focus {
  outline: none;
  box-shadow: none;
}

/* Keyboard accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(19, 191, 177, .65);
  outline-offset: 3px;
}


/* =========================================================
   CYGNUS FOOTER + MOBILE NAV v0.3
   ========================================================= */

.cy-footer {
  position: static;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  border: 0;

  margin-top: 60px;
  padding: 54px 0 24px;
  background: #15191b;
  color: #aeb6ba;
}

.cy-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 42px;
}

.cy-footer-brand-name {
  margin-bottom: 14px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.cy-footer-brand p {
  max-width: 310px;
  margin: 0;
  color: #929b9f;
  font-size: 14px;
  line-height: 1.7;
}

.cy-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cy-footer-column h5 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.cy-footer-column a {
  margin-bottom: 10px;
  color: #aeb6ba;
  font-size: 14px;
}

.cy-footer-column a:hover {
  color: var(--cygnus-accent-hover);
}

.cy-footer-bottom {
  margin-top: 42px;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(255,255,255,.10);
  color: #798286;
  font-size: 12px;
}


/* Bottom app-like navigation */

.cy-mobile-bottom-nav {
  display: none;
}


@media (max-width: 991px) {

  .cy-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 50px;
  }

  .cy-footer-brand {
    grid-column: 1 / -1;
  }
}


@media (max-width: 767px) {

  body {
    padding-bottom: 72px;
  }

  .cy-footer {
    margin-top: 36px;
    padding: 34px 0 22px;
  }

  .cy-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
  }

  .cy-footer-brand {
    grid-column: 1 / -1;
  }

  .cy-footer-brand-name {
    font-size: 18px;
  }

  .cy-footer-brand p {
    font-size: 13px;
  }

  .cy-footer-column h5 {
    margin-bottom: 13px;
  }

  .cy-footer-column a {
    margin-bottom: 9px;
    font-size: 13px;
  }

  .cy-footer-bottom {
    margin-top: 30px;
    padding-top: 18px;

    flex-direction: column;
    gap: 5px;
  }


  .cy-mobile-bottom-nav {
    position: fixed;
    z-index: 1100;

    left: 0;
    right: 0;
    bottom: 0;

    height: 66px;

    display: flex;
    align-items: stretch;

    background: rgba(255,255,255,.97);
    border-top: 1px solid var(--cygnus-border);

    box-shadow: 0 -8px 28px rgba(17,31,35,.07);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .cy-mobile-bottom-nav > a {
    flex: 1 1 20%;

    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    color: #697175;
    font-size: 10px;
    font-weight: 600;
  }

  .cy-mobile-bottom-nav > a i {
    font-size: 19px;
  }

  .cy-mobile-bottom-nav > a:hover,
  .cy-mobile-bottom-nav > a:focus,
  .cy-mobile-bottom-nav > a:active {
    color: var(--cygnus-accent);
    background: transparent;
  }
}


/* =========================================================
   MOBILE ACCOUNT DROPDOWN FIX v0.3.1
   Keep account menu inside viewport in both orientations.
   ========================================================= */

@media (max-width: 767px) {

  .cy-account {
    position: static;
  }

  .cy-account .dropdown-menu {
    position: absolute;

    top: 100%;
    left: 12px;
    right: 12px;

    width: auto;
    min-width: 0;
    max-width: none;

    margin-top: 0;
    padding: 8px;

    border-radius: 12px;
  }

  .cy-account .dropdown-menu > li > a {
    padding: 12px 14px;
    font-size: 15px;
  }
}


/* =========================================================
   HOME v2
   Commerce-first multibrand storefront
   ========================================================= */

.cy2-home {
  background: #f6f7f7;
}


/* HERO */

.cy2-hero {
  padding: 22px 0 16px;
}

.cy2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(260px, .85fr);
  gap: 14px;
}

.cy2-hero-main {
  position: relative;
  min-height: 430px;

  overflow: hidden;
  display: block;

  background: #202426;
  color: #fff;

  border-radius: 8px;
}

.cy2-hero-media,
.cy2-hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
}

.cy2-hero-media {
  background: #0c2c74;
}

.cy2-hero-video {
  object-fit: cover;
}

.cy2-hero-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7,10,11,.78) 0%,
      rgba(7,10,11,.48) 42%,
      rgba(7,10,11,.08) 75%
    );
}

.cy2-hero-content {
  position: absolute;
  z-index: 2;

  left: 42px;
  bottom: 38px;

  max-width: 480px;

  color: #fff;
}

.cy2-route-label {
  display: block;
  margin-bottom: 7px;

  color: #d9dede;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
}

.cy2-hero-content h1 {
  margin: 0 0 9px;

  color: #fff;

  font-size: 44px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: -.035em;
}

.cy2-hero-content p {
  max-width: 410px;

  margin: 0 0 22px;

  color: rgba(255,255,255,.83);

  font-size: 15px;
  line-height: 1.55;
}

.cy2-hero-cta,
.cy2-worldwide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 750;
}

.cy2-hero-cta {
  padding: 12px 17px;

  background: #fff;
  color: #171a1d;
}

.cy2-hero-main:hover .cy2-hero-cta {
  background: #f1f3f3;
}


/* WORLDWIDE SIDE PANEL */

.cy2-worldwide {
  min-height: 430px;

  display: flex;
  flex-direction: column;

  padding: 30px;

  background: #1c2022;
  color: #fff;

  border-radius: 8px;
}

.cy2-worldwide:hover {
  color: #fff;
  background: #15191b;
}

.cy2-worldwide-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: auto;

  border: 1px solid rgba(255,255,255,.18);

  font-size: 23px;
}

.cy2-worldwide-copy {
  margin-top: 40px;
}

.cy2-worldwide-copy h2 {
  margin: 0 0 10px;

  color: #fff;

  font-size: 29px;
  letter-spacing: -.025em;
}

.cy2-worldwide-copy p {
  margin: 0 0 30px;

  color: #aeb6ba;

  font-size: 14px;
  line-height: 1.6;
}

.cy2-worldwide-cta {
  color: #fff;
}


/* QUICK SHOP NAV */

.cy2-shop-nav {
  padding: 0 0 26px;
}

.cy2-shop-nav-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);

  background: #fff;

  border: 1px solid #e3e7e8;
}

.cy2-shop-nav-grid > a {
  min-height: 82px;

  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;

  gap: 11px;

  padding: 14px 18px;

  border-right: 1px solid #e3e7e8;
}

.cy2-shop-nav-grid > a:last-child {
  border-right: 0;
}

.cy2-shop-nav-grid > a:hover {
  background: #f8f9f9;
}

.cy2-shop-nav-grid > a > i:first-child {
  color: #555e62;
  font-size: 17px;
}

.cy2-shop-nav-grid > a > i:last-child {
  color: #abb1b4;
}

.cy2-shop-nav-grid span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cy2-shop-nav-grid strong {
  color: #222629;
  font-size: 14px;
}

.cy2-shop-nav-grid small {
  color: #90979a;
  font-size: 11px;
}


/* PRODUCT MODULE AREA */

.cy2-product-feed {
  padding: 20px 0 34px;
}

.cy2-product-feed h3 {
  margin: 0 0 18px;

  font-size: 25px;
  font-weight: 720;
}


/* EXISTING PROMOS */

.cy2-promos {
  padding: 12px 0 40px;
}

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


/* TABLET */

@media (max-width: 991px) {

  .cy2-hero-grid {
    grid-template-columns: 1.7fr .8fr;
  }

  .cy2-hero-main,
  .cy2-worldwide {
    min-height: 380px;
  }

  .cy2-shop-nav-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .cy2-shop-nav-grid > a:nth-child(2) {
    border-right: 0;
  }

  .cy2-shop-nav-grid > a:nth-child(-n+2) {
    border-bottom: 1px solid #e3e7e8;
  }
}


/* MOBILE */

@media (max-width: 767px) {

  .cy2-hero {
    padding: 12px 0 10px;
  }

  .cy2-hero .container,
  .cy2-shop-nav .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cy2-hero-grid {
    display: block;
  }

  .cy2-hero-main {
    min-height: 315px;

    margin-bottom: 10px;

    border-radius: 5px;
  }

  /*
   * On phones we keep the poster and skip the MP4.
   * Faster and more predictable than loading the video.
   */
  .cy2-hero-video {
    display: none;
  }

  .cy2-hero-shade {
    background:
      linear-gradient(
        0deg,
        rgba(7,10,11,.78) 0%,
        rgba(7,10,11,.30) 70%,
        rgba(7,10,11,.10) 100%
      );
  }

  .cy2-hero-content {
    left: 21px;
    right: 21px;
    bottom: 22px;
  }

  .cy2-hero-content h1 {
    font-size: 34px;
  }

  .cy2-hero-content p {
    max-width: 320px;

    margin-bottom: 16px;

    font-size: 13px;
  }

  .cy2-worldwide {
    min-height: 0;

    padding: 20px 21px;

    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;

    gap: 14px;

    border-radius: 5px;
  }

  .cy2-worldwide-icon {
    width: 42px;
    height: 42px;

    margin: 0;

    font-size: 18px;
  }

  .cy2-worldwide-copy {
    margin: 0;
  }

  .cy2-worldwide-copy .cy2-route-label {
    margin-bottom: 2px;

    font-size: 9px;
  }

  .cy2-worldwide-copy h2 {
    margin: 0;

    font-size: 19px;
  }

  .cy2-worldwide-copy p {
    display: none;
  }

  .cy2-worldwide-cta {
    font-size: 0;
  }

  .cy2-worldwide-cta i {
    font-size: 16px;
  }


  .cy2-shop-nav {
    padding-bottom: 20px;
  }

  .cy2-shop-nav-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .cy2-shop-nav-grid > a {
    min-height: 72px;

    grid-template-columns: 24px 1fr auto;

    padding: 11px 12px;
  }

  .cy2-shop-nav-grid strong {
    font-size: 13px;
  }

  .cy2-shop-nav-grid small {
    font-size: 10px;
  }


  .cy2-product-feed {
    padding-top: 14px;
  }

  .cy2-product-feed h3 {
    font-size: 22px;
  }


  .cy2-promos {
    padding-top: 6px;
  }
}


/* =========================================================
   HERO ONE-PLAY + EU STATIC STATE v2.1
   Video plays once, then fades to static EU visual.
   ========================================================= */

.cy2-hero-video,
.cy2-hero-static {
  transition: opacity .55s ease;
}

.cy2-hero-static {
  position: absolute;
  inset: 0;
  z-index: 0;

  opacity: 0;

  background:
    linear-gradient(90deg, #0c2c74 0%, #003399 55%, #1848a7 100%);
}

.cy2-hero-static::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    url('/image/catalog/cygnus/eu-flag-overlay.svg')
    right 46px center / min(44%, 340px) auto no-repeat;

  opacity: .97;
}

.cy2-hero-main.cy2-hero-ended .cy2-hero-video {
  opacity: 0;
  pointer-events: none;
}

.cy2-hero-main.cy2-hero-ended .cy2-hero-static {
  opacity: 1;
}

@media (max-width: 767px) {
  .cy2-hero-static {
    display: none;
  }
}


/* =========================================================
   HERO LOAD FLASH FIX v2.1.1
   Static EU state is the permanent base layer.
   Video plays above it and fades away after one playback.
   ========================================================= */

.cy2-hero-media {
  z-index: 1;
  background: transparent;
}

.cy2-hero-video {
  z-index: 1;
  opacity: 1;
  background: transparent;
}

.cy2-hero-static {
  z-index: 0;
  opacity: 1;
}

/* Shade and text must always stay above both visual layers */
.cy2-hero-shade {
  z-index: 2;
}

.cy2-hero-content {
  z-index: 3;
}

.cy2-hero-main.cy2-hero-ended .cy2-hero-video {
  opacity: 0;
}

/* Mobile: show the same new static EU state immediately */
@media (max-width: 767px) {
  .cy2-hero-static {
    display: block;
    opacity: 1;
  }

  .cy2-hero-video {
    display: none;
  }
}


/* =========================================================
   EU HERO FULL-FIELD FLAG v2.1.2
   ========================================================= */

.cy2-hero-static {
  background:
    linear-gradient(
      100deg,
      #071b43 0%,
      #003399 55%,
      #174fb8 100%
    );
}

.cy2-hero-static::after {
  inset: 0;

  background:
    url('/image/catalog/cygnus/eu-flag-overlay.svg')
    78% center / 310px 310px no-repeat;

  opacity: .95;
}

@media (max-width: 767px) {
  .cy2-hero-static::after {
    background-position: 82% 31%;
    background-size: 155px 155px;
    opacity: .82;
  }
}


/* =========================================================
   HEADER v0.4
   Sticky utility bar + separate brand/navigation +
   expandable search
   ========================================================= */

.cy-header-v04 {
  position: sticky;
  top: 0;
  z-index: 1200;

  padding: 0;

  background: #fff;
  border-bottom: 1px solid var(--cygnus-border);
}


/* Utility bar */

.cy-utility-bar {
  height: 42px;

  background: #fff;
  border-bottom: 1px solid #edf0f1;
}

.cy-utility-inner {
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 5px;
}

.cy-utility-spacer {
  flex: 1 1 auto;
}

.cy-utility-action {
  min-height: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  padding: 0 11px;

  background: transparent;
  color: #252a2d;

  border: 0;
  border-radius: 4px;

  font-size: 13px;
  font-weight: 650;
}

.cy-utility-action:hover {
  background: #f3f5f5;
  color: var(--cygnus-accent);
}


/* Cart inside utility bar */

.cy-utility-cart #cart {
  margin: 0;
}

.cy-utility-cart #cart > .btn {
  height: 34px;
  min-height: 34px;

  padding: 0 12px;

  background: #171b1d;
  color: #fff;

  border: 0;
  border-radius: 4px;

  font-size: 12px;
}

.cy-utility-cart #cart > .btn:hover,
.cy-utility-cart #cart.open > .btn {
  background: #262c2f;
}


/* Account dropdown */

.cy-header-v04 .cy-account .dropdown-menu {
  margin-top: 7px;

  border: 1px solid var(--cygnus-border);
  border-radius: 7px;

  box-shadow: 0 12px 34px rgba(18, 26, 29, .12);
}


/* Main row */

.cy-mainbar {
  background: #fff;
}

.cy-mainbar-inner {
  min-height: 68px;

  display: flex;
  align-items: center;

  gap: 34px;
}

.cy-header-v04 .cy-brand {
  flex: 0 0 auto;
}

.cy-header-v04 .cy-brand img {
  max-width: 190px;
  max-height: 48px;
}

.cy-header-v04 .cy-brand-text {
  color: #15191b;

  font-size: 22px;
  font-weight: 750;
  letter-spacing: -.025em;
}


/* Desktop nav */

.cy-header-v04 .cy-desktop-nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 28px;
}

.cy-header-v04 .cy-desktop-nav a {
  min-height: 68px;

  display: inline-flex;
  align-items: center;

  padding: 0;

  color: #24292c;

  font-size: 13px;
  font-weight: 680;
}

.cy-header-v04 .cy-desktop-nav a::after {
  bottom: 14px;
}


/* Expandable search */

.cy-search-panel {
  position: absolute;

  top: 100%;
  left: 0;
  right: 0;

  background: rgba(255,255,255,.985);

  border-top: 1px solid #edf0f1;
  border-bottom: 1px solid var(--cygnus-border);

  box-shadow: 0 12px 30px rgba(17,31,35,.08);
}

.cy-search-panel[hidden] {
  display: none !important;
}

.cy-search-panel-inner {
  min-height: 74px;

  display: flex;
  align-items: center;

  gap: 9px;
}

.cy-search-field {
  flex: 1 1 auto;
}

.cy-search-field #search {
  width: 100%;
  margin: 0;
}

.cy-search-field #search .form-control {
  height: 46px;

  background: #f3f5f5;

  border: 1px solid transparent;
  border-radius: 4px 0 0 4px;

  padding-left: 17px;
}

.cy-search-field #search .form-control:focus {
  background: #fff;
  border-color: #cfd6d8;
}

.cy-search-field #search .btn {
  height: 46px;

  background: #f3f5f5;
  color: #202527;

  border-radius: 0 4px 4px 0;
}

.cy-search-close {
  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  background: transparent;
  color: #70787c;

  border: 0;

  font-size: 17px;
}

.cy-search-close:hover {
  color: #15191b;
  background: #f3f5f5;
}


/* Desktop mobile menu is always hidden */

@media (min-width: 768px) {

  .cy-header-v04 .cy-mobile-menu {
    display: none !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .cy-header-v04 .container {
    padding-left: 12px;
    padding-right: 12px;
  }


  /* compact utility strip */

  .cy-utility-bar {
    height: 48px;
  }

  .cy-utility-inner {
    height: 48px;
    gap: 2px;
  }

  .cy-utility-action {
    width: 42px;
    min-width: 42px;
    height: 42px;

    padding: 0;

    font-size: 17px;
  }


  .cy-utility-cart #cart > .btn {
    width: 42px;
    min-width: 42px;

    height: 42px;
    min-height: 42px;

    padding: 0;

    border-radius: 50%;
  }

  .cy-utility-cart #cart-total {
    display: none;
  }

  .cy-utility-cart #cart > .btn i {
    margin: 0;

    font-size: 17px;
  }


  /* logo row */

  .cy-mainbar-inner {
    min-height: 66px;

    gap: 13px;
  }

  .cy-header-v04 .cy-menu-toggle {
    order: 1;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    margin: 0;

    border-radius: 50%;
  }

  .cy-header-v04 .cy-brand {
    order: 2;

    flex: 1 1 auto;
    min-width: 0;
  }

  .cy-header-v04 .cy-brand img {
    max-width: 145px;
    max-height: 39px;
  }

  .cy-header-v04 .cy-brand-text {
    display: block;

    overflow: hidden;

    color: #171a1d;

    font-size: 18px;
    font-weight: 750;

    white-space: nowrap;
    text-overflow: ellipsis;
  }


  /* mobile menu */

  .cy-header-v04 .cy-mobile-menu {
    border-top: 1px solid var(--cygnus-border);
  }

  .cy-header-v04 .cy-mobile-menu.collapse {
    display: none;
  }

  .cy-header-v04 .cy-mobile-menu.collapse.in {
    display: block;
  }

  .cy-header-v04 .cy-mobile-menu.collapsing {
    display: block;
  }


  /* Search slides under sticky header */

  .cy-search-panel-inner {
    min-height: 64px;

    gap: 6px;
  }

  .cy-search-field #search .form-control,
  .cy-search-field #search .btn {
    height: 44px;
  }

  .cy-search-close {
    width: 42px;
    height: 44px;

    flex-basis: 42px;
  }


  /* mobile account dropdown remains fully inside screen */

  .cy-header-v04 .cy-account {
    position: static;
  }

  .cy-header-v04 .cy-account .dropdown-menu {
    top: 48px;

    left: 12px;
    right: 12px;

    width: auto;
    min-width: 0;

    margin: 0;
  }

  .cy-header-v04 .cy-account .dropdown-menu > li > a {
    padding: 12px 14px;
    font-size: 15px;
  }


  /* cart dropdown */

  .cy-header-v04 .cy-utility-cart #cart .dropdown-menu {
    position: fixed;

    top: 49px;
    left: 12px;
    right: 12px;

    width: auto;

    max-height: calc(100vh - 130px);
    overflow-y: auto;

    margin: 0;
  }

}


/* =========================================================
   HEADER v0.5
   Steroidify-inspired structure:
   one sticky utility bar,
   non-sticky logo/navigation row,
   compact desktop search,
   mobile search overlay,
   cart quantity badge.
   ========================================================= */


/* ---------- Sticky utility ---------- */

header.cy-sticky-utility {
  position: sticky;
  top: 0;
  z-index: 1300;

  padding: 0;
  margin: 0;

  background: #fff;
  border: 0;
  border-bottom: 1px solid #e6e9ea;
}

.cy-topbar {
  position: relative;

  min-height: 44px;

  background: #fff;
}

.cy-topbar-inner {
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 7px;
}

.cy-topbar-spacer {
  flex: 1 1 auto;
}


/* ---------- Cart ---------- */

.cy-cart-compact {
  position: relative;
}

.cy-cart-compact #cart {
  margin: 0;
}

.cy-cart-compact #cart > .btn {
  min-height: 34px;
  height: 34px;

  padding: 0 11px;

  background: transparent;
  color: #1d2224;

  border: 0;
  border-radius: 3px;

  box-shadow: none;
  text-shadow: none;

  font-size: 12px;
  font-weight: 650;
}

.cy-cart-compact #cart > .btn:hover,
.cy-cart-compact #cart.open > .btn {
  background: #f2f4f4;
  color: #111516;
}

.cy-cart-badge {
  position: absolute;

  top: -2px;
  left: 20px;

  min-width: 17px;
  height: 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 4px;

  background: #e53c2e;
  color: #fff;

  border: 2px solid #fff;
  border-radius: 10px;

  font-size: 9px;
  font-weight: 800;
  line-height: 1;

  pointer-events: none;
}


/* ---------- Desktop search ---------- */

.cy-search-shell {
  width: 230px;

  display: flex;
  align-items: center;
}

.cy-search-inline {
  width: 100%;
}

.cy-search-inline #search {
  width: 100%;
  margin: 0;
}

.cy-search-inline #search .form-control {
  height: 34px;

  padding: 6px 11px;

  background: #fff;

  border: 1px solid #dfe3e4;
  border-right: 0;
  border-radius: 0;

  box-shadow: none;

  font-size: 12px;
}

.cy-search-inline #search .btn {
  width: 36px;
  height: 34px;

  padding: 0;

  background: #fff;
  color: #171b1d;

  border: 1px solid #dfe3e4;
  border-left: 0;
  border-radius: 0;

  box-shadow: none;
}

.cy-search-inline #search .btn:hover {
  background: #f5f6f6;
  color: #171b1d;
}


/* ---------- Top actions ---------- */

.cy-top-action {
  min-height: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  padding: 0 8px;

  background: transparent;
  color: #1c2123;

  border: 0;

  font-size: 12px;
  font-weight: 680;
}

.cy-top-action:hover {
  background: #f3f5f5;
  color: #15191b;
}


/* account */

.cy-sticky-utility .cy-account .dropdown-menu {
  margin-top: 5px;

  border: 1px solid #e0e4e5;
  border-radius: 5px;

  box-shadow: 0 10px 28px rgba(17,31,35,.12);
}


/* ---------- Non-sticky brand/navigation ---------- */

.cy-brandbar {
  position: relative;
  z-index: 100;

  background: #fff;

  border-bottom: 1px solid #e8ebec;
}

.cy-brandbar-inner {
  min-height: 82px;

  display: flex;
  align-items: center;

  gap: 32px;
}

.cy-brandbar .cy-brand {
  flex: 0 0 auto;
}

.cy-brandbar .cy-brand img {
  max-width: 205px;
  max-height: 56px;
}

.cy-brandbar .cy-brand-text {
  color: #15191b;

  font-size: 22px;
  font-weight: 760;
  letter-spacing: -.025em;
}

.cy-brandbar .cy-desktop-nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 28px;
}

.cy-brandbar .cy-desktop-nav a {
  min-height: 82px;

  display: inline-flex;
  align-items: center;

  padding: 0;

  color: #202527;

  font-size: 13px;
  font-weight: 680;
}

.cy-brandbar .cy-desktop-nav a::after {
  bottom: 18px;
}


/* ---------- Desktop ---------- */

@media (min-width: 768px) {

  .cy-search-close-mobile {
    display: none !important;
  }

  .cy-brandbar .cy-mobile-menu {
    display: none !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  header.cy-sticky-utility .container,
  .cy-brandbar .container {
    padding-left: 12px;
    padding-right: 12px;
  }


  /* utility is the only sticky part */

  .cy-topbar,
  .cy-topbar-inner {
    min-height: 48px;
  }

  .cy-topbar-inner {
    gap: 3px;
  }


  /* Cart icon */

  .cy-cart-compact #cart > .btn {
    width: 42px;
    min-width: 42px;

    height: 42px;
    min-height: 42px;

    padding: 0;

    border-radius: 0;

    font-size: 17px;
  }

  .cy-cart-compact #cart-total {
    display: none;
  }

  .cy-cart-compact #cart > .btn i {
    margin: 0;
    font-size: 18px;
  }

  .cy-cart-badge {
    top: 1px;
    left: 25px;
  }


  /* Mobile actions */

  .cy-top-action {
    width: 42px;
    min-width: 42px;

    height: 42px;

    padding: 0;

    font-size: 17px;
  }


  /*
   * Mobile search replaces the utility contents.
   * It does NOT create another row.
   */

  .cy-search-shell {
    position: absolute;
    z-index: 20;

    top: 0;
    left: 0;
    right: 0;

    width: auto;
    height: 48px;

    display: none;
    align-items: center;

    gap: 4px;

    padding: 6px 12px;

    background: #fff;
  }

  .cy-search-shell.is-open {
    display: flex;
  }

  .cy-search-inline {
    flex: 1 1 auto;
  }

  .cy-search-inline #search .form-control,
  .cy-search-inline #search .btn {
    height: 36px;
  }

  .cy-search-close-mobile {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    padding: 0;

    background: transparent;
    color: #646c70;

    border: 0;

    font-size: 16px;
  }


  /* Account dropdown */

  .cy-sticky-utility .cy-account {
    position: static;
  }

  .cy-sticky-utility .cy-account .dropdown-menu {
    top: 48px;

    left: 12px;
    right: 12px;

    width: auto;
    min-width: 0;

    margin: 0;
  }

  .cy-sticky-utility .cy-account .dropdown-menu > li > a {
    padding: 12px 14px;
    font-size: 15px;
  }


  /* Cart dropdown */

  .cy-cart-compact #cart .dropdown-menu {
    position: fixed;

    top: 49px;
    left: 12px;
    right: 12px;

    width: auto;

    max-height: calc(100vh - 125px);
    overflow-y: auto;

    margin: 0;
  }


  /* Logo/menu row scrolls normally */

  .cy-brandbar-inner {
    min-height: 72px;

    gap: 13px;
  }

  .cy-brandbar .cy-menu-toggle {
    order: 1;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    margin: 0;

    background: #f3f5f5;

    border: 0;
    border-radius: 50%;

    color: #171b1d;
  }

  .cy-brandbar .cy-brand {
    order: 2;

    flex: 1 1 auto;
    min-width: 0;
  }

  .cy-brandbar .cy-brand img {
    max-width: 145px;
    max-height: 42px;
  }

  .cy-brandbar .cy-brand-text {
    display: block;

    overflow: hidden;

    font-size: 18px;

    white-space: nowrap;
    text-overflow: ellipsis;
  }


  /* Mobile menu */

  .cy-brandbar .cy-mobile-menu {
    border-top: 1px solid #e8ebec;
  }

  .cy-brandbar .cy-mobile-menu.collapse {
    display: none;
  }

  .cy-brandbar .cy-mobile-menu.collapse.in {
    display: block;
  }

  .cy-brandbar .cy-mobile-menu.collapsing {
    display: block;
  }

}


/* =========================================================
   CART BADGE v0.5.1
   Badge is useful only when cart text is hidden on mobile.
   ========================================================= */

@media (min-width: 768px) {
  .cy-cart-badge {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .cy-cart-badge {
    display: inline-flex;
  }
}


/* =========================================================
   CART DISPLAY v0.5.2
   Desktop: icon + quantity badge + amount
   Mobile: icon + quantity badge
   ========================================================= */

.cy-cart-compact {
  display: flex;
  align-items: center;
  gap: 6px;
}

/*
 * Hide stock OC3 "X item(s) - €XX.XX" visually,
 * but keep the element alive because common.js updates it.
 */
.cy-cart-compact #cart-total {
  font-size: 0;
}

/*
 * common.js moves the cart icon inside #cart-total
 * after an AJAX update, so explicitly preserve its size.
 */
.cy-cart-compact #cart-total i {
  font-size: 16px;
}

.cy-cart-amount {
  min-width: 52px;

  color: #1d2224;

  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}


/* Desktop badge placement */

@media (min-width: 768px) {

  .cy-cart-badge {
    display: inline-flex !important;

    top: -4px;
    left: 24px;
  }

}


/* Mobile */

@media (max-width: 767px) {

  .cy-cart-amount {
    display: none;
  }

  .cy-cart-compact #cart-total i {
    font-size: 18px;
  }

}


/* =========================================================
   CART INTERACTION v0.5.3
   No background flash on hover and no visual loading placeholder.
   ========================================================= */

.cy-cart-compact #cart > .btn:hover,
.cy-cart-compact #cart > .btn:focus,
.cy-cart-compact #cart.open > .btn {
  background: transparent;
  color: #171b1d;
  box-shadow: none;
}

.cy-cart-compact #cart.cy-cart-updating > .btn {
  background: transparent;
  color: #171b1d;
}


/* =========================================================
   CART ICON NORMALIZATION v0.5.4
   Keep identical icon size before and after OC3 AJAX update.
   ========================================================= */

.cy-cart-compact #cart > .btn > i,
.cy-cart-compact #cart-total > i,
.cy-cart-compact #cart-total i {
  display: inline-block;
  width: 18px;
  height: 18px;

  font-size: 16px !important;
  line-height: 18px;

  text-align: center;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .cy-cart-compact #cart > .btn > i,
  .cy-cart-compact #cart-total > i,
  .cy-cart-compact #cart-total i {
    width: 20px;
    height: 20px;

    font-size: 18px !important;
    line-height: 20px;
  }
}


/* =========================================================
   CART POSITION LOCK v0.5.5
   Icon position must not depend on total width or AJAX.
   ========================================================= */

@media (min-width: 768px) {

  .cy-cart-compact {
    position: relative;

    width: 126px;

    display: grid;
    grid-template-columns: 36px 86px;
    align-items: center;
    column-gap: 4px;
  }

  .cy-cart-compact #cart {
    width: 36px;
    margin: 0;
  }

  .cy-cart-compact #cart > .btn {
    width: 36px;
    min-width: 36px;
    height: 34px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cy-cart-compact #cart > .btn > i {
    margin: 0 !important;

    width: 18px;
    height: 18px;

    line-height: 18px;
    text-align: center;
  }

  .cy-cart-amount {
    width: 86px;
    min-width: 86px;

    margin: 0;

    text-align: left;
    white-space: nowrap;
  }

  .cy-cart-badge {
    top: -3px;
    left: 25px;
  }
}


@media (max-width: 767px) {

  .cy-cart-compact {
    width: 42px;

    display: block;
  }

}


/* =========================================================
   CART QUANTITY CONTROLS v1
   ========================================================= */

.cy-cart-qty {
  display: inline-grid;

  grid-template-columns: 36px 54px 36px 38px;
  align-items: stretch;

  border: 1px solid #dfe4e5;

  background: #fff;
}

.cy-cart-qty-btn,
.cy-cart-remove {
  height: 38px;

  padding: 0;

  border: 0;

  background: #f5f7f7;
  color: #252a2d;

  font-size: 17px;
  font-weight: 600;
}

.cy-cart-qty-btn:hover {
  background: #eaeeee;
}

.cy-cart-qty-input {
  width: 54px !important;
  height: 38px !important;

  padding: 0 4px !important;

  text-align: center;

  border: 0 !important;
  border-left: 1px solid #e2e6e7 !important;
  border-right: 1px solid #e2e6e7 !important;

  border-radius: 0 !important;

  box-shadow: none !important;
}

.cy-cart-remove {
  color: #bf3731;

  border-left: 1px solid #e2e6e7;
}

.cy-cart-remove:hover {
  background: #bf3731;
  color: #fff;
}


/* Remove native number spinners */

.cy-cart-qty-input::-webkit-outer-spin-button,
.cy-cart-qty-input::-webkit-inner-spin-button {
  margin: 0;

  -webkit-appearance: none;
}

.cy-cart-qty-input[type=number] {
  -moz-appearance: textfield;
}


/* Mobile */

@media (max-width: 767px) {

  .cy-cart-qty {
    grid-template-columns: 34px 48px 34px 36px;
  }

  .cy-cart-qty-btn,
  .cy-cart-remove,
  .cy-cart-qty-input {
    height: 36px !important;
  }

  .cy-cart-qty-input {
    width: 48px !important;
  }
}


/* =========================================================
   CART BADGE HIDDEN FIX v0.5.6
   Do not let desktop !important override the hidden state.
   ========================================================= */

.cy-cart-badge[hidden] {
  display: none !important;
}


/* =========================================================
   MOBILE FLOATING MENU v0.6
   Utility bar stays sticky.
   Logo scrolls normally.
   Menu trigger remains accessible.
   ========================================================= */

@media (max-width: 767px) {

  /* Logo row no longer needs to carry the menu visually */
  .cy-brandbar-inner {
    position: relative;
    min-height: 72px;
    padding-right: 54px;
  }

  .cy-brandbar .cy-brand {
    width: 100%;
  }


  /* Floating menu trigger */
  .cy-brandbar .cy-menu-toggle {
    position: fixed !important;
    z-index: 1280;

    top: 58px;
    right: 14px;

    width: 42px;
    height: 42px;

    margin: 0 !important;
    padding: 0;

    display: flex !important;
    align-items: center;
    justify-content: center;

    background: #f3f5f5;
    color: #171b1d;

    border: 1px solid #e5e9ea;
    border-radius: 50%;

    box-shadow: 0 2px 8px rgba(15, 25, 28, .08);
  }

  .cy-brandbar .cy-menu-toggle:hover,
  .cy-brandbar .cy-menu-toggle:focus {
    background: #eef1f1;
    color: #171b1d;

    outline: 0;
    box-shadow: 0 2px 8px rgba(15, 25, 28, .08);
  }


  /* Mobile menu becomes a floating panel */
  .cy-brandbar .cy-mobile-menu {
    position: fixed;
    z-index: 1270;

    top: 108px;
    left: 12px;
    right: 12px;

    max-height: calc(100vh - 128px);
    overflow-y: auto;

    padding: 0;

    background: #fff;

    border: 1px solid #e1e5e6;
    border-radius: 7px;

    box-shadow: 0 14px 36px rgba(15, 25, 28, .14);
  }

}


/* =========================================================
   MOBILE FULL-WIDTH MENU v0.6.1
   ========================================================= */

@media (max-width: 767px) {

  .cy-brandbar .cy-mobile-menu {
    left: 0;
    right: 0;
    width: 100%;

    border-left: 0;
    border-right: 0;
    border-radius: 0;

    box-shadow: 0 10px 24px rgba(15, 25, 28, .10);
  }

}


/* =========================================================
   CURRENCY SELECTOR v1
   ========================================================= */

.cy-currency {
  flex: 0 0 auto;
}

.cy-currency form {
  margin: 0;
}

.cy-currency .btn-group {
  display: block;
}

.cy-currency .btn-link,
.cy-currency .dropdown-toggle {
  height: 34px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 0 10px;

  background: transparent !important;
  color: #1c2123 !important;

  border: 0 !important;
  border-radius: 0;

  box-shadow: none !important;
  text-shadow: none !important;

  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
}

.cy-currency .dropdown-toggle:hover,
.cy-currency .dropdown-toggle:focus {
  background: #f3f5f5 !important;
}

.cy-currency .dropdown-menu {
  min-width: 82px;

  margin-top: 5px;
  padding: 4px 0;

  border: 1px solid #e0e4e5;
  border-radius: 4px;

  box-shadow: 0 10px 28px rgba(17,31,35,.12);
}

.cy-currency .dropdown-menu li button {
  width: 100%;

  padding: 8px 12px;

  text-align: left;

  background: transparent;
  color: #202527;

  border: 0;

  font-size: 12px;
  font-weight: 650;
}

.cy-currency .dropdown-menu li button:hover {
  background: #f3f5f5;
}


/* Mobile stays compact */

@media (max-width: 767px) {

  .cy-currency .btn-link,
  .cy-currency .dropdown-toggle {
    width: 48px;
    height: 42px;

    justify-content: center;

    padding: 0;

    font-size: 12px;
  }

}

/* DISPATCH ZONE SELECTOR v1 */

.cy-dispatch-zone {
  flex: 0 0 auto;
}

.cy-zone-form {
  margin: 0;
}

.cy-zone-toggle {
  height: 34px;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  border: 0 !important;
  background: transparent !important;
  color: #1c2123 !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: none !important;
}

.cy-zone-toggle:hover,
.cy-zone-toggle:focus {
  background: #f3f5f5 !important;
}

.cy-dispatch-zone .dropdown-menu {
  min-width: 145px;
}

.cy-zone-option {
  width: 100%;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 12px;
}

.cy-zone-option:hover {
  background: #f3f5f5;
}

@media (max-width: 767px) {
  .cy-zone-toggle {
    height: 42px;
    padding: 0 7px !important;
    font-size: 11px;
  }
}

/* CART DISPATCH ZONE */
.cy-cart-zone {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 7px;
  border: 1px solid #dfe5e6;
  border-radius: 12px;
  background: #f6f8f8;
  color: #536064;
  font-size: 11px;
  line-height: 1.4;
}


/* =========================================================
   MOBILE NAV CLEANUP v1
   Header: zone + currency
   Bottom: Home / Catalog / Search / Cart / Account
   ========================================================= */

.cy-mobile-nav-button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
}

.cy-mobile-nav-icon {
  position: relative;
  display: inline-flex;
}

.cy-mobile-cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;

  min-width: 15px;
  height: 15px;
  padding: 0 4px;

  border-radius: 8px;

  font-size: 9px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}

.cy-mobile-cart-badge[hidden] {
  display: none !important;
}

@media (max-width: 767px) {

  /* Bottom navigation becomes the primary mobile action bar */
  .cy-mobile-bottom-nav > a,
  .cy-mobile-bottom-nav > button {
    flex: 1 1 20%;
  }

  .cy-mobile-nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /*
   * These actions already exist in the bottom navigation.
   * Keep their desktop versions intact.
   */
  .cy-cart-compact,
  #cy-search-toggle,
  .cy-account {
    display: none !important;
  }

  /*
   * Do NOT hide cy-search-shell:
   * bottom Search opens this same existing search interface.
   */
  .cy-dispatch-zone,
  .cy-currency {
    display: block;
  }
}

/* MOBILE BOTTOM CART BADGE FIX */
.cy-mobile-cart-icon {
  position: relative;
  display: inline-flex;
}

.cy-mobile-cart-badge {
  position: absolute;
  top: -7px;
  right: -10px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: 9px;
  background: #d9534f;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}

.cy-mobile-cart-badge[hidden] {
  display: none !important;
}

/* CY HEADER DROPDOWNS CONSOLIDATED START */

/* Common positioning context */
.cy-sticky-utility .cy-dispatch-zone,
.cy-sticky-utility .cy-currency,
.cy-sticky-utility .cy-account {
  align-self: stretch;
  align-items: center;
}

.cy-sticky-utility .cy-dispatch-zone,
.cy-sticky-utility .cy-currency {
  display: flex;
  position: relative;
}

.cy-sticky-utility .cy-dispatch-zone .cy-zone-form,
.cy-sticky-utility .cy-currency #form-currency,
.cy-sticky-utility .cy-dispatch-zone .btn-group,
.cy-sticky-utility .cy-currency .btn-group {
  position: static;
  margin: 0;
}


/* Warehouse + currency dropdown geometry */
.cy-sticky-utility .cy-dispatch-zone .dropdown-menu,
.cy-sticky-utility .cy-currency .dropdown-menu {
  top: 100%;
  bottom: auto;
  right: 0;
  left: auto;
  margin-top: 0;

  min-width: 100%;
  width: max-content;
  max-width: calc(100vw - 24px);

  padding: 4px 0;
  box-sizing: border-box;

  border: 1px solid #e0e4e5;
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(17,31,35,.12);
}

.cy-sticky-utility .cy-dispatch-zone .dropdown-menu {
  max-width: min(280px, calc(100vw - 24px));
}


/* Utility controls */
.cy-sticky-utility .cy-zone-toggle,
.cy-sticky-utility .cy-currency .dropdown-toggle,
.cy-sticky-utility .cy-account .dropdown-toggle {
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px !important;
}


/* Dropdown typography */
.cy-sticky-utility .cy-zone-option,
.cy-sticky-utility .cy-currency .currency-select,
.cy-sticky-utility .cy-account .dropdown-menu > li > a {
  font-size: 12px;
  font-weight: 700 !important;
}


/* Warehouse options */
.cy-sticky-utility .cy-zone-option {
  width: 100%;
  padding: 8px 10px;

  border: 0;
  background: transparent;

  color: #333;
  text-align: left;
  line-height: 1.42857143;
  white-space: normal;
}


/* Currency options */
.cy-sticky-utility .cy-currency .currency-select {
  display: block !important;

  width: 100%;
  padding: 8px 10px;

  border: 0;
  background: transparent;

  color: #333;
  text-align: left;
  line-height: 1.42857143;
  white-space: nowrap;
}


/* Unified hover */
.cy-sticky-utility .cy-zone-option:hover,
.cy-sticky-utility .cy-currency .currency-select:hover,
.cy-sticky-utility .cy-account .dropdown-menu > li > a:hover {
  background: #f3f5f5;
}


/* Account dropdown on desktop/tablet */
@media (min-width: 768px) {

  .cy-sticky-utility .cy-account {
    display: flex;
    position: relative;
  }

  .cy-sticky-utility .cy-account .dropdown-menu {
    top: 100%;
    bottom: auto;
    right: 0;
    left: auto;
    margin-top: 0;

    min-width: 100%;
    width: max-content;
    max-width: 280px;

    padding: 4px 0;
    box-sizing: border-box;

    border: 1px solid #e0e4e5;
    border-radius: 5px;
    box-shadow: 0 10px 28px rgba(17,31,35,.12);
  }

  .cy-sticky-utility .cy-account .dropdown-menu > li > a {
    padding: 8px 10px;
    border-radius: 0;
    white-space: nowrap;
  }
}


/* Phone */
@media (max-width: 767px) {

  /*
   * Same typography for warehouse and currency.
   * Width algorithm remains identical to desktop.
   */
  .cy-sticky-utility .cy-zone-toggle,
  .cy-sticky-utility .cy-zone-option,
  .cy-sticky-utility .cy-currency .dropdown-toggle,
  .cy-sticky-utility .cy-currency .currency-select {
    font-size: 12px;
    font-weight: 700 !important;
  }

  .cy-sticky-utility .cy-zone-option {
    padding-left: 7px;
    padding-right: 7px;
  }

  /*
   * Old .cy-currency .btn-link mobile rule also catches
   * EUR/USD menu buttons and gives them 42px height.
   * Explicitly restore normal compact menu rows.
   */
  .cy-sticky-utility .cy-currency .currency-select {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;

    padding: 7px 10px !important;

    line-height: 1.4;
    justify-content: initial !important;
  }
}

/* CY HEADER DROPDOWNS CONSOLIDATED END */

/* CY GEOIP RECOMMENDATION PANEL START */

/* Mobile-first service panel */
.cy-warehouse-recommend-wrap {
  background: #f3f5f5;
  border-bottom: 1px solid #e0e4e5;
}

.cy-warehouse-recommend-wrap .container {
  padding-left: 12px;
  padding-right: 12px;
}

.cy-warehouse-recommend {
  display: flex;
  flex-direction: column;
  gap: 11px;

  padding: 13px 0;

  color: #202527;
  font-size: 13px;
}

.cy-warehouse-recommend-copy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.cy-warehouse-recommend-icon {
  flex: 0 0 auto;

  width: 25px;
  height: 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: -2px;

  border: 1px solid #d9dfe0;
  border-radius: 50%;

  background: #fff;
  color: #515a5e;

  font-size: 13px;
}

.cy-warehouse-recommend-text {
  line-height: 1.45;
}

.cy-warehouse-recommend-text strong {
  font-weight: 700;
}

.cy-warehouse-recommend-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;

  padding-left: 34px;
}

.cy-warehouse-recommend-confirm {
  margin: 0;
}

.cy-warehouse-recommend-keep,
.cy-warehouse-recommend-change {
  min-height: 34px;

  padding: 7px 12px;

  border-radius: 5px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;

  cursor: pointer;
}

.cy-warehouse-recommend-keep {
  border: 1px solid #15191b;

  background: #15191b;
  color: #fff;
}

.cy-warehouse-recommend-keep:hover,
.cy-warehouse-recommend-keep:focus {
  background: #2a3033;
  border-color: #2a3033;
}

.cy-warehouse-recommend-change {
  border: 1px solid #ccd3d5;

  background: #fff;
  color: #202527;
}

.cy-warehouse-recommend-change:hover,
.cy-warehouse-recommend-change:focus {
  background: #f8f9f9;
  border-color: #bfc7c9;
}


/* Desktop/tablet: compact card rather than full-width alert */
@media (min-width: 768px) {

  .cy-warehouse-recommend-wrap {
    background: transparent;
    border-bottom: 0;
  }

  .cy-warehouse-recommend {
    max-width: 760px;

    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin: 10px auto 0;
    padding: 11px 13px;

    border: 1px solid #dfe4e5;
    border-radius: 6px;

    background: #fff;

    box-shadow: 0 8px 24px rgba(17,31,35,.10);
  }

  .cy-warehouse-recommend-copy {
    align-items: center;
    min-width: 0;
  }

  .cy-warehouse-recommend-actions {
    flex: 0 0 auto;

    padding-left: 0;
    flex-wrap: nowrap;
  }
}

/* CY GEOIP RECOMMENDATION PANEL END */


/* CY DB-IP ATTRIBUTION START */
.cy-dbip-attribution {
  font-size: 11px;
  opacity: .62;
}

.cy-dbip-attribution a {
  color: inherit;
  text-decoration: none;
}

.cy-dbip-attribution a:hover,
.cy-dbip-attribution a:focus {
  color: inherit;
  opacity: 1;
  text-decoration: underline;
}
/* CY DB-IP ATTRIBUTION END */


/* =========================================================
   OPENCART 4 / BOOTSTRAP 5 COMPATIBILITY
   Final geometry above is copied from the audited OC3 theme.
   ========================================================= */

#container {
  min-height: 100vh;
}

.cy-brandbar .cy-mobile-menu.collapse.show {
  display: block;
}

.cy-cart-compact #cart > .btn.show,
.cy-cart-compact #cart > .btn:focus {
  background: transparent;
  color: #171b1d;
  box-shadow: none;
}

.cy-sticky-utility .cy-dispatch-zone .dropdown,
.cy-sticky-utility .cy-currency .dropdown {
  position: static;
  margin: 0;
}

.cy-sticky-utility .cy-account .dropdown-menu,
.cy-sticky-utility .cy-dispatch-zone .dropdown-menu,
.cy-sticky-utility .cy-currency .dropdown-menu,
.cy-cart-compact #cart .dropdown-menu {
  transform: none !important;
}

.cy-sticky-utility .dropdown-item.active,
.cy-sticky-utility .dropdown-item:active {
  background: #f3f5f5;
  color: #202527;
}

.cy-sticky-utility .dropdown-toggle::after,
.cy-cart-compact #cart > .dropdown-toggle::after {
  display: none;
}

.cy-cart-compact #cart {
  position: static;
}

.cy-cart-compact #cart > .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cy-search-inline #search .form-control,
.cy-search-inline #search .btn {
  font-size: 12px;
  line-height: 1.42857143;
}


/* =========================================================
   STAGE 8A1.1 — restore final compact search geometry
   ========================================================= */

.cy-search-inline #search .form-control,
.cy-mobile-search #search .form-control {
    height: 34px;
    min-height: 34px;
    padding: 6px 12px;
    line-height: 20px;
    font-size: 12px;
}

.cy-search-inline #search .btn,
.cy-mobile-search #search .btn {
    height: 34px;
    min-height: 34px;
    padding-top: 6px;
    padding-bottom: 6px;
    line-height: 20px;
}

.cy-search-inline #search .input-group,
.cy-mobile-search #search .input-group {
    align-items: stretch;
}


/* CY STAGE 8A2B FINAL HEADER / MOBILE MENU FIX */

/* One geometry for Warehouse / Currency / Account / Login */
.cy-sticky-utility .cy-zone-toggle,
.cy-sticky-utility .cy-currency .dropdown-toggle,
.cy-sticky-utility .cy-account .dropdown-toggle,
.cy-sticky-utility .cy-top-action {
    box-sizing: border-box !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 5px !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 1 !important;
}

.cy-sticky-utility .cy-zone-toggle:hover,
.cy-sticky-utility .cy-zone-toggle:focus,
.cy-sticky-utility .cy-zone-toggle.show,
.cy-sticky-utility .cy-currency .dropdown-toggle:hover,
.cy-sticky-utility .cy-currency .dropdown-toggle:focus,
.cy-sticky-utility .cy-currency .dropdown-toggle.show,
.cy-sticky-utility .cy-account .dropdown-toggle:hover,
.cy-sticky-utility .cy-account .dropdown-toggle:focus,
.cy-sticky-utility .cy-account .dropdown-toggle.show,
.cy-sticky-utility .cy-top-action:hover,
.cy-sticky-utility .cy-top-action:focus {
    background: #f3f5f5 !important;
}

/* Desktop: same protrusion around all controls */
@media (min-width: 768px) {
    .cy-sticky-utility .cy-zone-toggle,
    .cy-sticky-utility .cy-currency .dropdown-toggle,
    .cy-sticky-utility .cy-account .dropdown-toggle,
    .cy-sticky-utility .cy-top-action {
        min-height: 34px !important;
        height: 34px !important;
        padding: 0 10px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cy-sticky-utility .cy-zone-toggle,
    .cy-sticky-utility .cy-currency .dropdown-toggle {
        width: auto !important;
        min-width: 0 !important;
        min-height: 42px !important;
        height: 42px !important;
        padding: 0 8px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /*
     * Menu itself already uses fixed positioning.
     * Stretch its white canvas down to the bottom navigation.
     */
    .cy-brandbar .cy-mobile-menu.collapse.show,
    .cy-brandbar .cy-mobile-menu.collapsing {
        bottom: 58px !important;
        height: auto !important;
        max-height: none !important;
        overflow-y: auto !important;
        background: #ffffff !important;
    }

    .cy-brandbar .cy-mobile-menu.collapse.show nav,
    .cy-brandbar .cy-mobile-menu.collapsing nav {
        min-height: 100% !important;
        background: #ffffff !important;
    }

    .cy-brandbar .cy-mobile-menu nav > a {
        padding-left: 20px !important;
        padding-right: 16px !important;
        background: #ffffff !important;
        box-sizing: border-box !important;
    }
}

/* CY STAGE 8A2B END */

/* =========================================================
   CY STAGE 8A2C
   Solid mobile menu canvas + desktop search-trigger fix
   ========================================================= */

/* The top search trigger belongs only to the old mobile action system.
   Search on mobile is now opened from the bottom navigation. */
#cy-search-toggle {
    display: none !important;
}

@media (max-width: 767px) {

    /*
     * Existing navigation visually starts at 108px.
     * Start the opaque panel directly below the 48px sticky utility,
     * then preserve the same 60px empty header area with padding.
     */
    .cy-brandbar .cy-mobile-menu.collapse.show,
    .cy-brandbar .cy-mobile-menu.collapsing {
        top: 48px !important;
        bottom: 58px !important;

        height: auto !important;
        max-height: none !important;

        padding-top: 60px !important;

        overflow-y: auto !important;
        background: #ffffff !important;

        box-sizing: border-box !important;
    }

    .cy-brandbar .cy-mobile-menu.collapse.show nav,
    .cy-brandbar .cy-mobile-menu.collapsing nav {
        background: #ffffff !important;
    }
}

/* CY STAGE 8A2C END */
