@font-face {
  font-family: "SF UI Display";
  src: url("../fonts/sfuidisplay_regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF UI Display";
  src: url("../fonts/sfuidisplay_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100% !important;
  max-width: 100% !important;
  padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }
}
/* Banner Module: Hero Slider */
body,
button,
input,
select,
textarea {
  font-family: "SF UI Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body {
  font-family: "SF UI Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body :where(h1, h2, h3, h4, h5, h6, p, span, a, li, div, button, input, select, textarea, label, strong, em, small, td, th) {
  font-family: "SF UI Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.oc-section-title,.oc-cta-section{margin-top: 100px !important;}
.oc-section-title,
.oc-partners .oc-partners-title {
  font-size: 23px !important;
  line-height: 1.15;
  font-weight: 700 !important;
}

@media (min-width: 992px) {
  .oc-section-title,
  .oc-partners .oc-partners-title {
    font-size: 38px !important;
  }
}

.oc-hero-banner {
  margin-top: 20px;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 380px !important;
  border-radius: 1rem;
  overflow: hidden;
  background: #0a0505;
  
  color: #fff;
}
.oc-hero-banner .oc-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle at 2px 2px, rgba(236, 19, 19, 0.12) 1px, transparent 0);
  background-size: 38px 38px;
}
.oc-hero-banner .oc-hero-track,
.oc-hero-banner .oc-hero-slide {
  position: absolute;
  inset: 0;
}
.oc-hero-banner .oc-hero-slide {
  z-index: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .6s ease, transform 1s ease;
}
.oc-hero-banner .oc-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}
.oc-hero-banner .oc-hero-cover-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.oc-hero-banner .oc-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
  filter: saturate(0.88) contrast(1.05);
}
.oc-hero-banner .oc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10, 5, 5, .22), rgba(10, 5, 5, .18) 48%, rgba(10, 5, 5, .32)),
    linear-gradient(to top, rgba(10, 5, 5, .28), rgba(10, 5, 5, .02) 40%, rgba(10, 5, 5, .26));
}
.oc-hero-banner .oc-hero-content {
  position: absolute;
  z-index: 4;
  left: 2rem;
  right: 2rem;
  top: 50%;
  transform: translateY(-54%);
  max-width: 68rem;
  text-align: center;
  margin: 0 auto;
}
.oc-hero-banner .oc-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .375rem .75rem;
  border: 1px solid rgba(236, 19, 19, .4);
  background: rgba(236, 19, 19, .12);
  border-radius: 9999px;
  font-size: .68rem;
  letter-spacing: .18em;
  font-weight: 700;
  color: #ec1313;
  text-transform: uppercase;
}
.oc-hero-banner .oc-hero-title {
  margin: 0;
  font-size: clamp(1.8rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 30px rgba(236, 19, 19, 0.32);
}
.oc-hero-banner .oc-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: .85rem 1.8rem;
  border-radius: .65rem;
  background: #ec1313;
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 0 28px rgba(236, 19, 19, .38);
  position: relative;
  z-index: 5;
}
.oc-hero-banner .oc-hero-cta:hover {
  background: #c91010;
  transform: translateY(-1px);
  color: #fff;
}
.oc-hero-banner .oc-hero-specs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5.5rem;
  z-index: 4;
  width: min(100%, 940px);
  padding: 0 1.5rem;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.oc-hero-banner .oc-hero-spec {
  border-left: 1px solid rgba(236, 19, 19, .38);
  padding-left: .85rem;
}
.oc-hero-banner .oc-hero-spec span {
  display: block;
  font-size: .63rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}
.oc-hero-banner .oc-hero-spec strong {
  display: block;
  margin-top: .2rem;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: .02em;
}
.oc-hero-banner .oc-hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  padding: 1.25rem 1.25rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(to top, rgba(10, 5, 5, .58), rgba(10, 5, 5, 0));
}
.oc-hero-banner .oc-hero-pagination {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex: 1;
  min-width: 0;
}
.oc-hero-banner .oc-hero-dot {
  border: 0;
  height: .25rem;
  width: 2.2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .28);
  transition: width .25s ease, background .25s ease;
}
.oc-hero-banner .oc-hero-dot.is-active {
  width: 4rem;
  background: #ec1313;
}
.oc-hero-banner .oc-hero-counter {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
}
.oc-hero-banner .oc-hero-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.oc-hero-banner .oc-hero-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .9);
  transition: all .2s ease;
}
.oc-hero-banner .oc-hero-btn:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .12);
}
.oc-hero-banner .oc-hero-btn.is-next {
  border-color: rgba(236, 19, 19, .6);
  color: #ec1313;
  background: rgba(236, 19, 19, .1);
}

/* Banner Module: Basic Slider */
.oc-banner-basic {
  position: relative;
  margin-top: 1rem;
}
.oc-banner-basic .oc-banner-basic-track {
  position: relative;
}
.oc-banner-basic .oc-banner-basic-slide {
  display: none;
}
.oc-banner-basic .oc-banner-basic-slide.is-active {
  display: block;
}
.oc-banner-basic .oc-banner-basic-grid {
  display: grid;
  gap: 1rem;
}
.oc-banner-basic .oc-banner-basic-card {
  border-radius: .85rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
}
.oc-banner-basic .oc-banner-basic-image {
  width: 100%;
  height: auto;
  display: block;
}
.oc-banner-basic .oc-banner-basic-footer {
  margin-top: .75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}
.oc-banner-basic .oc-banner-basic-dots {
  display: flex;
  gap: .4rem;
}
.oc-banner-basic .oc-banner-basic-dot {
  width: .6rem;
  height: .6rem;
  border-radius: 9999px;
  border: 0;
  background: #cbd5e1;
}
.oc-banner-basic .oc-banner-basic-dot.is-active {
  background: #ec1313;
}
.oc-banner-basic .oc-banner-basic-controls {
  display: flex;
  gap: .45rem;
}
.oc-banner-basic .oc-banner-basic-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

@media (min-width: 992px) {
  .oc-hero-banner .oc-hero-specs {
    display: grid;
  }
  .oc-hero-banner .oc-hero-bottom {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 991px) {
  .oc-banner-basic .oc-banner-basic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* =========================================================
   Header RU / Static / Category / Account Consolidated
   ========================================================= */

/* Header compare label should stay readable in RU */
header [title*="Сравнение"] .text-\[10px\] {
  white-space: nowrap;
}

/* Static pages */
.oc-static-page .oc-static-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.oc-static-page .oc-static-main {
  min-width: 0;
}

.oc-static-page #column-left,
.oc-static-page #column-right {
  display: none;
}

.oc-static-page .oc-static-content {
  background: #f6f7f8;
  border-radius: 1rem;
  padding: clamp(1rem, 2.4vw, 2rem);
  color: #1f2937;
}
.oc-static-page .oc-static-content > * + * {
  margin-top: 1rem;
}

.oc-static-page .oc-static-content p {
  margin: 0 0 .9rem;
  font-size: clamp(.95rem, 1.12vw, 1.08rem);
  line-height: 1.8;
  color: #334155;
}

.oc-static-page .oc-static-content h2,
.oc-static-page .oc-static-content h3 {
  margin: 1.1rem 0 .7rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.25;
}

.oc-static-page .oc-static-content ul,
.oc-static-page .oc-static-content ol {
  margin: .2rem 0 1rem;
  padding-left: 1.35rem;
  color: #334155;
}

.oc-static-page .oc-static-content ul {
  list-style: disc !important;
}

.oc-static-page .oc-static-content ol {
  list-style: decimal !important;
}

.oc-static-page .oc-static-content li {
  margin-bottom: .45rem;
  line-height: 1.7;
}

.oc-static-page .oc-static-content li::marker {
  color: #fe0000;
}

.oc-static-page .oc-static-content p:last-child,
.oc-static-page .oc-static-content ul:last-child,
.oc-static-page .oc-static-content ol:last-child {
  margin-bottom: 0;
}

.oc-static-page .oc-static-content a {
  color: #fe0000;
}

.oc-static-page .oc-static-content a:hover {
  color: #df0000;
}

.oc-static-page .oc-static-content > .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.oc-static-page .oc-static-content > .row > [class*="col-"] {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

@media (max-width: 767px) {
  .oc-static-page .oc-static-content > .row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Category layout hardening */
#product-category .oc-category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

#product-category .oc-category-side {
  width: 100%;
  min-width: 0;
}

#product-category .oc-filter-panel {
  width: 100%;
  min-width: 0;
  max-width: none;
}

#product-category .oc-category-content {
  min-width: 0;
}

#product-category .oc-category-extra {
  display: none;
}

#product-category #product-list {
  position: relative;
  z-index: 1;
}

#product-category #product-list .product-cell {
  min-width: 0;
}

@media (min-width: 1200px) {
  #product-category .oc-category-layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  #product-category .oc-category-side {
    grid-column: 1 / 2;
    position: sticky;
    top: 1rem;
    max-width: 320px;
  }

  #product-category .oc-filter-panel {
    max-width: 320px;
  }

  #product-category .oc-category-content {
    grid-column: 2 / 3;
  }
}

@media (max-width: 1199px) {
  #product-category .oc-category-side {
    position: static;
    max-width: none;
  }

  #product-category .oc-filter-panel {
    max-width: none;
  }
}

/* Unified account page shell */
.container.oc-account-page[id^="account-"] > .oc-account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.container.oc-account-page[id^="account-"] .row {
  margin-right: 0;
  margin-left: 0;
}

.container.oc-account-page[id^="account-"] .row > [class*="col-"],
.container.oc-account-page[id^="account-"] .row > .col {
  padding-right: 0;
  padding-left: 0;
}

.container.oc-account-page[id^="account-"] > .oc-account-layout > #column-left {
  display: none !important;
}

.container.oc-account-page[id^="account-"] > .oc-account-layout > #content {
  min-width: 0;
  background: #f6f7f8;
  border-radius: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.container.oc-account-page[id^="account-"] > .oc-account-layout > #content > h1,
.container.oc-account-page[id^="account-"] > .oc-account-layout > #content > .h1,
.container.oc-account-page[id^="account-"] > .oc-account-layout > #content > legend {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.55vw, 2.4rem);
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
}

.container.oc-account-page[id^="account-"] > .oc-account-layout > #content h2,
.container.oc-account-page[id^="account-"] > .oc-account-layout > #content legend {
  color: #0f172a;
  font-weight: 700;
}

.container.oc-account-page[id^="account-"] > .oc-account-layout > #column-right {
  order: 2;
}

@media (min-width: 1200px) {
  .container.oc-account-page[id^="account-"] > .oc-account-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.25rem;
  }

  .container.oc-account-page[id^="account-"] > .oc-account-layout > #column-right {
    grid-column: 2 / 3;
    align-self: start;
    position: sticky;
    top: 1rem;
    max-height: calc(100vh - 2rem);
    overflow: auto;
    order: initial;
  }
}

/* Account forms */
.container.oc-account-page[id^="account-"] #content > form {
  margin-top: .85rem;
}

.container.oc-account-page[id^="account-"] #content form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.container.oc-account-page[id^="account-"] #content form fieldset + fieldset {
  margin-top: 1.2rem;
}

.container.oc-account-page[id^="account-"] #content form .row.mb-3 {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: .7rem 1rem;
  align-items: start;
  margin-bottom: 1rem !important;
}

.container.oc-account-page[id^="account-"] #content form .row.mb-3 > [class*="col-"] {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.oc-account-page[id^="account-"] #content form .row.mb-3 .form-control,
.container.oc-account-page[id^="account-"] #content form .row.mb-3 .form-select,
.container.oc-account-page[id^="account-"] #content form .row.mb-3 textarea {
  border: 0;
  border-radius: .8rem;
  background: #ffffff;
  min-height: 44px;
  box-shadow: none;
}

.container.oc-account-page[id^="account-"] #content form .col-form-label,
.container.oc-account-page[id^="account-"] #content form .form-label {
  color: #374151;
  font-weight: 700;
}

.container.oc-account-page[id^="account-"] #content form .row.mb-3 .input-group {
  width: 100%;
}

.container.oc-account-page[id^="account-"] #content form .row.mb-3 .input-group-text {
  border: 0;
  background: #ffffff;
}

/* Force full-width fields on all account tabs/pages */
.container.oc-account-page[id^="account-"] #content .form-control,
.container.oc-account-page[id^="account-"] #content .form-select,
.container.oc-account-page[id^="account-"] #content textarea.form-control,
#account-login #content .form-control,
#account-login #content .form-select,
#account-login #content textarea.form-control,
#account-register #content .form-control,
#account-register #content .form-select,
#account-register #content textarea.form-control {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

.container.oc-account-page[id^="account-"] #content input[type="text"],
.container.oc-account-page[id^="account-"] #content input[type="email"],
.container.oc-account-page[id^="account-"] #content input[type="tel"],
.container.oc-account-page[id^="account-"] #content input[type="password"],
.container.oc-account-page[id^="account-"] #content input[type="date"],
.container.oc-account-page[id^="account-"] #content input[type="time"],
.container.oc-account-page[id^="account-"] #content input[type="datetime-local"],
#account-login #content input[type="email"],
#account-login #content input[type="password"],
#account-register #content input[type="text"],
#account-register #content input[type="email"],
#account-register #content input[type="tel"],
#account-register #content input[type="password"],
#account-register #content input[type="date"],
#account-register #content input[type="time"],
#account-register #content input[type="datetime-local"] {
  width: 100% !important;
  max-width: none !important;
}

.container.oc-account-page[id^="account-"] #content .input-group,
#account-login #content .input-group,
#account-register #content .input-group {
  width: 100%;
}

.container.oc-account-page[id^="account-"] #content .input-group > .form-control,
.container.oc-account-page[id^="account-"] #content .input-group > .form-select,
#account-login #content .input-group > .form-control,
#account-login #content .input-group > .form-select,
#account-register #content .input-group > .form-control,
#account-register #content .input-group > .form-select {
  flex: 1 1 auto;
  min-width: 0;
}

.container.oc-account-page[id^="account-"] #content form .row,
.container.oc-account-page[id^="account-"] #content > .row {
  margin-right: 0;
  margin-left: 0;
}

.container.oc-account-page[id^="account-"] #content form .row > .col,
.container.oc-account-page[id^="account-"] #content > .row > .col {
  padding-right: 0;
  padding-left: 0;
}

.container.oc-account-page[id^="account-"] #content .btn-primary {
  background: #fe0000;
  color: #fff;
  border: 0;
  border-radius: .75rem;
  min-height: 44px;
  font-weight: 700;
  box-shadow: none;
}

.container.oc-account-page[id^="account-"] #content .btn-primary:hover {
  background: #df0000;
  color: #fff;
}

.container.oc-account-page[id^="account-"] #content .btn-light,
.container.oc-account-page[id^="account-"] #content .btn-danger,
.container.oc-account-page[id^="account-"] #content .btn-info {
  border: 0;
  border-radius: .75rem;
  min-height: 42px;
  box-shadow: none;
}

.container.oc-account-page[id^="account-"] #content .btn-light {
  background: #ffffff;
  color: #1f2937;
}

.container.oc-account-page[id^="account-"] #content .btn-danger {
  background: #ffffff;
  color: #111827;
}

.container.oc-account-page[id^="account-"] #content .btn-info {
  background: #ffffff;
  color: #1e293b;
}

/* Account tables / lists */
.oc-account-table-wrap,
.container.oc-account-page[id^="account-"] #content .table-responsive {
  background: #f6f7f8;
  border-radius: 1rem;
  padding: .55rem;
}

.oc-account-table,
.container.oc-account-page[id^="account-"] #content .table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 .5rem;
}

.oc-account-table thead th,
.container.oc-account-page[id^="account-"] #content .table thead th {
  border: 0;
  background: #eceff2;
  color: #1f2937;
  font-weight: 700;
}

.oc-account-table tbody td,
.container.oc-account-page[id^="account-"] #content .table tbody td {
  border: 0;
  background: #ffffff;
  vertical-align: middle;
}

.oc-account-table tbody tr td:first-child,
.container.oc-account-page[id^="account-"] #content .table tbody tr td:first-child {
  border-top-left-radius: .75rem;
  border-bottom-left-radius: .75rem;
}

