/* 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 {
  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;
}