.oc-account-table tbody tr td:last-child,
.container.oc-account-page[id^="account-"] #content .table tbody tr td:last-child {
  border-top-right-radius: .75rem;
  border-bottom-right-radius: .75rem;
}

.oc-account-action-cell {
  display: flex;
  justify-content: flex-end;
  gap: .35rem;
}

.oc-action-btn {
  min-width: 42px;
  min-height: 42px;
  padding: 0 .75rem;
}

.oc-account-empty {
  margin: 0;
  color: #475569;
}

.oc-account-pagination-row {
  margin-top: .7rem;
  align-items: center;
}

.oc-account-pagination .pagination {
  margin: 0;
}

.oc-account-results {
  color: #64748b;
}

.oc-account-payment-list {
  display: grid;
  gap: .6rem;
}

.oc-account-payment-item > * {
  background: #ffffff;
  border-radius: .8rem;
}

@media (max-width: 991px) {
  .container.oc-account-page[id^="account-"] > .oc-account-layout > #column-right {
    max-height: none;
    overflow: visible;
    position: static;
  }

  .container.oc-account-page[id^="account-"] #content form .row.mb-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Contact page redesign */
#information-contact .oc-contact-lead {
  margin: -0.3rem 0 1.3rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #64748b;
}

#information-contact > .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 !important;
}

#information-contact > .row > * {
  margin: 0 !important;
  padding: 0 !important;
}

#information-contact #content {
  flex: 1 1 0%;
  min-width: 0;
}

#information-contact #column-left,
#information-contact #column-right {
  display: none;
}

#information-contact .oc-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 1.1rem;
  align-items: start;
}

#information-contact .oc-contact-panel {
  background: #f6f7f8;
  border-radius: 1rem;
  height: 100%;
  padding: 1.1rem;
}

#information-contact .oc-contact-panel .oc-section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 1.85vw, 1.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: #0f172a;
}

#information-contact h3 {
  margin-block: 15px;
  font-size: 22px;
  font-weight: 600;
}



#information-contact .oc-contact-store-image {
  border-radius: .85rem;
  overflow: hidden;
  background: #fff;
}

#information-contact .oc-contact-store-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
}

#information-contact .oc-contact-meta-list {
  display: grid;
  gap: .7rem;
}

#information-contact .oc-contact-meta {
  background: #ffffff;
  border-radius: .85rem;
  padding: .85rem .95rem;
}

#information-contact .oc-contact-meta h4 {
  margin: 0 0 .45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

#information-contact .oc-contact-callout {
  margin-top: .8rem;
}

#information-contact .oc-contact-callout h4 {
  font-size: 1.1rem;
  line-height: 1.35;
}

#information-contact .oc-contact-meta p,
#information-contact .oc-contact-meta address {
  margin: 0;
  white-space: normal;
  font-style: normal;
  color: #475569;
}

#information-contact .oc-contact-map-btn {
  margin-top: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

#information-contact .oc-contact-location-list {
  margin-top: .8rem;
  display: grid;
  gap: .8rem;
}

#information-contact .oc-contact-location-card {
  display: grid;
  grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
  gap: .85rem;
  background: #ffffff;
  border-radius: .85rem;
  overflow: hidden;
}

#information-contact .oc-contact-location-image {
  background: #f1f5f9;
}

#information-contact .oc-contact-location-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

#information-contact .oc-contact-location-content {
  padding: .82rem .95rem .95rem .1rem;
}

#information-contact .oc-contact-location-content h4 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

#information-contact .oc-contact-location-content address,
#information-contact .oc-contact-location-content p {
  margin: 0 0 .35rem;
  font-style: normal;
  color: #475569;
}

#information-contact .oc-contact-channel-list {
  margin-top: .9rem;
  display: grid;
  gap: .6rem;
}

#information-contact .oc-contact-channel {
  display: grid;
  gap: .15rem;
  background: #ffffff;
  border-radius: .85rem;
  padding: .8rem .95rem;
}

#information-contact .oc-contact-channel-title {
  font-size: .9rem;
  font-weight: 700;
  color: #0f172a;
}

#information-contact .oc-contact-channel-value {
  font-size: .95rem;
  font-weight: 600;
  color: #475569;
}

#information-contact .oc-contact-map-embed {
  border-radius: .85rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

#information-contact .oc-contact-map-embed iframe {
  width: 100%;
  height: 560px;
  border: 0;
}

@media (max-width: 1199px) {
  #information-contact .oc-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  #information-contact #column-left,
  #information-contact #column-right {
    display: block;
    width: 280px;
    max-width: 280px;
    flex: 0 0 280px;
    border-radius: 1rem;
    background: #f6f7f8;
    padding: .85rem !important;
    position: sticky;
    top: 1rem;
    align-self: flex-start;
    max-height: calc(100vh - 2rem);
    overflow: auto;
  }
}

@media (max-width: 767px) {
  #information-contact .oc-contact-store-main,
  #information-contact .oc-contact-location-card {
    grid-template-columns: 1fr;
  }

  #information-contact .oc-contact-location-content {
    padding: .82rem .95rem .95rem;
  }

  #information-contact .oc-contact-map-embed iframe {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .oc-hero-banner {
    min-height: 420px;
    border-radius: .7rem;
  }
  .oc-hero-banner .oc-hero-content {
    left: 1rem;
    right: 1rem;
  }
  .oc-hero-banner .oc-hero-title {
    font-size: clamp(1.5rem, 8vw, 2.4rem);
  }
}

@media (max-width: 640px) {
  .oc-banner-basic .oc-banner-basic-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Home Modules: Featured / Specials Swiper */
.oc-home-products {
  position: relative;
  margin-top: .5rem;
}
.oc-home-products .oc-home-products-head {
  margin-top: 100px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.oc-home-products .oc-home-products-head .oc-section-title {
  margin-top: 0 !important;
}
.oc-home-products .oc-home-products-nav {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.oc-home-products .oc-home-products-swiper {
  position: relative;
  padding: 1.15rem .65rem 0;
}
.oc-home-products .swiper-slide {
  height: auto;
}
.oc-home-products .oc-home-products-prev,
.oc-home-products .oc-home-products-next {
  width: 2.2rem !important;
  height: 2.2rem !important;
  border-radius: 9999px;
  border: 1px solid #f0b5b5;
  background: #fff;
  color: #ec1313 !important;
  position: static !important;
  inset: auto !important;
  margin: 0 !important;
}
.oc-home-products .oc-home-products-prev::after,
.oc-home-products .oc-home-products-next::after {
  content: none;
}
.oc-home-products .oc-home-products-prev i,
.oc-home-products .oc-home-products-next i {
  font-size: .75rem;
}

/* Home Custom Categories (between Featured and Special) */
#categories.oc-custom-categories {
  margin-top: 100px;
  position: relative;
  padding: 60px 0;
  background: #131217;
  box-shadow: 0 0 0 100vmax #131217;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
}
#categories.oc-custom-categories .categories__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  margin-block: 30px;
}
#categories.oc-custom-categories .categories__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}
#categories.oc-custom-categories .categories__head-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: all .25s ease;
}
#categories.oc-custom-categories .categories__head-link:hover {
  background: #ffffff;
  color: #131217;
}
#categories.oc-custom-categories .categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
#categories.oc-custom-categories .category-card {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #f6f6f6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}
#categories.oc-custom-categories .category-card__label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 12px;
  background: #dddddd;
  color: #111827;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .2px;
}
#categories.oc-custom-categories .category-card__label i {
  font-size: 16px;
  line-height: 1;
  color: #000;
}
#categories.oc-custom-categories .category-card__plus {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #6b7280;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#categories.oc-custom-categories .category-card__plus::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 11px solid #fe0000;
  opacity: 0;
  transform: scale(.85);
  transition: .5s ease;
}
#categories.oc-custom-categories .category-card__image {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 34px;
}
#categories.oc-custom-categories .category-card__image img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  filter: grayscale(1);
  transform: translateY(0) scale(1);
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), filter .6s ease;
}
#categories.oc-custom-categories .category-card__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  z-index: 1;
  background: radial-gradient(80% 60% at 50% 100%, rgba(254, 0, 0, .35), transparent 70%);
  opacity: 0;
  transform: translateY(14px);
  transition: .6s cubic-bezier(.22, 1, .36, 1);
}
#categories.oc-custom-categories .category-card:hover .category-card__image img {
  filter: grayscale(0);
  transform: translateY(-20px) scale(1.05);
}
#categories.oc-custom-categories .category-card:hover .category-card__glow {
  opacity: 1;
  transform: translateY(0);
}
#categories.oc-custom-categories .category-card:hover .category-card__plus::after {
  opacity: 1;
  transform: scale(1);
}

#categories.oc-custom-categories .categories__more {
  margin-top: 24px;
  text-align: center;
}

#categories.oc-custom-categories .categories__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all .25s ease;
}

#categories.oc-custom-categories .categories__more-btn:hover {
  background: #fff;
  color: #131217;
}

@media (max-width: 991.98px) {
  #categories.oc-custom-categories .categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  #categories.oc-custom-categories .categories__head {
    align-items: center;
    text-align: center;
  }

  #categories.oc-custom-categories .categories__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Product Cards (Grid + Row) */
.product-card {
  position: relative;
  height: 100%;
  border-radius: 20px;
  border: 0;
  background: #f1f1f1;
  overflow: visible;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card .pc-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  text-decoration: none;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}
.product-card.has-discount {
  background: #f1f1f1;
  border-color: transparent;
  box-shadow: none;
}
.product-card.has-discount:hover {
  box-shadow: none;
}
.product-card .pc-discount-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 50px;
  height: 50px;
  z-index: 9;
  pointer-events: none;
}
.product-card .pc-discount-badge-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.product-card .pc-discount-badge-text {
  position: absolute;
  left: 9px;
  top: 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .01em;
  transform: rotate(-45deg);
  transform-origin: center;
  text-transform: uppercase;
}
.product-card .pc-actions-top {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 10;
  display: flex;
  gap: .2rem;
}
.product-card .pc-icon-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.7);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.product-card .pc-icon-btn:hover {
  background: rgba(159, 33, 15, 0.85);
  color: #ffffff;
  transform: translateY(-1px) scale(1.04);
}
.product-card .pc-image-wrap {
  display: block;
  padding: 22px 20px 10px;
}
.product-card .pc-image {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
}
.product-card .pc-body {
  padding: .7rem 1.3rem 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 100px;
}
.product-card .pc-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: .005em;
  
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .pc-title {
  color: #101010;
}
.product-card .pc-model {
  
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 500;
  
}
.product-card .pc-rating {
  margin-top: .55rem;
  color: #f6be00;
  font-size: .9rem;
  display: flex;
  gap: .2rem;
  justify-content: flex-start;
}
.product-card .pc-price {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  min-height: 60px;
  flex-direction: column;
  gap: .22rem;
  justify-content: flex-end;
  align-items: flex-end;
  
}
.product-card .pc-price-old {
  color: #858585;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}
.product-card .pc-price-new {
  color: #9f210f;
  font-size: 1.1rem;
  line-height: .95;
  font-weight: 700;
  letter-spacing: .01em;
}
.product-card .pc-row-bottom {
  display: none;
}
.product-card .pc-grid-cart {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.product-card .pc-grid-cart-btn {
  width: 72px;
  height: 60px;
  border: 0;
  border-radius: 0 12px 0 20px;
  background: #06090f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}
.product-card .pc-grid-cart-btn:hover {
  background: #8f170d;
}

/* Row/List mode */
#product-list.product-list .product-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  border-radius: 20px;
  overflow: visible;
}
#product-list.product-list .product-card .pc-actions-top {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 10;
}
#product-list.product-list .product-card .pc-image-wrap {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  padding: 20px;
}
#product-list.product-list .product-card .pc-image {
  height: 140px;
}
#product-list.product-list .product-card .pc-body {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  padding: 1.15rem 1rem 1rem 0;
  padding-top: 3rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#product-list.product-list .product-card .pc-title {
  font-size: inherit;
}
#product-list.product-list .product-card .pc-model {
  font-size: 15px;
}
#product-list.product-list .product-card .pc-price-new {
  font-size: 1.1rem;
}
#product-list.product-list .product-card .pc-price-old {
  font-size: 0.9rem;
}
#product-list.product-list .product-card .pc-price {
  margin-top: .6rem;
  padding-top: 0;
  min-height: 0;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-end;
  gap: .6rem;
}
#product-list.product-list .product-card .pc-rating {
  justify-content: flex-end;
}
#product-list.product-list .product-card .pc-grid-cart {
  display: none;
}
#product-list.product-list .product-card .pc-row-bottom {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #ececec;
  padding: .95rem 1rem;
}
#product-list.product-list .product-card.has-discount .pc-row-bottom {
  background: #ececec;
}
#product-list.product-list .product-card .pc-delivery {
  color: #171717;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
#product-list.product-list .product-card .pc-cart-btn {
  border: 0;
  background: transparent;
  color: #171717;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
#product-list.product-list .product-card .pc-cart-btn:hover {
  color: #8f170d;
}

@media (max-width: 991px) {
  #product-list.product-list .product-card {
    grid-template-columns: 1fr;
  }
  #product-list.product-list .product-card .pc-image-wrap,
  #product-list.product-list .product-card .pc-body {
    grid-column: 1 / 2;
    padding: 1rem;
  }
  #product-list.product-list .product-card .pc-body {
    padding-top: .1rem;
    padding-left: 1rem;
    display: block;
  }
}

@media (max-width: 768px) {
  .product-card .pc-title {
    font-size: 1.9rem;
  }
  .product-card .pc-model {
    font-size: .95rem;
  }
  .product-card .pc-price-old {
    font-size: 1.1rem;
  }
  .product-card .pc-price-new {
    font-size: 2.9rem;
  }
}

/* Blog section - Airstore style */
.blog {
  margin-top: 100px;
  position: relative;
  padding: 36px 0 34px;
  background: #0b0f1e;
  box-shadow: 0 0 0 100vmax #0b0f1e;
  clip-path: inset(0 -100vmax);
}

.blog .container {
  background: transparent;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.blog .section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.55rem;
}

.blog .section-title {
  margin: 0;
  font-size: clamp(1.7rem, 2.9vw, 3.3rem);
  font-weight: 700;
  line-height: 1.1;
  color: #f8fafc;
}

.blog .about-top__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.8rem 2.15rem;
  border: 0;
  border-radius: 999px;
  color: #f8fbff;
  background: #fe0000;
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(63, 157, 229, 0.3);
}

.blog .about-top__btn:hover {
  background: #fe0000;
  color: #ffffff;
  transform: translateY(-1px);
}

.blog .blog__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.blog .blog-featured {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  min-height: 700px;
  text-decoration: none;
  background: #0f172a;
}

.blog .blog-featured__image {
  position: absolute;
  inset: 0;
}

.blog .blog-featured__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 14, .05) 25%, rgba(6, 8, 14, .82) 100%);
}

.blog .blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog .blog-featured__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.8rem;
}

.blog .blog-featured__meta {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(248, 250, 252, .9);
}

.blog .blog-featured__title {
  margin: 0;
  font-size: clamp(2rem, 3.15vw, 3.45rem);
  line-height: 1.06;
  font-weight: 700;
  color: #f8fafc;
}

.blog .blog-sidebar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.blog .blog-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  text-decoration: none;
  background: transparent;
  transition: transform .18s ease;
}

.blog .blog-card:hover {
  transform: translateY(-2px);
}

.blog .blog-card__image {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: .62rem;
  background: #12182a;
}

.blog .blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog .blog-card__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  
}

.blog .blog-card__meta {
  margin-bottom: 0.28rem;
  font-size: 0.96rem;
  line-height: 1.25;
  color: #aeb5c6;
}

.blog .blog-card__title {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
  font-weight: 700;
  color: #f4f6fb;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .blog {
    padding: 28px 0 24px;
  }

  .blog .blog-featured {
    min-height: 610px;
  }

  .blog .blog-featured__title {
    font-size: clamp(1.65rem, 3.8vw, 2.8rem);
  }
}

@media (max-width: 1099px) {
  .blog .blog__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog .blog-sidebar {
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .blog .blog__grid {
    align-items: stretch;
  }

  .blog .blog-featured,
  .blog .blog-sidebar {
    height: 100%;
  }

  .blog .blog-featured {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .blog {
    padding: 20px 0 16px;
  }

  .blog .section-top {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .blog .section-title {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .blog .about-top__btn {
    min-height: 44px;
    padding: .5rem 1.1rem;
    font-size: .9rem;
  }

  .blog .blog-featured {
    min-height: 360px;
    border-radius: 14px;
  }

  .blog .blog-featured__content {
    padding: 1rem;
  }

  .blog .blog-featured__meta {
    font-size: .85rem;
  }

  .blog .blog-featured__title {
    font-size: clamp(1.35rem, 6.2vw, 2rem);
  }

  .blog .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog .blog-card {
    gap: .5rem;
  }

  .blog .blog-card__image {
    border-radius: 12px;
    margin-bottom: .5rem;
  }

  .blog .blog-card__meta {
    font-size: .86rem;
  }

  .blog .blog-card__title {
    font-size: 1rem;
  }
}

/* Banner Module: Partners (Swiper) */
.oc-partners {
  margin-top: 1.5rem;
  
  border-radius: 1rem;
}
.oc-partners .oc-partners-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 100px !important;
  margin-bottom: 1rem;
}
.oc-partners .oc-partners-nav {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.oc-partners .oc-partners-title {
  margin: 0;
  margin-top: 0 !important;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: .01em;
  color: #111827;
}
.oc-partners .oc-partners-swiper {
  position: relative;
  padding: .25rem .25rem 2rem;
}
.oc-partners .swiper-slide {
  height: auto;
}
.oc-partners .oc-partner-card {
  height: 100%;
  border: 0;
  border-radius: .9rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.oc-partners .oc-partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.oc-partners .oc-partner-link {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem;
  text-decoration: none;
}
.oc-partners .oc-partner-image {
  max-height: 66px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.oc-partners .oc-partner-name {
  font-size: .8rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
}
.oc-partners .oc-partners-pagination {
  bottom: 0 !important;
}
.oc-partners .oc-partners-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #cbd5e1;
  opacity: 1;
}
.oc-partners .oc-partners-pagination .swiper-pagination-bullet-active {
  background: #ec1313;
}
.oc-partners .oc-partners-prev,
.oc-partners .oc-partners-next {
  width: 2.35rem !important;
  height: 2.35rem !important;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #f3b3b3;
  color: #ec1313 !important;
  position: static !important;
  inset: auto !important;
  margin: 0 !important;
}
.oc-partners .oc-partners-prev::after,
.oc-partners .oc-partners-next::after {
  content: none;
}
.oc-partners .oc-partners-prev i,
.oc-partners .oc-partners-next i {
  font-size: .8rem;
}

@media (max-width: 767px) {
  .oc-partners {
    
  }
  .oc-partners .oc-partners-header {
    margin-top: 100px !important;
  }
  .oc-partners .oc-partner-link {
    min-height: 118px;
  }
}

/* CTA module */
.oc-cta-section {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  isolation: isolate;
  background: linear-gradient(130deg, #060c17 0%, #111827 55%, #0f172a 100%);
  
}

.oc-cta-section::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 320px;
  height: 320px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(236, 19, 19, .24), rgba(236, 19, 19, 0));
  pointer-events: none;
}

.oc-cta-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 360px;
  height: 360px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59, 130, 246, .2), rgba(59, 130, 246, 0));
  pointer-events: none;
}

.oc-cta-section .oc-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  padding: 2rem 1.15rem;
}

.oc-cta-section .oc-cta-kicker {
  display: inline-block;
  margin-bottom: .8rem;
  padding: .28rem .72rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
  color: #dbeafe;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .17em;
}

.oc-cta-section .oc-cta-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.06;
  font-weight: 700;
}

.oc-cta-section .oc-cta-text {
  margin: .7rem 0 0;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 620px;
}

.oc-cta-section .oc-cta-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}

.oc-cta-section .oc-cta-link {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 74px;
  border-radius: 16px;
  padding: .95rem 1rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .25s ease, filter .25s ease;
}

.oc-cta-section .oc-cta-link:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.oc-cta-section .oc-cta-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  background: rgba(255, 255, 255, .16);
}

.oc-cta-section .oc-cta-link-content {
  display: grid;
  gap: .12rem;
}

.oc-cta-section .oc-cta-link-content strong {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 700;
}

.oc-cta-section .oc-cta-link-content small {
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  letter-spacing: .02em;
}

.oc-cta-section .oc-cta-link--wa {
  background: linear-gradient(135deg, #25D366 0%, #1fa954 100%);
  box-shadow: 0 14px 26px rgba(37, 211, 102, .28);
}

.oc-cta-section .oc-cta-link--tg {
  background: linear-gradient(135deg, #0088cc 0%, #0a6ca1 100%);
  box-shadow: 0 14px 26px rgba(0, 136, 204, .3);
}

.oc-cta-section .oc-cta-link--mm {
  background: linear-gradient(135deg, #ff6600 0%, #e35300 100%);
  box-shadow: 0 14px 26px rgba(255, 102, 0, .28);
}

/* Home page: prevent horizontal overflow from decorative/outside-card elements */
#common-home .oc-home-products,
#common-home .oc-blog-grid {
  overflow-x: clip;
}

#common-home,
#common-home #content {
  overflow-x: visible;
}

#common-home .oc-home-products .oc-home-products-swiper,
#common-home .oc-home-products .swiper {
  overflow-x: clip;
}

@media (min-width: 768px) {
  .oc-cta-section .oc-cta-shell {
    padding: 2.4rem 2rem;
  }

  .oc-cta-section .oc-cta-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oc-cta-section .oc-cta-link {
    min-height: 86px;
    padding: 1.05rem 1rem;
  }
}

@media (min-width: 1100px) {
  .oc-cta-section .oc-cta-shell {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2.6rem 2.4rem;
  }

  .oc-cta-section .oc-cta-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .oc-cta-section {
    border-radius: 20px;
  }

  .oc-cta-section .oc-cta-shell {
    padding: 1.35rem .95rem;
  }
}



footer {
  margin-top: 20px;
}

.footer {
  background: #ffffff;
  color: #111827;
  padding: 42px 0 18px;
  border-top: 1px solid #e5e7eb;
}

.footer .footer-top {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.35rem;
}

.footer .footer-col h4 {
  margin: 0 0 .9rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer .footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}

.footer .footer-col a {
  color: #1f2937;
  text-decoration: none;
  transition: color .2s ease;
}

.footer .footer-col a:hover {
  color: #fe0000;
}

.footer .footer-col.blogs .footer-blogs-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: .95rem;
}

.footer .footer-col.blogs li a {
  font-size: .93rem;
  line-height: 1.36;
}

.footer .footer-contacts p {
  margin: 0 0 .75rem;
  color: #1f2937;
  line-height: 1.45;
}

.footer .footer-contacts .footer-address {
  color: #4b5563;
}

.footer .footer-middle {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.footer .footer-brand a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer .footer-brand img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

.footer .footer-brand span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.footer .footer-socials {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.footer .footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1d5db;
  color: #111827;
  background: #f8fafc;
  text-decoration: none;
  transition: all .2s ease;
}

.footer .footer-socials a:hover {
  border-color: #fe0000;
  color: #fe0000;
  transform: translateY(-1px);
}

.footer .footer-payments {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.footer .footer-payments img {
  height: 30px;
  width: auto;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 8px;
  padding: 4px 7px;
}

.footer .footer_bottom {
  margin-top: 1.2rem;
  padding-top: .95rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer .footer_bottom p {
  margin: 0;
  color: #4b5563;
  font-size: .88rem;
}

.footer .footer_bottom a {
  color: #1f2937;
  text-decoration: none;
  font-size: .88rem;
  line-height: 1.3;
}

.footer .footer_bottom a:hover {
  color: #fe0000;
}

@media (min-width: 992px) {
  .footer .footer-top {
    grid-template-columns: 1fr .9fr 1.4fr 1fr;
    gap: 1.4rem;
  }

  .footer .footer-col.blogs .footer-blogs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer .footer-middle {
    grid-template-columns: auto 1fr auto;
    gap: 1.2rem;
  }

  .footer .footer_bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Inner Pages: shared design language */
.oc-page-shell {
  margin-top: 0;
}

.oc-side-col {
  display: none;
  width: 100%;
}

@media (min-width: 768px) {
  .oc-side-col {
    display: block;
  }
}

/* Bootstrap grid replacement for inner pages (Bootstrap removed on storefront) */
#account-account .row,
#account-register .row,
#account-wishlist .row,
#checkout-cart .row,
#product-compare .row,
.oc-cart-page .row,
.oc-auth-page .row,
.oc-account-page .row,
.oc-wishlist-page .row,
.oc-compare-page .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

#account-account .row > *,
#account-register .row > *,
#account-wishlist .row > *,
#checkout-cart .row > *,
#product-compare .row > *,
.oc-cart-page .row > *,
.oc-auth-page .row > *,
.oc-account-page .row > *,
.oc-wishlist-page .row > *,
.oc-compare-page .row > * {
  padding-right: 12px;
  padding-left: 12px;
  width: 100%;
  max-width: 100%;
}

#account-account .col,
#account-register .col,
#account-wishlist .col,
#checkout-cart .col,
#product-compare .col,
.oc-cart-page .col,
.oc-auth-page .col,
.oc-account-page .col,
.oc-wishlist-page .col,
.oc-compare-page .col {
  flex: 1 1 0%;
}

#product-compare .btn-block,
.oc-compare-page .btn-block {
  display: block;
  width: 100%;
}

@media (min-width: 576px) {
  #account-account .col-sm-6,
  #account-register .col-sm-6,
  #account-wishlist .col-sm-6,
  #checkout-cart .col-sm-6,
  #product-compare .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  #account-account .col-sm-2,
  #account-register .col-sm-2,
  #account-wishlist .col-sm-2,
  #checkout-cart .col-sm-2,
  #product-compare .col-sm-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  #account-account .col-sm-10,
  #account-register .col-sm-10,
  #account-wishlist .col-sm-10,
  #checkout-cart .col-sm-10,
  #product-compare .col-sm-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
}

@media (min-width: 768px) {
  #account-account .col-md-3,
  #account-register .col-md-3,
  #account-wishlist .col-md-3,
  #checkout-cart .col-md-3,
  #product-compare .col-md-3 { flex: 0 0 auto; width: 25%; }

  #account-account .col-md-4,
  #account-register .col-md-4,
  #account-wishlist .col-md-4,
  #checkout-cart .col-md-4,
  #product-compare .col-md-4 { flex: 0 0 auto; width: 33.333333%; }

  #account-account .col-md-6,
  #account-register .col-md-6,
  #account-wishlist .col-md-6,
  #checkout-cart .col-md-6,
  #product-compare .col-md-6 { flex: 0 0 auto; width: 50%; }

  #account-account .col-md-8,
  #account-register .col-md-8,
  #account-wishlist .col-md-8,
  #checkout-cart .col-md-8,
  #product-compare .col-md-8 { flex: 0 0 auto; width: 66.666667%; }

  #account-account .col-md-9,
  #account-register .col-md-9,
  #account-wishlist .col-md-9,
  #checkout-cart .col-md-9,
  #product-compare .col-md-9 { flex: 0 0 auto; width: 75%; }
}

@media (min-width: 992px) {
  #account-account .col-lg-3,
  #account-register .col-lg-3,
  #account-wishlist .col-lg-3,
  #checkout-cart .col-lg-3,
  #product-compare .col-lg-3 { flex: 0 0 auto; width: 25%; }

  #account-account .col-lg-4,
  #account-register .col-lg-4,
  #account-wishlist .col-lg-4,
  #checkout-cart .col-lg-4,
  #product-compare .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }

  #account-account .col-lg-6,
  #account-register .col-lg-6,
  #account-wishlist .col-lg-6,
  #checkout-cart .col-lg-6,
  #product-compare .col-lg-6 { flex: 0 0 auto; width: 50%; }

  #account-account .col-lg-8,
  #account-register .col-lg-8,
  #account-wishlist .col-lg-8,
  #checkout-cart .col-lg-8,
  #product-compare .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }

  #account-account .col-lg-9,
  #account-register .col-lg-9,
  #account-wishlist .col-lg-9,
  #checkout-cart .col-lg-9,
  #product-compare .col-lg-9 { flex: 0 0 auto; width: 75%; }
}

@media (min-width: 1200px) {
  #account-account .col-xl-3,
  #account-register .col-xl-3,
  #account-wishlist .col-xl-3,
  #checkout-cart .col-xl-3,
  #product-compare .col-xl-3 { flex: 0 0 auto; width: 25%; }

  #account-account .col-xl-4,
  #account-register .col-xl-4,
  #account-wishlist .col-xl-4,
  #checkout-cart .col-xl-4,
  #product-compare .col-xl-4 { flex: 0 0 auto; width: 33.333333%; }

  #account-account .col-xl-6,
  #account-register .col-xl-6,
  #account-wishlist .col-xl-6,
  #checkout-cart .col-xl-6,
  #product-compare .col-xl-6 { flex: 0 0 auto; width: 50%; }

  #account-account .col-xl-8,
  #account-register .col-xl-8,
  #account-wishlist .col-xl-8,
  #checkout-cart .col-xl-8,
  #product-compare .col-xl-8 { flex: 0 0 auto; width: 66.666667%; }

  #account-account .col-xl-9,
  #account-register .col-xl-9,
  #account-wishlist .col-xl-9,
  #checkout-cart .col-xl-9,
  #product-compare .col-xl-9 { flex: 0 0 auto; width: 75%; }
}

.oc-page-shell .breadcrumb,
.container .breadcrumb {
  --bs-breadcrumb-divider: "/";
  margin-block: 1rem 1.2rem;
  padding: .2rem 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.oc-page-shell .breadcrumb-item,
.oc-page-shell .breadcrumb-item a,
.container .breadcrumb-item,
.container .breadcrumb-item a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.25;
}

.oc-page-shell .breadcrumb-item a,
.container .breadcrumb-item a {
  color: #fe0000;
  text-decoration: underline;
  text-underline-offset: .14em;
  text-decoration-thickness: .06em;
}

.oc-page-shell .breadcrumb-item.active,
.container .breadcrumb-item.active {
  color: #7b8190;
}

.oc-page-shell .breadcrumb-item a:hover,
.container .breadcrumb-item a:hover {
  color: #fe0000;
}

.oc-page-shell .breadcrumb-item + .breadcrumb-item::before,
.container .breadcrumb-item + .breadcrumb-item::before {
  content: "/" !important;
  float: none;
  display: inline-block;
  padding-right: .5rem;
  color: #9ca3af;
  font-size: 1.05rem;
  line-height: 1;
}

.oc-page-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: .01em;
  color: #0f172a;
}

.oc-subtitle {
  margin: 0 0 .8rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
}

.oc-surface {
  border-radius: 1.1rem;
  border: 1px solid #f1d7d7;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.oc-btn-primary {
  border: 0;
  border-radius: .8rem;
  background: linear-gradient(135deg, #ef1f1f 0%, #b81212 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
}

.oc-btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #d91515 0%, #9f1010 100%);
}

.oc-btn-danger {
  border-radius: .8rem;
  font-weight: 700;
}

.oc-btn-ghost {
  border-radius: .8rem;
  border: 1px solid #fecaca;
  background: #fff;
  color: #991b1b;
  font-weight: 700;
}

.oc-btn-ghost:hover {
  color: #7f1d1d;
  background: #fff5f5;
}

.oc-table {
  margin-bottom: 0;
}

.oc-table th,
.oc-table td {
  border-color: #f0dada;
  vertical-align: middle;
}

.oc-table thead th,
.oc-table thead td {
  background: #fff4f4;
  color: #7f1d1d;
  font-weight: 700;
}

/* Category page */
#product-category .oc-category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

#product-category .oc-category-side {
  display: grid;
  gap: .9rem;
}

#product-category .oc-filter-panel {
  display: grid;
  gap: .95rem;
  padding: 10px;
  border-radius: .8rem;
  border: 1px solid #d7dce3;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

#product-category .oc-filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
}

#product-category .oc-filter-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
}

#product-category .oc-filter-clear {
  color: #ef4444;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

#product-category .oc-filter-section {
  display: grid;
  gap: .35rem;
}

#product-category .oc-filter-label {
  margin: 0;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
  font-weight: 700;
}

#product-category .oc-filter-categories {
  display: grid;
  gap: .5rem;
  max-height: 190px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: .25rem;
}

#product-category .oc-filter-category-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  min-height: 1.9rem;
}

#product-category .oc-filter-category-mark {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .56rem;
  flex-shrink: 0;
}

#product-category .oc-filter-category-link:hover .oc-filter-category-mark {
  border-color: #ef4444;
  color: #ef4444;
}

#product-category .oc-filter-category-link:hover .oc-filter-category-text {
  color: #ef4444;
}

#product-category .oc-filter-categories::-webkit-scrollbar {
  width: 7px;
}

#product-category .oc-filter-categories::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 9999px;
}

#product-category .oc-filter-categories::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

#product-category .oc-filter-categories::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

#product-category .oc-category-side-field {
  display: grid;
  gap: .35rem;
}

#product-category .oc-category-side-field label {
  margin: 0;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748b;
  font-weight: 700;
}

#product-category .oc-category-side-field .form-select {
  min-height: 44px;
  border-color: #d1d5db;
  width: 100%;
  border-radius: .55rem;
  background: #fff;
  color: #111827;
  font-weight: 600;
}

#product-category #column-left,
#product-category #column-right {
  width: 100%;
}

#product-category .oc-category-content {
  min-width: 0;
}

#product-category .oc-category-refine-single,
#product-category .oc-category-refine-grid {
  margin-bottom: 1rem;
}

#product-category .oc-category-refine-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: .75rem;
}

#product-category .oc-category-refine-col {
  padding: .8rem .9rem;
  border-radius: .8rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

#product-category .oc-category-refine-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}

#product-category .oc-category-refine-list a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
}

#product-category .oc-category-refine-list a:hover {
  color: #dc2626;
}

#product-category .oc-category-intro {
  margin-bottom: 1.2rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #f3dede;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

#product-category .oc-category-cover {
  border-radius: .8rem;
  border: 1px solid #f0d6d6;
}

#product-category .oc-category-description {
  color: #475569;
}

#product-category .oc-price-filter {
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#product-category .oc-price-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

#product-category .oc-price-filter-title {
  margin: 0;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: #6b7280;
}

#product-category .oc-price-filter-reset {
  color: #6b7280;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 600;
}

#product-category .oc-price-filter-ranges {
  display: grid;
  gap: .35rem;
}

#product-category .oc-price-filter-ranges input[type="range"] {
  width: 100%;
  accent-color: #dc2626;
}

#product-category .oc-price-filter-values {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-bottom: .7rem;
}

#product-category .oc-price-filter-field {
  display: grid;
  gap: .3rem;
}

#product-category .oc-price-filter-field label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748b;
  font-weight: 700;
}

#product-category .oc-price-filter-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #f2cfcf;
  border-radius: .7rem;
  padding: .5rem .7rem;
  background: #ffffff;
  color: #0f172a;
  caret-color: #dc2626;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

#product-category .oc-price-filter-field input::placeholder {
  color: #94a3b8;
}

#product-category .oc-price-filter-field input:focus {
  outline: none;
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16);
}

#product-category .oc-price-filter-apply {
  width: 100%;
  border: 1px solid #ef4444;
  border-radius: .55rem;
  padding: .58rem .9rem;
  background: #fff;
  color: #ef4444;
  font-weight: 700;
}

#product-category .oc-price-filter-apply:hover {
  background: #ef4444;
  color: #fff;
}

#product-category .oc-filter-compare {
  border-top: 1px solid #e5e7eb;
  padding-top: .95rem;
  display: grid;
  gap: .65rem;
}

#product-category .oc-filter-compare-btn {
  min-height: 44px;
  border: 1px solid #ef4444;
  border-radius: .55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ef4444;
  font-weight: 700;
  background: #fff;
}

#product-category .oc-filter-compare-btn:hover {
  background: #ef4444;
  color: #fff;
}

#product-category #product-list {
  margin-top: .8rem;
}

#product-category .oc-category-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}

#product-category .oc-category-head .oc-page-title {
  margin-bottom: 0;
}

#product-category .oc-category-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}

#product-category .oc-category-view-toggle {
  display: none;
}

#product-category .oc-category-view-toggle .btn-group {
  gap: .4rem;
}
.btn{padding: 10px;}
#product-category .oc-category-view-toggle .btn {
  min-width: 42px;
}

#product-category .oc-align-end {
  text-align: right;
}

#product-category .oc-category-pagination {
  margin-top: .95rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .45rem;
}

#product-category .oc-category-pagination-results {
  text-align: left;
}

#product-category .oc-category-pagination-nav .pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

#product-category .oc-category-pagination-nav .page-item {
  margin: 0;
}

#product-category .oc-category-pagination-nav .page-link {
  width: 2.45rem;
  height: 2.45rem;
  min-width: 2.45rem;
  min-height: 2.45rem;
  padding: 0;
  border: 0;
  border-radius: .6rem;
  background: #ffffff;
  color: #334155;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: none;
}

#product-category .oc-category-pagination-nav .page-item:not(.active) .page-link:hover {
  background: #eef2f7;
  color: #0f172a;
}

#product-category .oc-category-pagination-nav .page-item.active .page-link {
  background: #fe0000;
  color: #ffffff;
}

#product-category .oc-category-toolbar .input-group-text {
  border-color: #f1d4d4;
  background: #fff5f5;
  color: #7f1d1d;
  font-weight: 700;
}

#product-category .oc-category-toolbar .form-select {
  border-color: #f1d4d4;
  border-radius: .75rem;
  font-weight: 600;
}

/* Product detail page */
#product-info .oc-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

#product-info .oc-product-gallery,
#product-info .oc-product-summary {
  border-radius: 1.2rem;
  border: 1px solid #f0d9d9;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

#product-info .oc-product-gallery {
  padding: 1rem;
}

#product-info .oc-product-main-swiper {
  border-radius: 1rem;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #f1dcdc;
}

#product-info .oc-product-main-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  text-decoration: none;
}

#product-info .oc-product-main-image {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

#product-info .oc-product-main-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 9999px;
  border: 1px solid #fecaca;
  background: rgba(255, 255, 255, 0.92);
  color: #ef4444;
}

#product-info .oc-product-main-prev {
  left: .65rem;
}

#product-info .oc-product-main-next {
  right: .65rem;
}

#product-info .oc-product-thumb-swiper {
  margin-top: .85rem;
  padding-block: 10px;
}

#product-info .oc-product-thumb-swiper .swiper-slide {
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid #f1dede;
  cursor: pointer;
  background: #fff;
  opacity: .7;
}

#product-info .oc-product-thumb-swiper .swiper-slide-thumb-active {
  border-color: #ef4444;
  opacity: 1;
}

#product-info .oc-product-thumb-image {
  display: block;
  width: 100%;
  height: 80px;
  object-fit: cover;
}

#product-info .oc-product-summary {
  padding: 1.1rem 1rem;
}

#product-info .oc-product-meta {
  margin: 0;
  display: grid;
  gap: .35rem;
  color: #475569;
  font-weight: 600;
}

#product-info .oc-product-meta a {
  color: #dc2626;
  text-decoration: none;
}

#product-info .oc-product-rating {
  margin-top: .9rem;
}

#product-info .oc-product-rating p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem .65rem;
  color: #64748b;
}

#product-info .oc-product-rating a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 700;
}

#product-info .oc-product-price-block {
  margin-top: .9rem;
  margin-bottom: .85rem;
}

#product-info .oc-product-price-block .price-new {
  color: #9f210f;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: .95;
}

#product-info .oc-product-price-block .price-old {
  color: #6b7280;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

#product-info .oc-product-quick-actions {
  margin-top: .9rem;
  margin-bottom: 1rem;
}

#product-info .oc-product-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

#product-info .oc-product-action-group .btn {
  border-radius: .75rem;
  border: 1px solid #fed2d2;
  background: #fff;
  color: #9f210f;
  font-weight: 700;
}

#product-info .oc-product-action-group .btn:hover {
  background: #fff4f4;
}

#product-info .oc-product-form-wrap {
  padding-top: .25rem;
  border-top: 1px solid #f2dddd;
}

#product-info #product h3 {
  margin: 0 0 .75rem;
  font-size: 1.04rem;
  font-weight: 700;
  color: #0f172a;
}

#product-info #product .form-label {
  color: #1f2937;
  font-weight: 700;
}

#product-info #product .form-control,
#product-info #product .form-select,
#product-info #product textarea {
  border-radius: .75rem;
  border-color: #f0d2d2;
}

#product-info .oc-product-purchase {
  margin-top: 1rem;
}

#product-info .oc-qty-label {
  margin-bottom: .5rem;
  font-weight: 700;
  color: #1f2937;
}

#product-info .oc-qty-and-cart {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}

#product-info .oc-qty-control {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  border: 1px solid #f3d0d0;
  border-radius: .82rem;
  overflow: hidden;
  background: #fff;
}

#product-info .oc-qty-control .form-control {
  border: 0;
  text-align: center;
  font-weight: 700;
}

#product-info .oc-qty-btn {
  height: 100%;
  min-height: 44px;
  border: 0;
  background: #fff5f5;
  color: #9f210f;
  font-size: 1.15rem;
  font-weight: 700;
}

#product-info .oc-qty-btn:hover {
  background: #fee2e2;
}

#product-info .oc-product-add {
  min-height: 48px;
  border: 0;
  border-radius: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
}

#product-info .oc-product-section {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid #f2dcdc;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

#product-info #tab-review {
  scroll-margin-top: 120px;
}

#product-info .oc-product-section .oc-section-title {
  margin: 0 0 .8rem !important;
  font-size: clamp(1.15rem, 2vw, 1.55rem) !important;
  font-weight: 700 !important;
}

#product-info .oc-product-description,
#product-info .oc-product-tags {
  color: #475569;
}

#product-info .oc-product-tags a {
  color: #dc2626;
  text-decoration: none;
}

#product-info #tab-specification .table {
  margin-bottom: 0;
}

#product-info #tab-specification td {
  border-color: #f0dbdb;
}

/* Flat inner-page layout + surfaces (no borders/shadows) */
.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.d-grid {
  display: grid !important;
}

#account-account > .row,
#account-register > .row,
#account-wishlist > .row,
#checkout-cart > .row,
#product-compare > .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 !important;
}

#account-account > .row > *,
#account-register > .row > *,
#account-wishlist > .row > *,
#checkout-cart > .row > *,
#product-compare > .row > * {
  margin: 0 !important;
  padding: 10px !important;
}

#account-account #content,
#account-register #content,
#account-wishlist #content,
#checkout-cart #content,
#product-compare #content {
  flex: 1 1 0%;
  min-width: 0;
}

#account-account #column-left,
#account-account #column-right,
#account-register #column-left,
#account-register #column-right,
#account-wishlist #column-left,
#account-wishlist #column-right,
#checkout-cart #column-left,
#checkout-cart #column-right,
#product-compare #column-left,
#product-compare #column-right {
  display: none;
  width: 280px;
  max-width: 280px;
  flex: 0 0 280px;
  border-radius: 1rem;
  background: #f6f7f8;
  padding: .85rem;
}

#account-account #column-left > *,
#account-account #column-right > *,
#account-register #column-left > *,
#account-register #column-right > *,
#account-wishlist #column-left > *,
#account-wishlist #column-right > *,
#checkout-cart #column-left > *,
#checkout-cart #column-right > *,
#product-compare #column-left > *,
#product-compare #column-right > * {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

#account-account #column-left .list-group-item,
#account-account #column-right .list-group-item,
#account-register #column-left .list-group-item,
#account-register #column-right .list-group-item,
#account-wishlist #column-left .list-group-item,
#account-wishlist #column-right .list-group-item,
#checkout-cart #column-left .list-group-item,
#checkout-cart #column-right .list-group-item,
#product-compare #column-left .list-group-item,
#product-compare #column-right .list-group-item {
  border: 0 !important;
  border-radius: .75rem;
  background: #ffffff !important;
  margin-bottom: .5rem;
}

#account-account #content,
#account-login .oc-auth-card,
#account-register .oc-form-surface,
#account-wishlist #wishlist .oc-surface,
#checkout-cart #shopping-cart > .oc-surface,
#product-compare .oc-compare-table,
#checkout-checkout .oc-checkout-layout > div > div,
#checkout-checkout .oc-checkout-layout > div > form,
#checkout-checkout #checkout-shipping-method,
#checkout-checkout #checkout-payment-method,
#checkout-checkout #checkout-confirm {
  border: 0 !important;
  box-shadow: none !important;
  background: #f6f7f8;
}

#account-account #content,
#account-login .oc-auth-card,
#account-register .oc-form-surface {
  border-radius: 1rem;
  padding: 1rem;
}


#account-login .oc-auth-card,
#account-register .oc-auth-card {
  border: 0 !important;
  box-shadow: none !important;
  background: #f6f7f8;
  border-radius: 1rem;
  overflow: hidden;
}

#account-login .oc-auth-card-inner,
#account-register .oc-auth-card-inner {
  padding: 2rem;
}

.oc-auth-title {
  margin: 0 0 .5rem;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
}

.oc-auth-description {
  margin: 0 0 1.2rem;
  color: #6b7280;
  font-size: .95rem;
}

.oc-auth-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.oc-auth-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: .35rem;
  text-decoration: none;
  color: #6b7280;
  font-size: .95rem;
  font-weight: 700;
}

.oc-auth-link.is-active {
  color: #ef4444;
}

.oc-auth-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 9999px;
  background: #ef4444;
}

.oc-auth-form .mb-3 {
  margin-bottom: 1rem !important;
}

.oc-auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.oc-auth-label {
  margin-bottom: .35rem;
  color: #374151;
  font-size: .89rem;
  font-weight: 600;
}

.oc-auth-forgot {
  text-decoration: none;
  color: #ef4444;
  font-size: .78rem;
  font-weight: 600;
}

.oc-auth-input-wrap {
  position: relative;
}

.oc-auth-input-wrap > i {
  position: absolute;
  left: .8rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.oc-auth-input {
  min-height: 44px;
  border: 0 !important;
  border-radius: .75rem;
  background: #ffffff;
  box-shadow: none !important;
  padding-left: 2.25rem;
}

.oc-auth-submit {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.oc-auth-submit i {
  transition: transform .15s ease;
}

.oc-auth-submit:hover i {
  transform: translateX(3px);
}

#account-register .oc-auth-form .row.mb-3 {
  display: block;
  margin: 0 0 1rem !important;
}

#account-register .oc-auth-form .row.mb-3 > [class*="col-sm-"] {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

#account-register .oc-auth-form .col-form-label {
  display: block;
  margin: 0 0 .35rem;
  padding: 0;
  color: #374151;
  font-size: .89rem;
  font-weight: 600;
}

#account-register .oc-auth-form .form-select,
#account-register .oc-auth-form .form-control,
#account-register .oc-auth-form textarea {
  border: 0 !important;
  border-radius: .75rem;
  background: #ffffff;
  box-shadow: none !important;
}

#account-account .oc-link-list {
  display: grid;
  gap: .5rem;
  margin-bottom: 1.2rem;
}

#account-account .oc-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: .45rem .8rem;
  border-radius: .72rem;
  text-decoration: none;
  color: #334155;
  border: 0 !important;
  background: #ffffff;
  font-weight: 600;
}

#account-account .oc-link-list a:hover {
  color: #991b1b;
  background: #eef0f2;
}

#account-login .oc-auth-card .form-control,
#account-register .oc-form-surface .form-control,
#account-register .oc-form-surface .form-select,
#account-register .oc-form-surface textarea,
#checkout-checkout .oc-checkout-layout .form-control,
#checkout-checkout .oc-checkout-layout .form-select,
#checkout-checkout .oc-checkout-layout textarea {
  border: 0 !important;
  border-radius: .75rem;
  background: #ffffff;
  box-shadow: none !important;
}

#account-register .oc-form-surface fieldset + fieldset {
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 0;
}

#account-register .oc-form-surface legend {
  margin-bottom: .75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

/* Account sidebar menu with icons */
.oc-account-menu {
  border: 0 !important;
  box-shadow: none !important;
  background: #f6f7f8;
  border-radius: 1rem;
  padding: 1rem;
}

.oc-account-menu-title {
  margin: 0 0 .9rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #111827;
}

.oc-account-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}

.oc-account-menu-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 2.8rem;
  padding: .5rem .6rem;
  text-decoration: none;
  color: #4b5563;
  border-radius: .75rem;
  background: transparent;
  font-size: .9rem;
  font-weight: 600;
}

.oc-account-menu-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #ef4444;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}

.oc-account-menu-link:hover {
  background: #eceff2;
  color: #1f2937;
}

.oc-account-menu-link:hover .oc-account-menu-icon {
  background: #ef4444;
  color: #ffffff;
}

.oc-account-menu-link.is-active {
  background: #ffffff;
  color: #ef4444;
  font-weight: 700;
}

.oc-account-menu-link.is-active .oc-account-menu-icon {
  background: #ef4444;
  color: #ffffff;
}

/* Wishlist + compare + cart table refresh */
#account-wishlist #wishlist .table-responsive,
#checkout-cart #output-cart,
#product-compare #content > .table-responsive {
  border: 0 !important;
  box-shadow: none !important;
  background: #f6f7f8;
  border-radius: 1rem;
  padding: .35rem;
}

#account-wishlist #wishlist .oc-table,
#checkout-cart .oc-cart-table {
  border: 0 !important;
  border-collapse: separate;
  border-spacing: 0 .65rem;
  background: transparent;
}

#product-compare .oc-compare-table {
  border: 0 !important;
  border-collapse: collapse;
  background: #f6f7f8;
  border-radius: 1rem;
  overflow: hidden;
}

#account-wishlist #wishlist .oc-table th,
#account-wishlist #wishlist .oc-table td,
#checkout-cart .oc-cart-table th,
#checkout-cart .oc-cart-table td,
#product-compare .oc-compare-table th,
#product-compare .oc-compare-table td {
  border: 0 !important;
  background: #f6f7f8;
}

#account-wishlist #wishlist .oc-table thead th,
#account-wishlist #wishlist .oc-table thead td,
#checkout-cart .oc-cart-table thead th,
#checkout-cart .oc-cart-table thead td,
#product-compare .oc-compare-table thead th,
#product-compare .oc-compare-table thead td {
  background: #eceff2;
  color: #1f2937;
  font-weight: 700;
}

#account-wishlist #wishlist .oc-table tbody td:first-child,
#checkout-cart .oc-cart-table tbody td:first-child {
  border-top-left-radius: .75rem;
  border-bottom-left-radius: .75rem;
}

#account-wishlist #wishlist .oc-table tbody td:last-child,
#checkout-cart .oc-cart-table tbody td:last-child {
  border-top-right-radius: .75rem;
  border-bottom-right-radius: .75rem;
}

#product-compare .oc-compare-table img,
#account-wishlist #wishlist .oc-table img,
#checkout-cart .oc-cart-table img {
  border: 0;
  border-radius: .7rem;
  background: #ffffff;
}

#checkout-cart #shopping-cart .alert {
  border-radius: .8rem;
}

/* Checkout page */
#checkout-checkout .oc-checkout-layout legend,
#checkout-checkout .oc-checkout-layout h2,
#checkout-checkout .oc-checkout-layout h3 {
  color: #0f172a;
  font-weight: 700;
}

/* Blog listing page */
#cms-blog-list {
  --oc-blog-accent: #fe0000;
}

#cms-blog .row,
#cms-blog-list .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

#cms-blog .row > *,
#cms-blog-list .row > * {
  padding-right: 12px;
  padding-left: 12px;
  width: 100%;
  max-width: 100%;
}

#cms-blog .col,
#cms-blog-list .col {
  flex: 1 1 0%;
  min-width: 0;
}



#cms-blog-list .oc-blog-hero-top {
  display: grid;
  gap: .45rem;
}

#cms-blog-list .oc-blog-kicker {
  margin: 0;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #991b1b;
  font-weight: 700;
}

#cms-blog-list .oc-blog-hero-media {
  margin-top: .95rem;
  border-radius: 1rem;
  border: 1px solid #f4dfdf;
  overflow: hidden;
}

#cms-blog-list .oc-blog-hero-image {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

#cms-blog-list .oc-blog-hero-description {
  margin-top: .9rem;
  color: #475569;
  line-height: 1.75;
}

#cms-blog-list .oc-blog-hero-description > :last-child {
  margin-bottom: 0;
}

#cms-blog-list .oc-blog-toolbar {
  margin-bottom: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}

#cms-blog-list .oc-blog-toolbar .input-group {
  display: flex;
  align-items: center;
  gap: .6rem;
}

#cms-blog-list .oc-blog-search .form-control,
#cms-blog-list .oc-blog-search .form-select,
#cms-blog-list .oc-blog-sort .form-select {
  min-height: 48px;
  border-radius: .75rem;
  border: 1px solid #f1d4d4;
  background: #ffffff;
  color: #111827;
  box-shadow: none;
}

#cms-blog-list .oc-blog-search .form-control:focus,
#cms-blog-list .oc-blog-search .form-select:focus,
#cms-blog-list .oc-blog-sort .form-select:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

#cms-blog-list .oc-blog-search .btn {
  min-height: 48px;
  border-radius: .75rem;
  padding-inline: 1rem;
  white-space: nowrap;
}

#cms-blog-list .oc-blog-sort .input-group-text {
  border-radius: .75rem;
  border: 1px solid #f1d4d4;
  background: #fff4f4;
  color: #7f1d1d;
  font-weight: 700;
}

#cms-blog-list .oc-blog-cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

#cms-blog-list .oc-blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #efdfdf;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: transform .28s ease, box-shadow .28s ease;
}

#cms-blog-list .oc-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
}

#cms-blog-list .oc-blog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f8fafc;
}

#cms-blog-list .oc-blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

#cms-blog-list .oc-blog-card:hover .oc-blog-card-image {
  transform: scale(1.04);
}

#cms-blog-list .oc-blog-card-fallback {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1.2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #334155;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

#cms-blog-list .oc-blog-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: .72rem;
  padding: .95rem 1rem 1rem;
}

#cms-blog-list .oc-blog-card-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  color: #64748b;
  font-size: .82rem;
  font-weight: 600;
}

#cms-blog-list .oc-blog-card-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 .52rem 2px 0;
  border-radius: 999px;
  background: #cbd5e1;
  vertical-align: middle;
}

#cms-blog-list .oc-blog-card-meta a {
  color: #dc2626;
  text-decoration: none;
}

#cms-blog-list .oc-blog-card-title {
  margin: 0;
  font-size: clamp(1.05rem, 1.65vw, 1.2rem);
  line-height: 1.35;
  font-weight: 700;
}

#cms-blog-list .oc-blog-card-title a {
  color: #0f172a;
  text-decoration: none;
}

#cms-blog-list .oc-blog-card-title a:hover {
  color: #b91c1c;
}

#cms-blog-list .oc-blog-card-text {
  margin: 0;
  color: #475569;
  line-height: 1.67;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

#cms-blog-list .oc-blog-card-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: .3rem .85rem;
  border-radius: 999px;
  background: #fff1f1;
  color: #b91c1c;
  font-weight: 700;
  text-decoration: none;
}

#cms-blog-list .oc-blog-card-link:hover {
  background: #fee2e2;
  color: #991b1b;
}

#cms-blog-list .oc-blog-pagination {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}

#cms-blog-list .oc-blog-pagination-results {
  color: #64748b;
  font-weight: 600;
}

#cms-blog-list .oc-blog-pagination-nav .pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

#cms-blog-list .oc-blog-pagination-nav .page-item {
  margin: 0;
}

#cms-blog-list .oc-blog-pagination-nav .page-link {
  width: 2.45rem;
  height: 2.45rem;
  min-width: 2.45rem;
  min-height: 2.45rem;
  border: 0;
  border-radius: .65rem;
  background: #ffffff;
  color: #334155;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#cms-blog-list .oc-blog-pagination-nav .page-item:not(.active) .page-link:hover {
  background: #f1f5f9;
  color: #0f172a;
}

#cms-blog-list .oc-blog-pagination-nav .page-item.active .page-link {
  background: var(--oc-blog-accent);
  color: #ffffff;
}

#cms-blog-list .oc-blog-empty {
  margin: 0;
  padding: 1rem;
  border-radius: .9rem;
  border: 1px dashed #f3c5c5;
  background: #fff8f8;
  color: #7f1d1d;
  text-align: center;
  font-weight: 600;
}

/* Blog detail page */
#cms-blog .oc-blog-detail {
  border-radius: 1.15rem;
  
  background: linear-gradient(180deg, #ffffff 0%, #fffcfc 100%);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
  padding: clamp(1rem, 2vw, 1.35rem);
}

#cms-blog .oc-blog-detail-head {
  display: grid;
  gap: .72rem;
  margin-bottom: .95rem;
}

#cms-blog .oc-blog-cover-wrap {
  margin: 0 0 1rem;
  border-radius: 1rem;
  border: 1px solid #f2dddd;
  overflow: hidden;
}

#cms-blog .oc-blog-cover {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

#cms-blog .oc-blog-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  color: #6b7280;
  font-weight: 600;
}

#cms-blog .oc-blog-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 .52rem 2px 0;
  border-radius: 999px;
  background: #cbd5e1;
  vertical-align: middle;
}

#cms-blog .oc-blog-meta a,
#cms-blog .oc-blog-tags-list a {
  color: #dc2626;
  text-decoration: none;
}

#cms-blog .oc-blog-content {
  color: #334155;
  line-height: 1.8;
}

#cms-blog .oc-blog-content > :last-child {
  margin-bottom: 0;
}

#cms-blog .oc-blog-content h2,
#cms-blog .oc-blog-content h3,
#cms-blog .oc-blog-content h4 {
  margin-top: 1.2rem;
  color: #0f172a;
}

#cms-blog .oc-blog-content a {
  color: #b91c1c;
}

#cms-blog .oc-blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: .85rem;
}

#cms-blog .oc-blog-tags {
  margin-top: 1rem;
  padding-top: .95rem;
  border-top: 1px solid #f2e1e1;
  display: grid;
  gap: .55rem;
}

#cms-blog .oc-blog-tags-label {
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  font-weight: 700;
}

#cms-blog .oc-blog-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

#cms-blog .oc-blog-tags-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 999px;
  border: 1px solid #fecaca;
  background: #fff6f6;
  color: #b91c1c;
  padding: .24rem .75rem;
  font-weight: 700;
}

#cms-blog .oc-blog-tags-list a:hover {
  background: #fee2e2;
  color: #991b1b;
}

#cms-blog .oc-blog-comments {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #efdfdf;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

@media (min-width: 992px) {
  #account-account #column-left,
  #account-account #column-right,
  #account-register #column-left,
  #account-register #column-right,
  #account-wishlist #column-left,
  #account-wishlist #column-right,
  #checkout-cart #column-left,
  #checkout-cart #column-right,
  #product-compare #column-left,
  #product-compare #column-right {
    display: block;
    position: sticky;
    top: 1rem;
    align-self: flex-start;
    max-height: calc(100vh - 2rem);
    overflow: auto;
  }

  #product-category .oc-category-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

  #product-category .oc-category-side {
    position: sticky;
    top: 1rem;
  }

  #product-category .oc-category-content {
    grid-column: 2 / 3;
  }

  #product-category #column-right {
    grid-column: 2 / 3;
  }

  #product-category .oc-category-view-toggle {
    display: block;
  }

  #product-category .oc-category-pagination {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  #product-category .oc-category-pagination-results {
    text-align: right;
  }

  #product-info .oc-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    align-items: start;
  }

  #product-info .oc-product-summary {
    position: sticky;
    top: 1rem;
  }

  #product-info .oc-qty-and-cart {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  #product-category .oc-price-filter-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #cms-blog-list .oc-blog-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #cms-blog-list .oc-blog-pagination {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  #cms-blog-list .oc-blog-pagination-results {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .oc-page-shell {
    margin-top: 0;
  }

  .oc-page-shell .breadcrumb {
    padding: .6rem .75rem;
  }

  #product-info .oc-product-main-link {
    min-height: 240px;
  }

  #product-info .oc-product-thumb-image {
    height: 62px;
  }

  #product-info .oc-product-summary,
  #product-info .oc-product-gallery,
  #account-account #content,
  #account-login .oc-auth-card,
  #account-register .oc-form-surface,
  #cms-blog-list .oc-blog-hero,
  #cms-blog .oc-blog-detail,
  #cms-blog .oc-blog-comments {
    padding: .85rem;
  }

  #cms-blog-list .oc-blog-toolbar .input-group {
    flex-direction: column;
  }

  #cms-blog-list .oc-blog-search .btn {
    width: 100%;
  }

  #product-category .oc-category-refine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #cms-blog-list .oc-blog-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #product-category .oc-category-refine-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  #product-category .oc-category-refine-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Inner account commerce redesign overrides */
#account-login,
#account-register,
#account-wishlist,
#checkout-cart,
#product-compare,
#checkout-checkout {
  --oc-accent-red: #fe0000;
  --oc-accent-red-hover: #df0000;
}

#account-login .oc-btn-primary,
#account-register .oc-btn-primary,
#account-wishlist .oc-btn-primary,
#checkout-cart .oc-btn-primary,
#product-compare .oc-btn-primary,
#checkout-checkout .oc-btn-primary {
  background: var(--oc-accent-red) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

#account-login .oc-btn-primary:hover,
#account-register .oc-btn-primary:hover,
#account-wishlist .oc-btn-primary:hover,
#checkout-cart .oc-btn-primary:hover,
#product-compare .oc-btn-primary:hover,
#checkout-checkout .oc-btn-primary:hover {
  background: var(--oc-accent-red-hover) !important;
  color: #fff !important;
}

#account-login .oc-btn-primary:focus-visible,
#account-register .oc-btn-primary:focus-visible,
#account-wishlist .oc-btn-primary:focus-visible,
#checkout-cart .oc-btn-primary:focus-visible,
#product-compare .oc-btn-primary:focus-visible,
#checkout-checkout .oc-btn-primary:focus-visible {
  outline: 2px solid rgba(254, 0, 0, .22);
  outline-offset: 1px;
}

#account-login > .row,
#account-register > .row,
#account-wishlist > .row,
#checkout-cart > .row,
#product-compare > .row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

#account-login > .row > #content,
#account-register > .row > #content,
#account-wishlist > .row > #content,
#checkout-cart > .row > #content,
#product-compare > .row > #content {
  flex: 1 1 0%;
  min-width: 0;
}

#account-login > .row > #column-left,
#account-login > .row > #column-right,
#account-register > .row > #column-left,
#account-register > .row > #column-right,
#account-wishlist > .row > #column-left,
#account-wishlist > .row > #column-right,
#checkout-cart > .row > #column-left,
#checkout-cart > .row > #column-right,
#product-compare > .row > #column-left,
#product-compare > .row > #column-right {
  width: 100%;
  max-width: 400px;
  flex: 0 0 400px;
  background: #f6f7f8;
  border-radius: 1rem;
  padding: .85rem;
}

#account-wishlist #wishlist .oc-line-item-surface,
#checkout-cart #output-cart.oc-line-item-surface,
#product-compare .oc-compare-surface {
  border: 0 !important;
  box-shadow: none !important;
  background: #f6f7f8;
  border-radius: 1rem;
  padding: .65rem;
}

#account-wishlist .oc-line-item-table,
#checkout-cart .oc-line-item-table {
  margin: 0;
  border-collapse: separate;
  width: 100%;
  border-spacing: 0 .62rem;
  background: transparent;
}

#product-compare .oc-line-item-table {
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
}

#account-wishlist .oc-line-item-table th,
#account-wishlist .oc-line-item-table td,
#checkout-cart .oc-line-item-table th,
#checkout-cart .oc-line-item-table td,
#product-compare .oc-line-item-table th,
#product-compare .oc-line-item-table td {
  border: 0 !important;
  box-shadow: none !important;
  vertical-align: middle;
}

#account-wishlist .oc-line-item-table thead th,
#account-wishlist .oc-line-item-table thead td,
#checkout-cart .oc-line-item-table thead th,
#checkout-cart .oc-line-item-table thead td,
#product-compare .oc-line-item-table thead th,
#product-compare .oc-line-item-table thead td {
  background: #eceff2;
  color: #1f2937;
  font-weight: 700;
  padding: .78rem .95rem;
}

#account-wishlist .oc-line-item-table tbody td,
#checkout-cart .oc-line-item-table tbody td {
  background: #ffffff;
  padding: .8rem .95rem;
}

#account-wishlist .oc-line-item-table tbody td:first-child,
#checkout-cart .oc-line-item-table tbody td:first-child {
  border-top-left-radius: .78rem;
  border-bottom-left-radius: .78rem;
}

#account-wishlist .oc-line-item-table tbody td:last-child,
#checkout-cart .oc-line-item-table tbody td:last-child {
  border-top-right-radius: .78rem;
  border-bottom-right-radius: .78rem;
}

#account-wishlist .oc-action-cell {
  width: 210px;
  min-width: 210px;
}

#account-wishlist .oc-line-item-table .price,
#checkout-cart .oc-line-item-table .price {
  font-weight: 700;
  color: #111827;
}

#product-compare .oc-line-item-table tbody td:first-child {
  background: #eceff2;
  color: #334155;
  font-weight: 700;
  min-width: 170px;
}

#product-compare .oc-line-item-table tbody td:not(:first-child) {
  background: #ffffff;
  padding: .78rem .92rem;
}

#product-compare .oc-line-item-table > tr td {
  border: 0 !important;
  background: #f6f7f8;
  padding: .7rem .5rem;
}

#account-wishlist .oc-col-image,
#checkout-cart .oc-col-image {
  width: 148px;
  min-width: 148px;
}

.oc-line-item-image {
  width: 120px;
  height: 120px;
  max-width: 120px;
  padding: 10px !important;
  border: 0 !important;
  display: block;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

#account-wishlist .oc-line-item-table td a,
#checkout-cart .oc-line-item-table td a,
#product-compare .oc-line-item-table td a {
  color: #111827;
  font-weight: 700;
  text-decoration: none;
}

#account-wishlist .oc-line-item-table td a:hover,
#checkout-cart .oc-line-item-table td a:hover,
#product-compare .oc-line-item-table td a:hover {
  color: var(--oc-accent-red);
}

.oc-table-actions {
  display: grid !important;
  gap: .45rem;
  min-width: 170px;
}

.oc-table-primary-action,
.oc-table-secondary-action {
  width: 100%;
  min-height: 44px;
  border-radius: .7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.1;
  padding: .5rem .95rem;
  white-space: nowrap;
}

.oc-table-secondary-action {
  border: 0 !important;
  background: #ffffff !important;
  color: #0f172a !important;
}

.oc-table-secondary-action:hover {
  background: #eceff2 !important;
  color: #0f172a !important;
}

#checkout-cart .oc-cart-modules-head {
  margin-top: 1rem;
}

#checkout-cart .oc-cart-modules-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 700;
}

#checkout-cart .oc-cart-modules-subtitle {
  margin: .4rem 0 0;
  color: #64748b;
}

#checkout-cart .oc-cart-modules {
  margin-top: .75rem;
  display: grid;
  gap: .85rem;
}

#checkout-cart .oc-visually-hidden,
#checkout-cart .oc-visually-hidden-submit {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

#checkout-cart .oc-cart-coupon {
  border-radius: 1rem;
  background: #f6f7f8;
  padding: 1rem;
}

#checkout-cart .oc-cart-coupon-head {
  margin-bottom: .75rem;
}

#checkout-cart .oc-cart-coupon-title {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}

#checkout-cart .oc-cart-coupon-help {
  margin: .3rem 0 0;
  color: #64748b;
  font-size: .9rem;
}

#checkout-cart .oc-cart-coupon-form {
  margin: 0;
}

#checkout-cart .oc-cart-shipping-form {
  margin: 0;
}

#checkout-cart .oc-cart-shipping-fields {
  display: grid;
  gap: .75rem;
}

#checkout-cart .oc-cart-shipping-field {
  display: grid;
  gap: .35rem;
}

#checkout-cart .oc-cart-shipping-label {
  margin: 0;
  color: #0f172a;
  font-size: .88rem;
  font-weight: 700;
}

#checkout-cart .oc-cart-shipping-select {
  padding-right: 2rem;
}

#checkout-cart .oc-cart-coupon-input {
  display: block;
  width: 100%;
  min-height: 44px;
  border-radius: 9999px;
  border: 1px solid #d5dbe5 !important;
  background: #ffffff;
  color: #0f172a;
  box-shadow: none !important;
}

#checkout-cart .oc-cart-coupon-input:focus {
  border-color: #fe0000 !important;
}

#checkout-cart .oc-cart-coupon-actions {
  margin-top: .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

#checkout-cart .oc-cart-coupon-btn {
  min-height: 42px;
  border-radius: 9999px;
  padding-inline: 1rem;
  font-weight: 700;
}

#checkout-cart .oc-cart-coupon-btn-remove {
  border: 0 !important;
  background: #ffffff !important;
  color: #0f172a !important;
}

#checkout-cart .oc-cart-coupon-btn-remove:hover {
  background: #eceff2 !important;
}

#checkout-cart .oc-cart-qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

#checkout-cart .oc-cart-qty-group {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #dbe2ea;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  min-height: 44px;
  overflow: hidden;
}

#checkout-cart .oc-cart-qty-btn {
  width: 40px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#checkout-cart .oc-cart-qty-btn:hover {
  background: #f1f5f9;
}

#checkout-cart .oc-cart-qty-input {
  width: 58px;
  min-width: 58px;
  height: 42px;
  border: 0 !important;
  border-left: 1px solid #edf2f7 !important;
  border-right: 1px solid #edf2f7 !important;
  border-radius: 0;
  background: #ffffff !important;
  box-shadow: none !important;
  text-align: center;
  color: #0f172a;
  font-weight: 700;
  padding: 0 .2rem;
}

#checkout-cart .oc-cart-qty-input:focus {
  box-shadow: none !important;
}

#checkout-cart .oc-line-item-btn-icon {
  min-width: 44px;
  min-height: 44px;
  border-radius: .68rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#checkout-cart .oc-line-item-btn-icon.oc-btn-danger {
  border: 0 !important;
  background: #ffffff !important;
  color: #0f172a !important;
}

#checkout-cart .oc-line-item-btn-icon.oc-btn-danger:hover {
  background: #eceff2 !important;
}

#checkout-cart .oc-cart-remove-btn {
  border-radius: 9999px;
}

.oc-cart-bottom-actions {
  margin-top: 1rem;
  align-items: center;
}

.oc-cart-bottom-btn {
  min-height: 46px;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  #account-login > .row,
  #account-register > .row,
  #account-wishlist > .row,
  #checkout-cart > .row,
  #product-compare > .row {
    flex-wrap: nowrap;
  }

  #account-login > .row > #column-left,
  #account-login > .row > #column-right,
  #account-register > .row > #column-left,
  #account-register > .row > #column-right,
  #account-wishlist > .row > #column-left,
  #account-wishlist > .row > #column-right,
  #checkout-cart > .row > #column-left,
  #checkout-cart > .row > #column-right,
  #product-compare > .row > #column-left,
  #product-compare > .row > #column-right {
    display: block;
    position: sticky;
    top: 1rem;
    align-self: flex-start;
    max-height: calc(100vh - 2rem);
    overflow: auto;
  }
}

@media (max-width: 991px) {
  #account-login > .row,
  #account-register > .row,
  #account-wishlist > .row,
  #checkout-cart > .row,
  #product-compare > .row {
    flex-wrap: wrap;
  }

  #account-login > .row > #content,
  #account-register > .row > #content,
  #account-wishlist > .row > #content,
  #checkout-cart > .row > #content,
  #product-compare > .row > #content {
    order: 1;
    flex: 1 1 100%;
  }

  #account-login > .row > #column-left,
  #account-login > .row > #column-right,
  #account-register > .row > #column-left,
  #account-register > .row > #column-right,
  #account-wishlist > .row > #column-left,
  #account-wishlist > .row > #column-right,
  #checkout-cart > .row > #column-left,
  #checkout-cart > .row > #column-right,
  #product-compare > .row > #column-left,
  #product-compare > .row > #column-right {
    display: block !important;
    order: 2;
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .oc-cart-bottom-actions {
    display: grid;
    gap: .68rem;
  }

  .oc-cart-bottom-actions .col,
  .oc-cart-bottom-actions .oc-cart-bottom-start,
  .oc-cart-bottom-actions .oc-cart-bottom-end {
    width: 100%;
    text-align: left !important;
  }

  .oc-cart-bottom-btn {
    width: 100%;
    min-width: 0;
  }

  #checkout-cart .oc-cart-coupon-actions .oc-cart-coupon-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Login/Register visual match */
#account-login .oc-auth-card,
#account-register .oc-auth-card {
  background: #f6f7f8 !important;
  border: 1px solid #e4e7ec !important;
  border-radius: 1.25rem;
  padding: 0;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08) !important;
}

#account-login .oc-auth-card-inner,
#account-register .oc-auth-card-inner {
  padding: 2.4rem;
}

#account-login .oc-auth-content,
#account-register .oc-auth-content {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

#account-login .oc-auth-title,
#account-register .oc-auth-title {
  margin: 0 0 .7rem;
  font-size: clamp(1.85rem, 2.4vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0f172a;
}

#account-login .oc-auth-description,
#account-register .oc-auth-description {
  margin: 0 0 1.5rem;
  font-size: clamp(.95rem, 1.15vw, 1.1rem);
  color: #667085;
}

#account-login .oc-auth-links,
#account-register .oc-auth-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin: 0 0 1.8rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #dfe4ea;
}

#account-login .oc-auth-link,
#account-register .oc-auth-link {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 600;
  color: #6b7280;
}

#account-login .oc-auth-link.is-active,
#account-register .oc-auth-link.is-active {
  color: #ef4444;
}

#account-login .oc-auth-form .mb-3,
#account-register .oc-auth-form .mb-3 {
  margin-bottom: 1.35rem !important;
}

#account-login .oc-auth-label,
#account-register .oc-auth-form .col-form-label {
  margin-bottom: .45rem;
  color: #374151;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}

#account-login .oc-auth-label-row {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .25rem;
}

#account-login .oc-auth-forgot {
  font-size: .95rem;
  font-weight: 600;
  color: #ef4444;
}

#account-login .oc-auth-input-wrap,
#account-register .oc-auth-form .col-sm-10 {
  width: 100%;
  max-width: 100%;
}

#account-login .oc-auth-input,
#account-register .oc-auth-form .form-control,
#account-register .oc-auth-form .form-select,
#account-register .oc-auth-form textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  border: 0 !important;
  border-radius: .95rem;
  background: #dfe6f3 !important;
  box-shadow: none !important;
  color: #111827;
  padding-block: .85rem;
  padding-inline: 1rem;
}

#account-login .oc-auth-input {
  padding-inline-start: 2.3rem;
}

#account-login .oc-auth-input-wrap > i {
  left: .92rem;
  color: #9ca3af;
}

#account-register .oc-auth-fieldset {
  margin: 0;
  border: 0;
}



#account-register .oc-auth-fieldset legend {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

#account-register .oc-auth-form .row.mb-3 {
  display: block;
  margin-bottom: 1.35rem !important;
}

#account-register .oc-auth-check {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
}

#account-register .oc-auth-submit-row {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

#account-register .oc-auth-agree {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 500;
  color: #111827;
  width: 100%;
  text-align: center;
}

#account-register .oc-auth-checkbox {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #fe0000;
}

#account-login .oc-auth-submit,
#account-register .oc-auth-submit {
  width: 100%;
  min-height: 56px;
  border-radius: 1rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 700;
  background-image: none !important;
}

#account-login .oc-auth-submit i,
#account-register .oc-auth-submit i {
  font-size: 1.05em;
}

#account-login .oc-auth-label,
#account-register .oc-auth-form .col-form-label,
#account-login .oc-auth-forgot,
#account-register .oc-auth-description,
#account-login .oc-auth-description {
  text-align: center;
}

/* Account features card style */
.oc-account-menu {
  background: #f6f7f8;
  border: 1px solid #e4e7ec;
  border-radius: 1.1rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  padding: 1.15rem;
}

.oc-account-menu-title {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
}

.oc-account-menu-list {
  gap: .5rem;
}

.oc-account-menu-link {
  min-height: 3.2rem;
  gap: .78rem;
  padding: .68rem .78rem;
  border-radius: .9rem;
  color: #4b5563;
  font-size: .98rem;
  font-weight: 700;
}

.oc-account-menu-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: #ffffff;
  color: #ef4444;
  font-size: .95rem;
}

.oc-account-menu-link:hover {
  background: #eef2f6;
  color: #1f2937;
}

.oc-account-menu-link.is-active {
  background: #ffffff;
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.oc-account-menu-link.is-active .oc-account-menu-icon {
  background: #ef4444;
  color: #ffffff;
}

@media (max-width: 991px) {
  #account-login .oc-auth-card-inner,
  #account-register .oc-auth-card-inner {
    padding: 1.25rem;
  }

  #account-login .oc-auth-input-wrap,
  #account-register .oc-auth-form .col-sm-10 {
    max-width: 100%;
  }

  #account-login .oc-auth-link,
  #account-register .oc-auth-link {
    font-size: 1rem;
  }

  #account-login .oc-auth-title,
  #account-register .oc-auth-title,
  #account-register .oc-auth-fieldset legend,
  .oc-account-menu-title {
    font-size: 1.65rem;
  }

  #account-login .oc-auth-label,
  #account-register .oc-auth-form .col-form-label,
  #account-login .oc-auth-forgot,
  #account-register .oc-auth-agree,
  #account-login .oc-auth-submit,
  #account-register .oc-auth-submit,
  .oc-account-menu-link {
    font-size: .95rem;
  }
}

/* Button shape parity for light/primary on inner pages */
#account-account #content .btn.btn-primary,
#account-account #content .btn.btn-light,
#account-edit #content .btn.btn-primary,
#account-edit #content .btn.btn-light,
#account-password #content .btn.btn-primary,
#account-password #content .btn.btn-light,
#account-address #content .btn.btn-primary,
#account-address #content .btn.btn-light,
#account-newsletter #content .btn.btn-primary,
#account-newsletter #content .btn.btn-light,
#account-affiliate #content .btn.btn-primary,
#account-affiliate #content .btn.btn-light,
#account-forgotten #content .btn.btn-primary,
#account-forgotten #content .btn.btn-light,
#account-reset #content .btn.btn-primary,
#account-reset #content .btn.btn-light,
#account-order #content .btn.btn-primary,
#account-order #content .btn.btn-light,
#account-return #content .btn.btn-primary,
#account-return #content .btn.btn-light,
#account-reward #content .btn.btn-primary,
#account-reward #content .btn.btn-light,
#account-subscription #content .btn.btn-primary,
#account-subscription #content .btn.btn-light,
#account-transaction #content .btn.btn-primary,
#account-transaction #content .btn.btn-light,
#account-tracking #content .btn.btn-primary,
#account-tracking #content .btn.btn-light,
#account-wishlist #content .btn.btn-primary,
#account-wishlist #content .btn.btn-light,
#checkout-cart #content .btn.btn-primary,
#checkout-cart #content .btn.btn-light,
#product-compare #content .btn.btn-primary,
#product-compare #content .btn.btn-light {
  min-height: 44px;
  border-radius: .75rem;
  padding-block: 5px !important;
  padding-inline: 8px !important;
}

/* CTA replacement: Onfooter section */
.onfooter {
  padding: 80px 0;
  margin-bottom: 0;
  background-color: #fff;
}

.onfooter__box {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.onfooter__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.onfooter__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 73%);
  z-index: 1;
}

.onfooter__content {
  text-align: center !important;
  position: relative;
  z-index: 2;
  
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  padding: 32px;
  margin:  0 !important;
  border-radius: 24px;
}

.onfooter__title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.onfooter__subtitle {
  font-size: 15px;
  color: #fff;
  margin-bottom: 28px;
  max-width: 460px;
}

.onfooter__actions {
  display: flex;
  gap: 16px;
}

.onfooter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.onfooter__btn--whatsapp {
  border-color: #25d366;
  background-color: #25d366;
}

.onfooter__btn--whatsapp:hover {
  background-color: transparent;
  color: #25d366;
}

.onfooter__btn--telegram {
  border-color: #26a5e4;
  background-color: #26a5e4;
}

.onfooter__btn--telegram:hover {
  background-color: transparent;
  color: #26a5e4;
}

.onfooter__btn--maxmedia {
  border-color: #ff6a00;
  background-color: #ff6a00;
}

.onfooter__btn--maxmedia:hover {
  background-color: transparent;
  color: #ff6a00;
}

@media (min-width: 768px) {
  .onfooter .container {
    max-width: 75% !important;
  }
}

@media (max-width: 991.98px) {
  .onfooter__box {
    min-height: 340px;
  }

  .onfooter__content {
    max-width: 100%;
    margin: 0 16px 16px;
    padding: 24px;
  }

  .onfooter__title {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .onfooter__actions {
    flex-direction: column;
  }
}

/* Product detail redesign (light surfaces, no borders) */
#product-info {
  --oc-product-bg: #f3f6fb;
  --oc-product-surface: #ffffff;
  --oc-product-soft: #f8faff;
  --oc-product-text: #0f172a;
  --oc-product-muted: #64748b;
  --oc-product-accent: #fe0000;
  --oc-product-shadow-lg: 0 24px 50px rgba(15, 23, 42, 0.1);
  --oc-product-shadow-md: 0 12px 28px rgba(15, 23, 42, 0.08);
  --oc-product-shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.06);
}

#product-info .oc-product-layout {
  gap: 1.45rem;
}

#product-info .oc-product-gallery,
#product-info .oc-product-summary,
#product-info .oc-product-section {
  border: 0 !important;
  background: var(--oc-product-surface);
  border-radius: 1.35rem;
  box-shadow: var(--oc-product-shadow-md);
}

#product-info .oc-product-gallery {
  padding: 1rem;
  background: linear-gradient(160deg, #ffffff 0%, var(--oc-product-bg) 100%);
}

#product-info .oc-product-main-swiper {
  border: 0 !important;
  border-radius: 1.1rem;
  background: var(--oc-product-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

#product-info .oc-product-main-link {
  min-height: 420px;
}

#product-info .oc-product-main-image {
  max-height: 560px;
  padding: .8rem;
}

#product-info .oc-product-main-nav {
  border: 0 !important;
  background: rgba(255, 255, 255, 0.9);
  color: #c30f0f;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

#product-info .oc-product-main-nav:hover {
  background: #ffffff;
}

#product-info .oc-product-thumb-swiper .swiper-slide {
  border: 0 !important;
  background: #ffffff;
  box-shadow: var(--oc-product-shadow-sm);
  opacity: .8;
}

#product-info .oc-product-thumb-swiper .swiper-slide-thumb-active {
  box-shadow: 0 0 0 2px rgba(254, 0, 0, 0.2), var(--oc-product-shadow-sm);
}

#product-info .oc-product-thumb-image {
  height: 90px;
  object-fit: contain;
  padding: .45rem;
  background: var(--oc-product-soft);
}

#product-info .oc-product-summary {
  padding: 1.25rem 1.15rem;
  color: var(--oc-product-text);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

#product-info .oc-product-summary .oc-page-title {
  margin: 0 0 .85rem !important;
  font-size: clamp(1.35rem, 2vw, 2rem) !important;
  line-height: 1.2;
}

#product-info .oc-product-meta {
  gap: .45rem;
  color: var(--oc-product-muted);
}

#product-info .oc-product-meta li {
  padding: .5rem .7rem;
  border-radius: .75rem;
  background: var(--oc-product-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

#product-info .oc-product-meta a {
  color: #c31414;
  font-weight: 700;
}

#product-info .oc-product-rating p {
  padding: .55rem .75rem;
  border-radius: .75rem;
  background: var(--oc-product-soft);
  color: var(--oc-product-muted);
}

#product-info .oc-product-price-block {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: .9rem .9rem .8rem;
  border-radius: .95rem;
  background: linear-gradient(135deg, #fff1f1 0%, #fffaf7 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

#product-info .oc-product-price-block .price-new {
  color: #b01212;
  font-size: clamp(1.85rem, 2vw, 1.85rem);
}

#product-info .oc-product-price-block .price-old {
  color: #7b8798;
}

#product-info .oc-product-action-group {
  gap: .65rem;
}

#product-info .oc-product-action-group .btn {
  border: 0 !important;
  background: #f4f7fc;
  color: #1f2937;
  box-shadow: var(--oc-product-shadow-sm);
}

#product-info .oc-product-action-group .btn:hover {
  background: #eef3fb;
  color: #0f172a;
}

#product-info .oc-product-form-wrap {
  border: 0 !important;
  padding-top: .45rem;
}

#product-info hr {
  border: 0 !important;
  height: 1px;
  background: #e6ebf5;
  margin: .9rem 0;
}

#product-info #product h3 {
  margin-bottom: .7rem;
}

#product-info #product .form-control,
#product-info #product .form-select,
#product-info #product textarea,
#product-info #product .btn-light {
  border: 0 !important;
  background: #f4f7fc;
  border-radius: .8rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

#product-info #product .form-control:focus,
#product-info #product .form-select:focus,
#product-info #product textarea:focus {
  box-shadow: 0 0 0 3px rgba(254, 0, 0, 0.15);
}

#product-info .oc-qty-control {
  border: 0 !important;
  background: #f4f7fc;
  box-shadow: var(--oc-product-shadow-sm);
}

#product-info .oc-qty-control .form-control {
  background: transparent;
}

#product-info .oc-qty-btn {
  background: #edf2fb;
  color: #991b1b;
}

#product-info .oc-qty-btn:hover {
  background: #e3ebf8;
}

#product-info .oc-product-add {
  border: 0 !important;
  color: #fff;
  border-radius: .88rem;
  min-height: 50px;
  background: linear-gradient(120deg, #fe0000 0%, #d80a0a 100%);
  box-shadow: 0 14px 28px rgba(254, 0, 0, 0.28);
}

#product-info .oc-product-add:hover {
  filter: brightness(1.02);
}

#product-info .oc-product-section {
  margin-top: 1.3rem;
  padding: 1.15rem 1.1rem;
}

#product-info .oc-product-section .oc-section-title {
  margin-bottom: .9rem !important;
}

#product-info .oc-product-description,
#product-info .oc-product-tags {
  color: #334155;
  line-height: 1.7;
}

#product-info #tab-specification .table,
#product-info #tab-specification .table-bordered {
  border: 0 !important;
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0 .55rem;
}

#product-info #tab-specification thead td,
#product-info #tab-specification thead th {
  border: 0 !important;
  background: #ecf2fb;
  color: #0f172a;
  font-weight: 700;
  padding: .65rem .85rem;
}

#product-info #tab-specification tbody td {
  border: 0 !important;
  background: #f7f9fe;
  color: #334155;
  padding: .72rem .85rem;
}

#product-info #tab-review .card,
#product-info #tab-review .list-group-item,
#product-info #tab-review .form-control,
#product-info #tab-review .form-select,
#product-info #tab-review .btn {
  border: 0 !important;
}

#product-info #tab-review .card,
#product-info #tab-review .list-group-item,
#product-info #tab-review .form-control,
#product-info #tab-review .form-select {
  background: #f5f8fd;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

#product-info #tab-review #form-review .mb-3 {
  width: 100%;
}

#product-info #tab-review #form-review .form-label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 700;
  color: #0f172a;
}

#product-info #tab-review #form-review .form-control,
#product-info #tab-review #form-review textarea,
#product-info #tab-review #form-review .form-select {
  width: 100%;
  display: block;
  border: 0 !important;
  border-radius: .82rem;
  padding: .75rem .9rem;
  background: #f5f8fd;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

#product-info #tab-review #form-review textarea {
  min-height: 140px;
  resize: vertical;
}

#product-info #tab-review .oc-review-rating {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

#product-info #tab-review .oc-review-rating-hint {
  font-size: .85rem;
  color: #64748b;
  font-weight: 600;
}

#product-info #tab-review .oc-rating-stars {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: .2rem;
}

#product-info #tab-review .oc-rating-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

#product-info #tab-review .oc-rating-star {
  font-size: 1.95rem;
  line-height: 1;
  color: #cbd5e1;
  cursor: pointer;
  user-select: none;
  transition: color .2s ease, transform .2s ease;
}

#product-info #tab-review .oc-rating-star:hover,
#product-info #tab-review .oc-rating-star:hover ~ .oc-rating-star {
  color: #facc15;
  transform: translateY(-1px);
}

#product-info #tab-review .oc-rating-input:checked ~ .oc-rating-star {
  color: #facc15;
}

#product-info #tab-review #review .rating .fa-solid {
  color: #facc15;
}

#product-info #tab-review #review .rating .fa-regular {
  color: #cbd5e1;
}

#product-info #tab-review .text-end {
  text-align: right !important;
}

#product-info #tab-review .btn,
#product-info #tab-review #button-review,
#product-info #tab-review .pagination .page-link {
  border: 0 !important;
  border-radius: .82rem;
  padding: .7rem 1rem;
  background: #fe0000;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(254, 0, 0, 0.2);
}

#product-info #tab-review .btn:hover,
#product-info #tab-review #button-review:hover,
#product-info #tab-review .pagination .page-link:hover {
  background: #e10000;
}

#product-info #tab-review .pagination .page-item.active .page-link {
  background: #fe0000;
}

@media (min-width: 992px) {
  #product-info .oc-product-summary {
    top: 1rem;
  }
}

@media (max-width: 767px) {
  #product-info .oc-product-main-link {
    min-height: 270px;
  }

  #product-info .oc-product-summary,
  #product-info .oc-product-gallery,
  #product-info .oc-product-section {
    border-radius: 1.05rem;
  }

  #product-info .oc-product-price-block .price-new {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }
}

/* Image background cleanup: products, categories, site logo */
.product-card .pc-image,
#categories.oc-custom-categories .category-card__image img,
#logo img,
.footer .footer-brand img {
  background: transparent !important;
}

/* Search page redesign */
#product-search.oc-search-page {
  --oc-search-bg: #f4f7fb;
  --oc-search-surface: #ffffff;
  --oc-search-border: #dce4ef;
  --oc-search-text: #0f172a;
  --oc-search-muted: #64748b;
}

#product-search.oc-search-page #content {
  min-width: 0;
}

#product-search.oc-search-page .oc-search-hero {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at right top, rgba(254, 0, 0, 0.14), transparent 48%),
    linear-gradient(160deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid #f0dede;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

#product-search.oc-search-page .oc-search-hero .oc-page-title {
  margin: 0;
}

#product-search.oc-search-page .oc-search-hero-text {
  margin: .5rem 0 0;
  color: var(--oc-search-muted);
  line-height: 1.65;
}

#product-search.oc-search-page .oc-search-panel,
#product-search.oc-search-page .oc-search-results,
#product-search.oc-search-page .oc-search-empty {
  margin-top: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--oc-search-border);
  background: var(--oc-search-surface);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  padding: 1rem;
}

#product-search.oc-search-page .oc-search-panel-title,
#product-search.oc-search-page .oc-search-results-title {
  margin: 0;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 700;
  color: var(--oc-search-text);
}

#product-search.oc-search-page .oc-search-results-head {
  margin-bottom: .8rem;
}

#product-search.oc-search-page .oc-search-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .9rem;
}

#product-search.oc-search-page .oc-search-form-col .col-form-label {
  margin-bottom: .42rem;
  display: block;
  color: #334155;
  font-weight: 700;
}

#product-search.oc-search-page .oc-search-form-col .form-control,
#product-search.oc-search-page .oc-search-form-col .form-select {
  min-height: 48px;
  border: 1px solid var(--oc-search-border);
  border-radius: .82rem;
  background: #f9fbff;
  width: 100%;
  color: #0f172a;
  box-shadow: none;
}

#product-search.oc-search-page .oc-search-form-col .form-control:focus,
#product-search.oc-search-page .oc-search-form-col .form-select:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

#product-search.oc-search-page .oc-search-check {
  margin-top: .62rem;
}

#product-search.oc-search-page .oc-search-check .form-check-input {
  accent-color: #fe0000;
}

#product-search.oc-search-page .oc-search-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

#product-search.oc-search-page .oc-search-actions .btn {
  min-height: 46px;
  border-radius: .78rem;
  min-width: 180px;
}

#product-search.oc-search-page .oc-search-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .7rem;
  margin-bottom: .4rem;
}

#product-search.oc-search-page .oc-search-toolbar-block {
  min-width: 0;
}

#product-search.oc-search-page .oc-search-toolbar-block--compare .btn {
  min-height: 44px;
  border-radius: .72rem;
}

#product-search.oc-search-page .oc-search-toolbar-block--view .btn-group {
  display: inline-flex;
  gap: .4rem;
}

#product-search.oc-search-page .oc-search-toolbar-block--view .btn {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--oc-search-border);
  border-radius: .7rem;
  background: #ffffff;
  color: #334155;
}

#product-search.oc-search-page .oc-search-toolbar .input-group {
  margin: 0;
}

#product-search.oc-search-page .oc-search-toolbar .input-group-text {
  border: 1px solid var(--oc-search-border);
  border-radius: .72rem;
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
}

#product-search.oc-search-page .oc-search-toolbar .form-select {
  border: 1px solid var(--oc-search-border);
  border-radius: .72rem;
  min-height: 44px;
  box-shadow: none;
  color: #1f2937;
}

#product-search.oc-search-page #product-list {
  margin-top: .95rem;
}

#product-search.oc-search-page #product-list:not(.product-list) {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

#product-search.oc-search-page #product-list .product-cell {
  min-width: 0;
}

#product-search.oc-search-page .oc-search-pagination {
  margin-top: 1rem;
  align-items: center;
}

#product-search.oc-search-page .oc-search-pagination .pagination {
  margin: 0;
}

#product-search.oc-search-page .oc-search-empty p {
  margin: 0;
  color: var(--oc-search-muted);
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  #product-search.oc-search-page #product-list:not(.product-list) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  #product-search.oc-search-page .oc-search-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #product-search.oc-search-page .oc-search-toolbar {
    grid-template-columns: minmax(220px, auto) auto minmax(240px, 1fr) minmax(180px, 1fr);
    align-items: center;
  }
}

@media (min-width: 1200px) {
  #product-search.oc-search-page #product-list:not(.product-list) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  #product-search.oc-search-page .oc-search-hero,
  #product-search.oc-search-page .oc-search-panel,
  #product-search.oc-search-page .oc-search-results,
  #product-search.oc-search-page .oc-search-empty {
    padding: .85rem;
  }

  #product-search.oc-search-page .oc-search-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Checkout page redesign */
#checkout-checkout.oc-checkout-page {
  --oc-checkout-bg: #f6f8fc;
  --oc-checkout-surface: #ffffff;
  --oc-checkout-border: #dce4ef;
}

#checkout-checkout.oc-checkout-page #content {
  min-width: 0;
}

#checkout-checkout.oc-checkout-page .oc-checkout-head {
  margin-bottom: .9rem;
}

#checkout-checkout.oc-checkout-page .oc-checkout-layout {
  margin-right: 0;
  margin-left: 0;
  gap: 1rem;
  align-items: start;
}

#checkout-checkout.oc-checkout-page .oc-checkout-layout > [class*="col-"],
#checkout-checkout.oc-checkout-page .oc-checkout-layout > .col {
  padding-right: 0;
  padding-left: 0;
}

#checkout-checkout.oc-checkout-page .oc-checkout-main,
#checkout-checkout.oc-checkout-page .oc-checkout-side {
  display: grid;
  gap: 1rem;
}

#checkout-checkout.oc-checkout-page .oc-checkout-card {
  border: 1px solid var(--oc-checkout-border) !important;
  border-radius: 1rem;
  background: var(--oc-checkout-surface) !important;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06) !important;
  padding: 1rem;
}

#checkout-checkout.oc-checkout-page .oc-checkout-card > :last-child {
  margin-bottom: 0;
}

#checkout-checkout.oc-checkout-page .oc-checkout-card legend,
#checkout-checkout.oc-checkout-page .oc-checkout-card h2,
#checkout-checkout.oc-checkout-page .oc-checkout-card h3 {
  margin-bottom: .78rem;
}

#checkout-checkout.oc-checkout-page .oc-checkout-card .form-control,
#checkout-checkout.oc-checkout-page .oc-checkout-card .form-select,
#checkout-checkout.oc-checkout-page .oc-checkout-card textarea {
  min-height: 46px;
  border: 1px solid var(--oc-checkout-border) !important;
  border-radius: .8rem;
  background: #f9fbff !important;
  box-shadow: none !important;
}

#checkout-checkout.oc-checkout-page .oc-checkout-card textarea {
  min-height: 110px;
}

#checkout-checkout.oc-checkout-page .oc-checkout-card .form-control:focus,
#checkout-checkout.oc-checkout-page .oc-checkout-card .form-select:focus,
#checkout-checkout.oc-checkout-page .oc-checkout-card textarea:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

#checkout-checkout.oc-checkout-page .oc-checkout-card .input-group-text {
  border: 1px solid var(--oc-checkout-border) !important;
  background: #ffffff;
  color: #334155;
  font-weight: 700;
}

#checkout-checkout.oc-checkout-page .oc-checkout-card .btn:not(.oc-btn-primary) {
  border-radius: .75rem;
}

#checkout-checkout.oc-checkout-page .oc-checkout-card--confirm {
  background:
    radial-gradient(circle at right top, rgba(254, 0, 0, 0.08), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%) !important;
}

@media (min-width: 1200px) {
  #checkout-checkout.oc-checkout-page .oc-checkout-side {
    position: sticky;
    top: 1rem;
  }
}

@media (max-width: 767px) {
  #checkout-checkout.oc-checkout-page .oc-checkout-card {
    padding: .85rem;
  }
}

/* Checkout bootstrap class rewrite (scoped to checkout page only) */
#checkout-checkout.oc-checkout-page {
  --oc-checkout-bs-surface: #ffffff;
  --oc-checkout-bs-soft: #f8fbff;
  --oc-checkout-bs-border: #dce4ef;
  --oc-checkout-bs-text: #0f172a;
  --oc-checkout-bs-muted: #64748b;
  --oc-checkout-bs-danger: #dc2626;
}

#checkout-checkout.oc-checkout-page .row {
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: .9rem;
  column-gap: 0 !important;
}

#checkout-checkout.oc-checkout-page fieldset {
  border: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

#checkout-checkout.oc-checkout-page fieldset + fieldset {
  margin-top: 1.1rem;
}

#checkout-checkout.oc-checkout-page legend {
  margin: 0 0 .8rem;
  color: var(--oc-checkout-bs-text);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 700;
  line-height: 1.15;
}

#checkout-checkout.oc-checkout-page .form-label,
#checkout-checkout.oc-checkout-page .col-form-label {
  margin: 0 0 .4rem;
  color: #334155;
  font-size: .9rem;
  font-weight: 700;
}

#checkout-checkout.oc-checkout-page .required .form-label::after,
#checkout-checkout.oc-checkout-page .required .col-form-label::after {
  content: " *";
  color: #ef4444;
}

#checkout-checkout.oc-checkout-page .form-control,
#checkout-checkout.oc-checkout-page .form-select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--oc-checkout-bs-border) !important;
  border-radius: .8rem;
  background: var(--oc-checkout-bs-soft) !important;
  color: var(--oc-checkout-bs-text);
  box-shadow: none !important;
  padding: .62rem .88rem;
}

#checkout-checkout.oc-checkout-page textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

#checkout-checkout.oc-checkout-page .form-control:focus,
#checkout-checkout.oc-checkout-page .form-select:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .14) !important;
}

#checkout-checkout.oc-checkout-page .form-check {
  margin-bottom: .45rem;
}

#checkout-checkout.oc-checkout-page .form-check-input {
  width: 1rem;
  height: 1rem;
  margin-top: .2rem;
  border-color: var(--oc-checkout-bs-border);
  box-shadow: none !important;
  accent-color: #fe0000;
}

#checkout-checkout.oc-checkout-page .form-check-label {
  color: #334155;
  font-weight: 600;
}

#checkout-checkout.oc-checkout-page .input-group {
  display: flex;
  align-items: center;
  gap: .45rem;
}

#checkout-checkout.oc-checkout-page .input-group > .form-control,
#checkout-checkout.oc-checkout-page .input-group > .form-select {
  flex: 1 1 auto;
  min-width: 0;
}

#checkout-checkout.oc-checkout-page .input-group-text {
  border: 1px solid var(--oc-checkout-bs-border) !important;
  border-radius: .78rem;
  background: #ffffff;
  color: #334155;
  font-weight: 700;
}

#checkout-checkout.oc-checkout-page .btn {
  min-height: 44px;
  border: 0;
  border-radius: .8rem;
  font-weight: 700;
  box-shadow: none;
}

#checkout-checkout.oc-checkout-page .btn-primary {
  background: linear-gradient(120deg, #fe0000 0%, #d80a0a 100%) !important;
  color: #fff !important;
}

#checkout-checkout.oc-checkout-page .btn-primary:hover {
  filter: brightness(1.02);
}

#checkout-checkout.oc-checkout-page .btn-light {
  border: 1px solid var(--oc-checkout-bs-border);
  background: #ffffff;
  color: #1f2937;
}

#checkout-checkout.oc-checkout-page .btn-light:hover {
  background: #f1f5f9;
}

#checkout-checkout.oc-checkout-page .btn:disabled,
#checkout-checkout.oc-checkout-page .btn.disabled {
  opacity: .62;
}

#checkout-checkout.oc-checkout-page .invalid-feedback {
  margin-top: .34rem;
  color: var(--oc-checkout-bs-danger);
  font-size: .8rem;
  font-weight: 600;
}

#checkout-checkout.oc-checkout-page .is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .14) !important;
}

#checkout-checkout.oc-checkout-page .alert {
  border: 0;
  border-radius: .85rem;
  padding: .72rem .95rem;
  font-weight: 600;
}

#checkout-checkout.oc-checkout-page .alert-success {
  background: #ecfdf3;
  color: #166534;
}

#checkout-checkout.oc-checkout-page .alert-danger {
  background: #fef2f2;
  color: #991b1b;
}

#checkout-checkout.oc-checkout-page .table-responsive {
  border-radius: .95rem;
  border: 1px solid var(--oc-checkout-bs-border);
  background: #ffffff;
  overflow: auto;
}

#checkout-checkout.oc-checkout-page .table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 .55rem;
}

#checkout-checkout.oc-checkout-page .table > :not(caption) > * > * {
  border: 0 !important;
}

#checkout-checkout.oc-checkout-page .table thead th,
#checkout-checkout.oc-checkout-page .table thead td {
  background: #ecf2fa;
  color: #1f2937;
  font-weight: 700;
}

#checkout-checkout.oc-checkout-page .table tbody td {
  background: #ffffff;
  vertical-align: middle;
}

#checkout-checkout.oc-checkout-page .table tbody tr td:first-child {
  border-top-left-radius: .75rem;
  border-bottom-left-radius: .75rem;
}

#checkout-checkout.oc-checkout-page .table tbody tr td:last-child {
  border-top-right-radius: .75rem;
  border-bottom-right-radius: .75rem;
}

#checkout-checkout.oc-checkout-page .list-unstyled {
  margin: 0;
  padding: 0;
}

/* Checkout bootstrap grid class rewrite (col, col-1..12, sm/md/lg/xl/xxl) */
#checkout-checkout.oc-checkout-page .row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0 !important;
}

#checkout-checkout.oc-checkout-page .col {
  flex: 1 0 0%;
}

#checkout-checkout.oc-checkout-page .col-auto {
  flex: 0 0 auto;
  width: auto;
}

#checkout-checkout.oc-checkout-page .col-1 { flex: 0 0 auto; width: 8.333333%; }
#checkout-checkout.oc-checkout-page .col-2 { flex: 0 0 auto; width: 16.666667%; }
#checkout-checkout.oc-checkout-page .col-3 { flex: 0 0 auto; width: 25%; }
#checkout-checkout.oc-checkout-page .col-4 { flex: 0 0 auto; width: 33.333333%; }
#checkout-checkout.oc-checkout-page .col-5 { flex: 0 0 auto; width: 41.666667%; }
#checkout-checkout.oc-checkout-page .col-6 { flex: 0 0 auto; width: 50%; }
#checkout-checkout.oc-checkout-page .col-7 { flex: 0 0 auto; width: 58.333333%; }
#checkout-checkout.oc-checkout-page .col-8 { flex: 0 0 auto; width: 66.666667%; }
#checkout-checkout.oc-checkout-page .col-9 { flex: 0 0 auto; width: 75%; }
#checkout-checkout.oc-checkout-page .col-10 { flex: 0 0 auto; width: 83.333333%; }
#checkout-checkout.oc-checkout-page .col-11 { flex: 0 0 auto; width: 91.666667%; }
#checkout-checkout.oc-checkout-page .col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 576px) {
  #checkout-checkout.oc-checkout-page .col-sm { flex: 1 0 0%; }
  #checkout-checkout.oc-checkout-page .col-sm-auto { flex: 0 0 auto; width: auto; }
  #checkout-checkout.oc-checkout-page .col-sm-1 { flex: 0 0 auto; width: 8.333333%; }
  #checkout-checkout.oc-checkout-page .col-sm-2 { flex: 0 0 auto; width: 16.666667%; }
  #checkout-checkout.oc-checkout-page .col-sm-3 { flex: 0 0 auto; width: 25%; }
  #checkout-checkout.oc-checkout-page .col-sm-4 { flex: 0 0 auto; width: 33.333333%; }
  #checkout-checkout.oc-checkout-page .col-sm-5 { flex: 0 0 auto; width: 41.666667%; }
  #checkout-checkout.oc-checkout-page .col-sm-6 { flex: 0 0 auto; width: 50%; }
  #checkout-checkout.oc-checkout-page .col-sm-7 { flex: 0 0 auto; width: 58.333333%; }
  #checkout-checkout.oc-checkout-page .col-sm-8 { flex: 0 0 auto; width: 66.666667%; }
  #checkout-checkout.oc-checkout-page .col-sm-9 { flex: 0 0 auto; width: 75%; }
  #checkout-checkout.oc-checkout-page .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
  #checkout-checkout.oc-checkout-page .col-sm-11 { flex: 0 0 auto; width: 91.666667%; }
  #checkout-checkout.oc-checkout-page .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 768px) {
  #checkout-checkout.oc-checkout-page .col-md { flex: 1 0 0%; }
  #checkout-checkout.oc-checkout-page .col-md-auto { flex: 0 0 auto; width: auto; }
  #checkout-checkout.oc-checkout-page .col-md-1 { flex: 0 0 auto; width: 8.333333%; }
  #checkout-checkout.oc-checkout-page .col-md-2 { flex: 0 0 auto; width: 16.666667%; }
  #checkout-checkout.oc-checkout-page .col-md-3 { flex: 0 0 auto; width: 25%; }
  #checkout-checkout.oc-checkout-page .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  #checkout-checkout.oc-checkout-page .col-md-5 { flex: 0 0 auto; width: 41.666667%; }
  #checkout-checkout.oc-checkout-page .col-md-6 { flex: 0 0 auto; width: 50%; }
  #checkout-checkout.oc-checkout-page .col-md-7 { flex: 0 0 auto; width: 58.333333%; }
  #checkout-checkout.oc-checkout-page .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
  #checkout-checkout.oc-checkout-page .col-md-9 { flex: 0 0 auto; width: 75%; }
  #checkout-checkout.oc-checkout-page .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
  #checkout-checkout.oc-checkout-page .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
  #checkout-checkout.oc-checkout-page .col-md-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 992px) {
  #checkout-checkout.oc-checkout-page .col-lg { flex: 1 0 0%; }
  #checkout-checkout.oc-checkout-page .col-lg-auto { flex: 0 0 auto; width: auto; }
  #checkout-checkout.oc-checkout-page .col-lg-1 { flex: 0 0 auto; width: 8.333333%; }
  #checkout-checkout.oc-checkout-page .col-lg-2 { flex: 0 0 auto; width: 16.666667%; }
  #checkout-checkout.oc-checkout-page .col-lg-3 { flex: 0 0 auto; width: 25%; }
  #checkout-checkout.oc-checkout-page .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  #checkout-checkout.oc-checkout-page .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  #checkout-checkout.oc-checkout-page .col-lg-6 { flex: 0 0 auto; width: 50%; }
  #checkout-checkout.oc-checkout-page .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  #checkout-checkout.oc-checkout-page .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
  #checkout-checkout.oc-checkout-page .col-lg-9 { flex: 0 0 auto; width: 75%; }
  #checkout-checkout.oc-checkout-page .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  #checkout-checkout.oc-checkout-page .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
  #checkout-checkout.oc-checkout-page .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1200px) {
  #checkout-checkout.oc-checkout-page .col-xl { flex: 1 0 0%; }
  #checkout-checkout.oc-checkout-page .col-xl-auto { flex: 0 0 auto; width: auto; }
  #checkout-checkout.oc-checkout-page .col-xl-1 { flex: 0 0 auto; width: 8.333333%; }
  #checkout-checkout.oc-checkout-page .col-xl-2 { flex: 0 0 auto; width: 16.666667%; }
  #checkout-checkout.oc-checkout-page .col-xl-3 { flex: 0 0 auto; width: 25%; }
  #checkout-checkout.oc-checkout-page .col-xl-4 { flex: 0 0 auto; width: 33.333333%; }
  #checkout-checkout.oc-checkout-page .col-xl-5 { flex: 0 0 auto; width: 41.666667%; }
  #checkout-checkout.oc-checkout-page .col-xl-6 { flex: 0 0 auto; width: 50%; }
  #checkout-checkout.oc-checkout-page .col-xl-7 { flex: 0 0 auto; width: 58.333333%; }
  #checkout-checkout.oc-checkout-page .col-xl-8 { flex: 0 0 auto; width: 66.666667%; }
  #checkout-checkout.oc-checkout-page .col-xl-9 { flex: 0 0 auto; width: 75%; }
  #checkout-checkout.oc-checkout-page .col-xl-10 { flex: 0 0 auto; width: 83.333333%; }
  #checkout-checkout.oc-checkout-page .col-xl-11 { flex: 0 0 auto; width: 91.666667%; }
  #checkout-checkout.oc-checkout-page .col-xl-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1400px) {
  #checkout-checkout.oc-checkout-page .col-xxl { flex: 1 0 0%; }
  #checkout-checkout.oc-checkout-page .col-xxl-auto { flex: 0 0 auto; width: auto; }
  #checkout-checkout.oc-checkout-page .col-xxl-1 { flex: 0 0 auto; width: 8.333333%; }
  #checkout-checkout.oc-checkout-page .col-xxl-2 { flex: 0 0 auto; width: 16.666667%; }
  #checkout-checkout.oc-checkout-page .col-xxl-3 { flex: 0 0 auto; width: 25%; }
  #checkout-checkout.oc-checkout-page .col-xxl-4 { flex: 0 0 auto; width: 33.333333%; }
  #checkout-checkout.oc-checkout-page .col-xxl-5 { flex: 0 0 auto; width: 41.666667%; }
  #checkout-checkout.oc-checkout-page .col-xxl-6 { flex: 0 0 auto; width: 50%; }
  #checkout-checkout.oc-checkout-page .col-xxl-7 { flex: 0 0 auto; width: 58.333333%; }
  #checkout-checkout.oc-checkout-page .col-xxl-8 { flex: 0 0 auto; width: 66.666667%; }
  #checkout-checkout.oc-checkout-page .col-xxl-9 { flex: 0 0 auto; width: 75%; }
  #checkout-checkout.oc-checkout-page .col-xxl-10 { flex: 0 0 auto; width: 83.333333%; }
  #checkout-checkout.oc-checkout-page .col-xxl-11 { flex: 0 0 auto; width: 91.666667%; }
  #checkout-checkout.oc-checkout-page .col-xxl-12 { flex: 0 0 auto; width: 100%; }
}
