@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   PETSHOP18 — Custom Stylesheet  v20260622
   Overrides default OC3 styles completely
═══════════════════════════════════════════════════ */
/* ── RESET / BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul {
  padding-inline-start: 5px;
  margin-block-start: 0;
  margin-block-end: 0;
}
/* ── CONTAINER 80% ── */
.container {
  max-width: 80% !important;
}
/* ── FIX OC3 LAYOUT HACKS ── */
#container {
  position: static !important;
  margin-bottom: 0 !important;
  width: 100%;
}
#content, #column-left, #column-right {
  padding-bottom: 0 !important;
}
#top {
  display: none !important;
}
#menu {
  display: none !important;
}
#common-home {
  background: #f4f4f4;
  padding: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}
#common-home .row {
  margin: 0;
}
#common-home #content {
  padding: 0;
}
/* ══════════════════════════════
   TOPBAR
══════════════════════════════ */
#ps18-topbar {
  background-color: #f8f8f8 !important;
  border-bottom: 1px solid #e0e0e0;
  padding: 6px 0;
}
.ps18-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.ps18-topbar-label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
}
.ps18-topbar-sep {
  font-size: 12px;
  color: #bbb;
}
.ps18-topbar-link {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
.ps18-topbar-link:hover {
  color: #e8363c;
}
/* ══════════════════════════════
   MAIN HEADER
══════════════════════════════ */
#ps18-header {
  background-color: #ffffff !important;
  border-bottom: 2px solid #e8363c;
  padding: 10px 0;
}
/* Logo */
#logo {
  margin: 0;
  padding: 0;
}
.ps18-logo-img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
}
.ps18-logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.ps18-logo-pet {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
}
.ps18-logo-shop {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #e8363c;
}
.ps18-logo-o {
  color: #e8363c;
}
.ps18-logo-num {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
}
.ps18-logo-com {
  font-size: 12px;
  color: #999;
  margin-left: 2px;
}
/* Search form */
.ps18-search-wrap {
  display: flex;
  align-items: stretch;
  height: 46px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: #fff;
  overflow: visible;
}
.ps18-cat-select {
  background: #fff;
  border: none;
  border-right: 1px solid #d0d0d0;
  padding: 0 10px 0 12px;
  font-size: 13px;
  color: #555;
  min-width: 145px;
  width: 145px;
  cursor: pointer;
  outline: none;
  font-family: "Open Sans", sans-serif;
  appearance: auto;
  -webkit-appearance: auto;
  height: 100%;
  border-radius: 4px 0 0 4px;
}
.ps18-search-input {
  flex: 1;
  border: none;
  padding: 0 14px;
  font-size: 13px;
  outline: none;
  font-family: "Open Sans", sans-serif;
  color: #333;
  background: #fff;
  height: 100%;
}
.ps18-search-input::placeholder {
  color: #bbb;
  font-style: italic;
}
.ps18-search-btn {
  background-color: #e8363c !important;
  color: #fff !important;
  border: none;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  height: 100%;
  text-transform: uppercase;
  border-radius: 0 4px 4px 0;
}
.ps18-search-btn:hover {
  background-color: #c0272d !important;
}
/* Autosuggest dropdown */
.ps18-suggest {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  max-height: 380px;
  overflow-y: auto;
}
.ps18-suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.15s;
}
.ps18-suggest-item:last-child {
  border-bottom: none;
}
.ps18-suggest-item:hover {
  background: #fff8f8;
  color: #e8363c;
}
.ps18-suggest-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #eee;
  flex-shrink: 0;
}
.ps18-suggest-img-ph {
  width: 42px;
  height: 42px;
  background: #f5f5f5;
  border-radius: 4px;
  flex-shrink: 0;
}
.ps18-suggest-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.ps18-suggest-price {
  font-size: 13px;
  font-weight: 700;
  color: #e8363c;
  white-space: nowrap;
}
/* Modals (image popup + quick view) */
.ps18-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
}
.ps18-modal.ps18-modal-open {
  display: flex;
}
.ps18-modal-box {
  position: relative;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  animation: ps18FadeIn 0.2s ease;
}
@keyframes ps18FadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.ps18-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #555;
  z-index: 1;
}
.ps18-modal-close:hover {
  color: #e8363c;
}
/* Image popup */
.ps18-img-modal-box {
  max-width: 520px;
  width: 90vw;
  padding: 20px;
  text-align: center;
}
.ps18-img-modal-box img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
}
.ps18-img-modal-title {
  margin-top: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  color: #333;
}
/* Quick view */
.ps18-qv-modal-box {
  width: 90vw;
  max-width: 900px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ps18-qv-title {
  padding: 14px 44px 14px 18px;
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  border-bottom: 1px solid #eee;
}
#ps18-qv-iframe {
  flex: 1;
  width: 100%;
  border: none;
}
/* Cart */
#cart {
  margin-bottom: 0 !important;
}
.ps18-cart-wrap {
  width: 100%;
}
.ps18-cart-btn {
  width: 100%;
  height: 46px;
  background-color: #e8363c !important;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  padding: 0 18px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.ps18-cart-btn:hover {
  background-color: #c0272d !important;
  color: #fff !important;
}
.ps18-cart-btn::after {
  margin-left: auto;
}
/* Legacy fallback */
#cart .btn-lg {
  background-color: #e8363c !important;
  color: #fff !important;
  border: none;
  height: 46px;
}
#cart .btn-lg:hover {
  background-color: #c0272d !important;
}
/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#ps18-navbar {
  background-color: #222639 !important;
  position: relative;
  z-index: 100;
}
.ps18-btn-categories {
  background-color: #e8363c !important;
  color: #fff !important;
  border: none;
  padding: 12px 18px;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.2s;
  width: 280px;
}
.ps18-btn-categories:hover {
  background-color: #c0272d !important;
}
.ps18-main-nav {
  gap: 0;
}
.ps18-nav-link {
  color: #e0e0e0 !important;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  white-space: nowrap;
  transition: color 0.2s;
  height: 100%;
}
.ps18-nav-link:hover, .ps18-nav-link.active {
  color: #ffffff !important;
}
.ps18-caret {
  font-size: 10px;
  margin-left: 4px;
}
/* Dropdown menus */
.ps18-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.ps18-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a2e;
  min-width: 180px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 200;
  border-top: 3px solid #e8363c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.ps18-drop-menu li a {
  display: block;
  padding: 8px 16px;
  color: #ccc;
  font-size: 13px;
  transition: color 0.15s, padding-left 0.15s;
}
.ps18-drop-menu li a:hover {
  color: #fff;
  padding-left: 22px;
  background: rgba(232, 54, 60, 0.1);
}
/* Social icons */
.ps18-nav-socials {
  gap: 4px;
  padding: 0 10px;
}
.ps18-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 13px;
  transition: opacity 0.2s;
}
.ps18-social-btn:hover {
  opacity: 0.8;
  color: #fff !important;
}
.ps18-s-fb {
  background-color: #3b5998 !important;
}
.ps18-s-tw {
  background-color: #1a1a2e !important;
  border: 1px solid #555;
}
.ps18-s-yt {
  background-color: #ff0000 !important;
}
/* Mobile nav */
.ps18-mobile-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}
.ps18-mobile-links {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
.ps18-mobile-links li a {
  display: block;
  padding: 10px 16px;
  color: #ccc;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ps18-mobile-links li a:hover {
  color: #fff;
}
/* ══════════════════════════════
   MEGA MENU
══════════════════════════════ */
#ps18-mega-dropdown {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border-top: 3px solid #e8363c;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
}
.ps18-mega-wrap {
  display: flex;
  min-height: 320px;
}
.ps18-mega-left {
  width: 220px;
  flex-shrink: 0;
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
}
.ps18-mega-parent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  color: #ccc;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s;
}
.ps18-mega-parent-item:hover, .ps18-mega-parent-item.ps18-mega-active {
  background: rgba(232, 54, 60, 0.2);
  color: #fff;
}
.ps18-mega-arrow {
  font-size: 10px;
  color: #777;
}
.ps18-mega-left-footer {
  margin-top: auto;
  padding: 12px 16px;
}
.ps18-mega-left-footer span {
  font-size: 10px;
  color: #555;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ps18-mega-center {
  flex: 1;
  padding: 20px;
  position: relative;
}
.ps18-mega-sub-panel {
  display: none;
}
.ps18-mega-sub-panel.ps18-mega-visible {
  display: block;
}
.ps18-mega-default {
  display: none;
}
.ps18-mega-default.ps18-mega-visible {
  display: block;
}
.ps18-mega-sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  font-family: "Oswald", sans-serif;
  margin-bottom: 14px;
}
.ps18-mega-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ps18-mega-sub-item {
  display: block;
  padding: 7px 10px;
  font-size: 13px;
  color: #444;
  border-radius: 4px;
  transition: background 0.15s;
}
.ps18-mega-sub-item:hover {
  background: #f5f5f5;
  color: #e8363c;
}
.ps18-sub-icon {
  font-size: 11px;
  margin-right: 6px;
}
.ps18-mega-view-all {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
}
.ps18-mega-view-all:hover {
  text-decoration: underline;
}
.ps18-mega-no-sub {
  padding: 20px 0;
}
.ps18-mega-hover-hint {
  color: #aaa;
  font-size: 13px;
  padding: 30px 0;
}
.ps18-mega-right {
  width: 200px;
  flex-shrink: 0;
  background: #fafafa;
  border-left: 1px solid #eee;
  position: relative;
}
.ps18-mega-banner-panel {
  display: none;
  height: 100%;
}
.ps18-mega-banner-panel.ps18-mega-visible {
  display: block;
}
.ps18-mega-banner-placeholder {
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ps18-mega-shop-label {
  padding: 8px 16px;
  border-radius: 4px;
}
.ps18-mega-shop-text {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
/* ══════════════════════════════
   HERO BANNER STRIP
══════════════════════════════ */
.ps18-hero-strip {
  display: flex;
  overflow: hidden;
  margin: 0 0 12px;
  height: 420px;
  gap: 0;
  font-size: 0;
  line-height: 0;
}
.ps18-hero-left {
  width: 25%;
  flex-shrink: 0;
  overflow: hidden;
}
.ps18-hero-left img {
  width: 100%;
  height: 100%;
  display: block;
}
.ps18-hero-center {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.ps18-hero-center .carousel, .ps18-hero-center .carousel-inner, .ps18-hero-center .carousel-item {
  height: 100%;
}
.ps18-hero-main-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.ps18-hero-right {
  width: 25%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ps18-hero-right-item {
  display: block;
  flex: 1;
  overflow: hidden;
}
.ps18-hero-right-item img {
  width: 100%;
  height: 100%;
  display: block;
}
/* ══════════════════════════════
   CATEGORY SECTIONS
══════════════════════════════ */
.container > .ps18-section:first-of-type {
  margin-top: 15px;
}
.ps18-section {
  margin: 0 0 12px 0;
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
}
.ps18-cs-left {
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}
.ps18-cs-label {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  min-height: 56px;
}
.ps18-cs-label span {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ps18-cs-links {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.ps18-cs-links li {
  border-bottom: 1px solid #f5f5f5;
}
.ps18-cs-links li a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: #444;
  transition: color 0.15s, background 0.15s;
}
.ps18-cs-links li a:hover {
  color: #e8363c;
  background: #fafafa;
  padding-left: 20px;
}
.ps18-cs-more a {
  color: #e8363c !important;
  font-weight: 600;
}
.ps18-cs-banner {
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid #eee;
  background: #fafafa;
}
.ps18-cs-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ps18-cs-banner-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  gap: 10px;
  width: 100%;
  text-align: center;
}
.ps18-cs-banner-title {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 3px solid;
  display: inline-block;
}
.ps18-cs-disc-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin: 4px 0;
}
.ps18-cs-disc-upto {
  font-size: 11px;
  font-weight: 700;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ps18-cs-disc-num {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}
.ps18-cs-disc-off {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  letter-spacing: 3px;
}
.ps18-cs-icon {
  font-size: 50px;
  opacity: 0.2;
  margin-top: 6px;
}
.ps18-cs-products {
  padding: 12px;
}
.ps18-cs-empty {
  color: #aaa;
  font-size: 13px;
  padding: 20px 0;
}
/* Product cards */
.ps18-prod-card {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}
.ps18-prod-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.ps18-prod-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps18-prod-img-wrap a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.ps18-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ps18-prod-no-img {
  font-size: 40px;
  color: #ddd;
}
/* Image hover overlay */
.ps18-prod-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.ps18-prod-card:hover .ps18-prod-img-overlay {
  opacity: 1;
  pointer-events: auto;
}
.ps18-overlay-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  background: #e8363c !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-size: 18px !important;
  text-decoration: none !important;
  line-height: 1 !important;
  transition: background 0.2s;
}
.ps18-overlay-btn:hover {
  background: #c0272d;
  color: #fff !important;
}
.ps18-prod-info {
  padding: 8px 10px;
}
.ps18-prod-name {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  text-decoration: none;
  display: block;
}
.ps18-prod-name:hover {
  color: #e8363c;
}
.ps18-prod-price {
  font-size: 13px;
  font-weight: 700;
  color: #e8363c;
  display: block;
}
.ps18-prod-old {
  font-size: 11px;
  color: #aaa;
  text-decoration: line-through;
}
/* Action buttons — hidden by default, slide in on hover */
.ps18-prod-actions {
  display: flex;
  gap: 6px;
  padding: 0 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
}
.ps18-prod-card:hover .ps18-prod-actions {
  max-height: 60px;
  opacity: 1;
  padding: 0 10px 10px;
}
.ps18-prod-btn {
  flex: 1;
  height: 40px;
  background: #e8363c !important;
  color: #fff !important;
  border: none !important;
  border-radius: 3px;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ps18-prod-btn:hover {
  background: #c0272d !important;
}
.ps18-prod-btn-icon {
  flex: 1 !important;
  height: 40px;
  background: #e8363c !important;
  color: #fff !important;
  border: none !important;
  border-radius: 3px;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps18-prod-btn-icon:hover {
  background: #c0272d !important;
  color: #fff !important;
}
/* Stars */
.ps18-stars {
  display: flex;
  gap: 1px;
  margin: 2px 0;
}
.ps18-star {
  font-size: 10px;
  color: #ddd;
}
.ps18-star.on {
  color: #ffc107;
}
/* ══════════════════════════════
   LATEST BLOG
══════════════════════════════ */
#ps18-blog {
  padding: 24px 0;
  background: #f4f4f4;
}
.ps18-sec-title {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 18px;
  text-align: center;
  position: relative;
  letter-spacing: 1px;
}
.ps18-sec-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e8363c;
  margin: 6px auto 0;
}
.ps18-blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.ps18-blog-img {
  height: 160px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ps18-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ps18-blog-icon {
  font-size: 48px;
  color: #ddd;
}
.ps18-blog-body {
  padding: 14px;
}
.ps18-blog-date {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 6px;
}
.ps18-blog-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 8px;
}
.ps18-blog-title a {
  color: #1a1a2e;
}
.ps18-blog-title a:hover {
  color: #e8363c;
}
.ps18-blog-excerpt {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}
/* ══════════════════════════════
   BRANDS SECTION
══════════════════════════════ */
#ps18-brands {
  padding: 24px 0;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.ps18-brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ps18-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #eee;
  border-radius: 6px;
  min-width: 120px;
  transition: box-shadow 0.2s;
}
.ps18-brand-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.ps18-brand-item img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.2s;
}
.ps18-brand-item:hover img {
  filter: grayscale(0);
}
.ps18-brand-name {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}
/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer, footer#ps18-footer, #ps18-footer {
  position: static !important;
  bottom: auto !important;
  background-color: #1a1a2e !important;
  color: #ccc !important;
  border: none !important;
  padding-top: 0 !important;
}
#ps18-footer {
  font-size: 13px;
}
.ps18-footer-top {
  background-color: #1a1a2e !important;
  padding: 40px 0 20px;
}
.ps18-footer-top h5 {
  color: #fff !important;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 2px solid #e8363c;
  padding-bottom: 8px;
  display: inline-block;
}
.ps18-footer-top a {
  color: #aaa !important;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
  transition: color 0.15s, padding-left 0.15s;
}
.ps18-footer-top a:hover {
  color: #e8363c !important;
  padding-left: 6px;
}
.ps18-footer-top p {
  color: #aaa;
  font-size: 12px;
  line-height: 1.6;
}
.ps18-footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ps18-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.ps18-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  font-size: 14px;
  transition: background 0.2s;
  margin: 0 !important;
  padding: 0 !important;
}
.ps18-footer-social a:hover {
  background: #e8363c !important;
  padding-left: 0 !important;
}
.ps18-footer-bottom {
  background-color: #111827 !important;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ps18-footer-copy {
  color: #666;
  font-size: 12px;
}
.ps18-footer-copy a {
  color: #888 !important;
  font-size: 12px;
}
.ps18-footer-copy a:hover {
  color: #fff !important;
}
/* ══════════════════════════════
   INNER PAGES — common
══════════════════════════════ */
.breadcrumb {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 10px 16px;
  margin-bottom: 20px;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #aaa;
}
.breadcrumb-item a {
  color: #e8363c;
}
.breadcrumb-item.active {
  color: #666;
}
/* Product listing */
.product-thumb {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: box-shadow 0.2s;
  position: relative;
}
.product-thumb:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.product-thumb .image {
  text-align: center;
  background: #f9f9f9;
}
.product-thumb .image a:hover {
  opacity: 0.85;
}
.product-thumb .image img {
  max-width: 100%;
  height: auto;
}
.product-thumb .caption {
  padding: 12px;
}
.product-thumb .caption h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-thumb .caption h4 a {
  color: #333;
}
.product-thumb .caption h4 a:hover {
  color: #e8363c;
}
.product-thumb .button {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.product-thumb .button button {
  flex: 1;
  border: none;
  border-top: 1px solid #eee;
  background: #f5f5f5;
  color: #555;
  padding: 8px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.15s;
}
.product-thumb .button button:hover {
  background: #e8363c;
  color: #fff;
}
.price-new {
  color: #e8363c;
  font-weight: 700;
}
.price-old {
  color: #aaa;
  text-decoration: line-through;
  font-size: 12px;
}
.price-tax {
  color: #aaa;
  font-size: 11px;
}
.rating .fa-star {
  color: #ffc107;
  font-size: 13px;
}
/* Product detail */
#product {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}
#product .btn-primary {
  background-color: #e8363c !important;
  border-color: #e8363c !important;
}
#product .btn-default {
  background-color: #f5f5f5;
  border-color: #ddd;
}
#product .tab-content {
  padding: 20px 0;
}
/* Cart / checkout */
#checkout-cart {
  margin-bottom: 60px;
}
.table th {
  background: #f5f5f5;
}
/* One-Page Checkout */
.opc-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.opc-left {
  flex: 1 1 0;
  min-width: 0;
  counter-reset: opc-step;
}
.opc-right {
  width: 360px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
}
.opc-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
.opc-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: #f8f8f8;
  border-bottom: 1px solid #e8e8e8;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  counter-increment: opc-step;
}
.opc-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e8363c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.opc-num::before {
  content: counter(opc-step);
}
.opc-card-body {
  padding: 18px 20px;
}
.opc-card-body fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.opc-card-body fieldset > legend {
  display: none;
}
.opc-summary-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.opc-summary-title {
  padding: 13px 18px;
  background: #e8363c;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
}
#checkout-confirm .table-responsive {
  border-radius: 0;
}
#checkout-payment {
  padding: 12px 18px 16px;
}
.opc-method-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: border-color 0.15s, background 0.15s;
}
.opc-method-item:hover {
  border-color: #e8363c;
  background: #fff8f8;
}
.opc-method-item.active {
  border-color: #e8363c;
  background: #fff8f8;
}
.opc-method-item input[type="radio"] {
  accent-color: #e8363c;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.opc-method-label {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.opc-method-cost {
  font-size: 13px;
  font-weight: 700;
  color: #e8363c;
}
.opc-loading {
  color: #888;
  font-size: 13px;
  padding: 10px 0;
}
.opc-loading .fa-circle-notch {
  color: #e8363c;
}
.opc-method-msg {
  font-size: 13px;
  color: #e8363c;
  padding: 8px 0;
  margin: 0;
}
.opc-comment-wrap {
  margin-top: 18px;
}
.opc-comment-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.opc-agree-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  background: #f8f8f8;
  border-radius: 6px;
  border: 1px solid #eee;
}
.opc-agree-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e8363c;
  flex-shrink: 0;
}
.opc-agree-label {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}
.opc-agree-label a {
  color: #e8363c;
}
@media (max-width: 991px) {
  .opc-layout {
    flex-direction: column;
  }
  .opc-right {
    width: 100%;
    position: static;
  }
}
.btn-primary {
  background-color: #e8363c !important;
  border-color: #e8363c !important;
}
.btn-primary:hover {
  background-color: #c0272d !important;
  border-color: #c0272d !important;
}
.btn-danger {
  background-color: #e8363c !important;
  border-color: #e8363c !important;
}
/* ══════════════════════════════
   INNER PAGES (category / search / product detail)
══════════════════════════════ */
.ps18-inner-page {
  padding-top: 18px;
  padding-bottom: 40px;
}
.ps18-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 13px;
}
.ps18-bc-item {
  color: #555;
  text-decoration: none;
}
.ps18-bc-item:hover {
  color: #e8363c;
}
.ps18-bc-sep {
  color: #bbb;
}
.ps18-breadcrumb .ps18-bc-item:last-child {
  color: #1a1a2e;
  font-weight: 600;
  pointer-events: none;
}
.ps18-page-header {
  margin-bottom: 18px;
}
.ps18-page-title {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}
.ps18-page-desc {
  font-size: 13px;
  color: #666;
}
.ps18-cat-banner-img {
  max-height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
}
.ps18-sub-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.ps18-sub-cat-btn {
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}
.ps18-sub-cat-btn:hover {
  background: #e8363c;
  color: #fff;
  border-color: #e8363c;
}
/* Sort bar */
.ps18-cat-sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 0;
  background: transparent;
  border: none;
}
.ps18-cat-sort-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ps18-cat-sort-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ps18-view-toggle {
  display: flex;
}
.ps18-view-btn {
  width: 40px;
  height: 38px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.ps18-view-btn:first-child {
  border-radius: 3px 0 0 3px;
}
.ps18-view-btn:last-child {
  border-radius: 0 3px 3px 0;
}
.ps18-view-btn.active {
  background: #333;
  color: #fff;
}
.ps18-view-btn:hover:not(.active) {
  background: #e0e0e0;
}
.ps18-sort-group {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #555;
}
.ps18-sort-group select {
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 13px;
  padding: 0 8px;
  color: #444;
  background: #fff;
  cursor: pointer;
}
.ps18-product-compare-btn {
  height: 36px;
  padding: 0 14px;
  background: #e8363c;
  color: #fff !important;
  border: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}
.ps18-product-compare-btn:hover {
  background: #c0272d;
  color: #fff !important;
}
/* Product grid */
.ps18-prod-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.ps18-prod-grid-item {
  flex: 1 1 calc(33% - 12px);
  min-width: 0;
  display: flex;
}
.ps18-prod-grid-item > .ps18-prod-card {
  width: 100%;
}
/* Category page — 3-column CSS Grid */
#product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
#product-list .ps18-prod-card {
  margin-bottom: 0;
}
/* Sidebar */
.ps18-with-sidebar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ps18-sidebar-left {
  flex: 0 0 280px;
  min-width: 0;
}
.ps18-main-content {
  flex: 1;
  min-width: 0;
}
.ps18-filter-sidebar-head {
  background: #333;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  border-radius: 3px 3px 0 0;
}
.ps18-sidebar-left .ps18-prod-card {
  margin-bottom: 8px;
  font-size: 12px;
}
.ps18-sidebar-left .ps18-prod-img-wrap {
  max-height: 80px;
}
/* Refine search */
.ps18-refine-search-box {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  margin-bottom: 16px;
  overflow: hidden;
}
.ps18-refine-header {
  background: #f5f5f5;
  padding: 8px 14px;
  font-size: 13px;
  border-bottom: 1px solid #e0e0e0;
}
.ps18-refine-header strong {
  color: #333;
  text-transform: uppercase;
}
.ps18-refine-header-sub {
  color: #e8363c;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 4px;
}
.ps18-refine-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 6px 0;
}
.ps18-refine-link {
  padding: 5px 14px;
  font-size: 12px;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
}
.ps18-refine-link:hover {
  color: #e8363c;
}
/* Fixed social share strip */
.ps18-side-share {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ps18-ss-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ps18-ss-btn:hover {
  opacity: 0.85;
  color: #fff;
}
.ps18-ss-fb {
  background: #3b5998;
}
.ps18-ss-tw {
  background: #000;
}
.ps18-ss-yt {
  background: #ff0000;
}
/* Pagination */
.ps18-pagination-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
}
.ps18-results {
  font-size: 13px;
  color: #666;
}
.ps18-no-results {
  color: #888;
  font-size: 14px;
  margin: 30px 0;
}
.ps18-section-label {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px;
}
.ps18-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
}
.ps18-btn-primary {
  background: #e8363c;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.ps18-btn-primary:hover {
  background: #c0272d;
  color: #fff;
}
/* Product Detail Page */
.ps18-product-detail {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.ps18-pd-images {
  flex: 0 0 340px;
  max-width: 340px;
}
.ps18-pd-main-wrap {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  padding: 10px;
  background: #fff;
  margin-bottom: 8px;
}
.ps18-pd-main-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
}
.ps18-pd-thumbs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ps18-pd-thumb-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 3px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.ps18-pd-thumb-img.active, .ps18-pd-thumb-img:hover {
  border-color: #e8363c;
}
.ps18-pd-info {
  flex: 1;
  min-width: 0;
}
.ps18-pd-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px;
  line-height: 1.35;
}
.ps18-pd-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.ps18-pd-review-link {
  font-size: 12px;
  color: #4a90d9;
  text-decoration: none;
}
.ps18-pd-review-link:hover {
  text-decoration: underline;
}
.ps18-pd-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
}
.ps18-pd-meta li {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ps18-meta-dot {
  color: #28a745;
  font-size: 10px;
}
.ps18-meta-label {
  font-weight: 600;
  color: #444;
}
.ps18-meta-val {
  color: #555;
  text-decoration: none;
}
.ps18-meta-val:hover {
  color: #e8363c;
}
.ps18-pd-price-wrap {
  margin: 12px 0 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.ps18-pd-price {
  font-size: 26px;
  font-weight: 700;
  color: #e8363c;
}
.ps18-pd-price-old {
  font-size: 16px;
  color: #aaa;
  text-decoration: line-through;
}
.ps18-pd-tax {
  font-size: 11px;
  color: #888;
}
.ps18-pd-discounts {
  font-size: 12px;
  color: #555;
  margin-bottom: 8px;
}
.ps18-cod-section {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 14px;
  margin: 14px 0;
  background: #fafafa;
}
.ps18-cod-label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.ps18-cod-row {
  display: flex;
  gap: 6px;
}
.ps18-cod-input {
  flex: 1;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 10px;
  font-size: 13px;
  outline: none;
}
.ps18-cod-input:focus {
  border-color: #4a90d9;
}
.ps18-cod-btn {
  height: 36px;
  padding: 0 16px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.ps18-cod-btn:hover {
  background: #555;
}
.ps18-cod-result {
  margin-top: 6px;
  min-height: 18px;
  font-size: 12px;
}
.ps18-pd-options {
  margin-bottom: 12px;
}
.ps18-pd-option {
  margin-bottom: 10px;
}
.ps18-pd-option label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  display: block;
  margin-bottom: 4px;
}
.ps18-pd-select, .ps18-pd-input {
  width: 100%;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 10px;
  font-size: 13px;
}
.ps18-pd-input[rows] {
  height: auto;
  padding: 8px 10px;
}
.ps18-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 12px;
  font-size: 13px;
  font-weight: 400 !important;
  cursor: pointer;
}
.ps18-opt-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 2px;
}
.ps18-field-error {
  font-size: 11px;
  color: #e8363c;
  margin-top: 3px;
  display: none;
}
.ps18-pd-cart-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 14px 0 6px;
}
.ps18-qty-label {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  min-width: 28px;
}
.ps18-qty-ctrl {
  width: 34px;
  height: 36px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.ps18-qty-ctrl:hover {
  background: #e0e0e0;
}
.ps18-qty-num {
  width: 52px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 3px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.ps18-btn-add-cart {
  height: 40px;
  padding: 0 22px;
  background: #e8363c;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  flex: 1;
}
.ps18-btn-add-cart:hover {
  background: #c0272d;
}
.ps18-btn-icon-action {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.ps18-btn-icon-action:hover {
  border-color: #e8363c;
  color: #e8363c;
}
.ps18-min-notice {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}
.ps18-pd-points {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}
.ps18-pd-tags {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}
/* Tabs */
.ps18-pd-tabs {
  margin-top: 24px;
}
.ps18-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 16px;
}
.ps18-tab-btn {
  padding: 9px 22px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.ps18-tab-btn.active {
  background: #e8363c;
  color: #fff;
  border-color: #e8363c;
}
.ps18-tab-btn:hover:not(.active) {
  background: #e9e9e9;
}
.ps18-tab-pane {
  display: none;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}
.ps18-tab-pane.ps18-tab-active {
  display: block;
}
.ps18-tag {
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  margin: 2px 2px;
}
.ps18-tag:hover {
  background: #e8363c;
  color: #fff;
  border-color: #e8363c;
}
.ps18-spec-table-wrap {
  overflow-x: auto;
}
.ps18-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.ps18-spec-table thead tr th {
  background: #f5f5f5;
  padding: 8px 12px;
  font-weight: 700;
  text-align: left;
  border: 1px solid #e0e0e0;
}
.ps18-spec-table tbody tr td {
  padding: 7px 12px;
  border: 1px solid #e0e0e0;
  color: #555;
}
.ps18-spec-table tbody tr:nth-child(even) td {
  background: #fafafa;
}
/* Related products carousel */
.ps18-related-section {
  margin-top: 30px;
}
.ps18-related-header {
  background: #e8363c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 10px 16px;
  margin-bottom: 12px;
  border-radius: 3px 3px 0 0;
}
.ps18-related-carousel-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.ps18-rel-arrow {
  flex: 0 0 32px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  z-index: 2;
  transition: background 0.15s;
}
.ps18-rel-arrow:hover {
  background: #e8363c;
  color: #fff;
  border-color: #e8363c;
}
.ps18-related-track {
  display: flex;
  gap: 16px;
  overflow: hidden;
  flex: 1;
  transition: transform 0.35s ease;
}
.ps18-related-item {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
  display: flex;
}
.ps18-related-item > .ps18-prod-card {
  width: 100%;
}
/* Blog article */
.ps18-blog-article {
  min-width: 0;
}
.ps18-blog-article-img-wrap {
  margin-bottom: 14px;
  border-radius: 4px;
  overflow: hidden;
}
.ps18-blog-article-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}
.ps18-blog-article-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0 0 12px;
  line-height: 1.35;
}
.ps18-blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 0;
  margin-bottom: 16px;
}
.ps18-blog-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ps18-blog-meta-sep {
  color: #ccc;
}
.ps18-blog-meta-link {
  color: #4a90d9;
  text-decoration: none;
}
.ps18-blog-meta-link:hover {
  text-decoration: underline;
}
.ps18-blog-article-body {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.ps18-blog-tag-row {
  font-size: 13px;
  color: #555;
  margin: 12px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.ps18-blog-share {
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ps18-blog-share-label {
  font-size: 13px;
  color: #888;
}
.ps18-x-post-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #000;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}
.ps18-x-post-btn:hover {
  background: #333;
  color: #fff !important;
}
.ps18-blog-related-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.ps18-blog-same-cat h3, .ps18-blog-rel-tags h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  border-bottom: 2px solid #e8363c;
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.ps18-blog-rel-tags a {
  display: block;
  font-size: 13px;
  color: #4a90d9;
  text-decoration: none;
  margin-bottom: 4px;
}
.ps18-blog-rel-tags a:hover {
  text-decoration: underline;
}
.ps18-comment-section {
  margin-top: 28px;
}
.ps18-comment-section h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  border-bottom: 2px solid #e8363c;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.ps18-lc-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ps18-lc-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ps18-lc-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.ps18-lc-input {
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 10px;
  font-size: 13px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.ps18-lc-input:focus {
  border-color: #4a90d9;
}
.ps18-lc-textarea {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 13px;
  width: 100%;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
}
.ps18-lc-textarea:focus {
  border-color: #4a90d9;
}
.ps18-btn-lc-submit {
  align-self: flex-start;
  padding: 10px 28px;
  background: #e8363c;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.ps18-btn-lc-submit:hover {
  background: #c0272d;
}
.ps18-existing-comments {
  margin-top: 20px;
}
/* Auth pages */
.well {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 24px;
}
/* Pagination */
.pagination .page-link {
  color: #e8363c;
}
.pagination .page-item.active .page-link {
  background-color: #e8363c;
  border-color: #e8363c;
  color: #fff;
}
/* Utilities */
.ps18-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #1a1a2e;
  color: #fff;
  padding: 14px;
  text-align: center;
  font-size: 13px;
}
#cookie a {
  color: #e8363c;
}
/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
  .ps18-hero-strip {
    flex-direction: column;
    height: auto;
  }
  .ps18-hero-left, .ps18-hero-right {
    width: 100%;
    height: 140px;
    flex-shrink: 0;
  }
  .ps18-hero-right {
    flex-direction: row;
    height: 130px;
  }
  .ps18-hero-center {
    height: 220px;
    flex: none;
  }
  .ps18-prod-grid-item {
    flex: 1 1 calc(33.33% - 10.67px);
    max-width: calc(33.33% - 10.67px);
  }
  .ps18-product-detail {
    flex-direction: column;
  }
  .ps18-pd-images {
    flex: none;
    max-width: 100%;
  }
  #product-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .ps18-with-sidebar {
    flex-direction: column;
  }
  .ps18-sidebar-left {
    flex: 0 0 auto;
    width: 100%;
  }
  .ps18-blog-related-sections {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  /* ps18-cat-grid now uses Bootstrap row/col — no override needed */
  .ps18-prod-grid-item {
    flex: 1 1 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }
  .ps18-related-item {
    flex: 0 0 calc(50% - 8px);
  }
  .ps18-cat-sort-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .ps18-pd-cart-row {
    flex-wrap: wrap;
  }
  .ps18-btn-add-cart {
    flex: 0 0 100%;
    order: 3;
  }
}
@media (max-width: 575px) {
  #product-list {
    grid-template-columns: 1fr;
  }
  .ps18-prod-grid-item {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .ps18-sort-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .ps18-search-wrap {
    flex-wrap: wrap;
    height: auto;
  }
  .ps18-cat-select {
    width: 100%;
    min-width: unset;
    height: 40px;
    border-right: none;
    border-bottom: 1px solid #d0d0d0;
  }
  .ps18-search-input {
    height: 40px;
  }
  .ps18-search-btn {
    width: 100%;
    height: 40px;
  }
  .ps18-side-share {
    display: none;
  }
}
/* ── SEARCH button ── */
.ps18-search-btn {
  background-color: #e8363c !important;
}
.ps18-search-btn:hover {
  background-color: #c0272d !important;
}
/* ── Sidebar category active item ── */
.list-group-item.active {
  background-color: #e8363c !important;
  border-color: #e8363c !important;
  color: #fff !important;
}
.list-group-item:hover:not(.active) {
  color: #e8363c !important;
}
/* ── FOOTER list resets ── */
#ps18-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#ps18-footer li {
  margin-bottom: 5px;
}
/* ── List-view for category page ── */
.ps18-list-view {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: unset !important;
}
.ps18-list-view .ps18-prod-grid-item {
  flex: 1 1 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}
.ps18-list-view .ps18-prod-card {
  flex-direction: row;
}
.ps18-list-view .ps18-prod-img-wrap {
  width: 160px;
  flex-shrink: 0;
  aspect-ratio: auto;
  height: 140px;
}
.ps18-list-view .ps18-prod-info {
  flex: 1;
  padding: 12px;
}
/* ── Sidebar override ── */
.ps18-sidebar-left .col-3, .ps18-sidebar-left .col-sm-3 {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
}
/* ── Product detail active thumbnail ── */
.ps18-pd-thumb-img.active {
  border-color: #e8363c;
}
/* ── MEGA MENU child link hover ── */
.ps18-mega-child-link:hover {
  color: #e8363c !important;
  background: #fafafa;
  padding-left: 8px;
}
/* ── Navbar wrap must be relative for mega menu absolute positioning ── */
#ps18-navbar-wrap {
  position: relative;
}
/* ── Ensure mega menu aligns to full navbar width ── */
#ps18-mega-dropdown {
  width: 100%;
}
/* ── Prevent #menu OC default from overlapping ── */
#menu {
  display: none !important;
}
/* ════════════════════════════════════════
   Sidebar widget — Latest / Bestseller tabs
   ════════════════════════════════════════ */
.ps18-sb-widget {
  background: #fff;
  border: 1px solid #e0e0e0;
  margin-bottom: 16px;
  overflow: hidden;
}
.ps18-sb-tab-nav {
  display: flex;
  border-bottom: 2px solid #e8363c;
}
.ps18-sb-tab-btn {
  flex: 1;
  padding: 9px 6px;
  background: #f5f5f5;
  border: none;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #555;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
}
.ps18-sb-tab-btn.active {
  background: #e8363c;
  color: #fff;
}
.ps18-sb-tab-btn:hover:not(.active) {
  background: #f0f0f0;
}
.ps18-sb-panel {
  padding: 4px 0;
}
.ps18-sb-prod {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  transition: background 0.12s;
}
.ps18-sb-prod:last-child {
  border-bottom: none;
}
.ps18-sb-prod:hover {
  background: #fafafa;
}
.ps18-sb-prod-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border: 1px solid #eee;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f9f9f9;
}
.ps18-sb-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ps18-sb-prod-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ps18-sb-prod-name {
  font-size: 12px;
  color: #333;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ps18-sb-prod:hover .ps18-sb-prod-name {
  color: #e8363c;
}
.ps18-sb-prod-price {
  font-size: 13px;
  font-weight: 700;
  color: #e8363c;
}
/* ── Testimonial ── */
.ps18-sb-testimonial {
  background: #fff;
  border: 1px solid #e0e0e0;
  margin-bottom: 16px;
  overflow: hidden;
}
.ps18-sb-testi-head {
  background: #333;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 9px 14px;
  text-transform: uppercase;
}
.ps18-sb-testi-body {
  padding: 14px;
  position: relative;
}
.ps18-sb-quote-icon {
  color: #e8363c;
  font-size: 22px;
  opacity: 0.25;
  margin-bottom: 6px;
  display: block;
}
.ps18-sb-testi-text {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px;
  font-style: italic;
}
.ps18-sb-testi-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
/* ── Loved Banner ── */
.ps18-sb-loved-banner {
  background: linear-gradient(135deg, #e8363c 0%, #c0272d 100%);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}
.ps18-sb-loved-inner {
  padding: 20px 14px;
  text-align: center;
  color: #fff;
}
.ps18-sb-loved-paws {
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.ps18-sb-loved-title {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
}
.ps18-sb-loved-sub {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-bottom: 8px;
}
.ps18-sb-loved-hearts {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.7;
  margin-bottom: 8px;
}
.ps18-sb-loved-desc {
  font-size: 10px;
  opacity: 0.8;
  line-height: 1.4;
}
/* ══════════════════════════════
   CATEGORY PAGE — FILTER SIDEBAR
══════════════════════════════ */
.ps18-filter-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  font-size: 13px;
}
.ps18-filter-heading {
  background: #333;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 14px;
  text-transform: uppercase;
}
.ps18-filter-section {
  border-bottom: 1px solid #e8e8e8;
}
.ps18-filter-sec-head {
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c47800;
  user-select: none;
}
.ps18-filter-sec-head:hover {
  background: #fafafa;
}
.ps18-filter-arrow {
  font-size: 10px;
  color: #999;
}
.ps18-filter-sec-body {
  padding: 6px 14px 10px;
}
.ps18-filter-scroll {
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.ps18-filter-check {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  cursor: pointer;
  color: #444;
  font-size: 13px;
}
.ps18-filter-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #e8363c;
  cursor: pointer;
  flex-shrink: 0;
}
/* Attribute sub-label and indent */
.ps18-filter-attr-label {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 0 2px;
  margin-top: 4px;
  border-top: 1px solid #f0f0f0;
}
.ps18-filter-attr-label:first-child {
  border-top: none;
  margin-top: 0;
}
.ps18-filter-check-sub {
  padding-left: 8px;
}
/* Rating filter stars */
.ps18-rating-row {
  gap: 2px;
}
.ps18-fstar {
  font-size: 15px;
  color: #ddd;
}
.ps18-fstar-on {
  color: #f5a623;
}
/* Reset All button */
.ps18-filter-reset-wrap {
  padding: 10px 14px;
  border-top: 2px solid #e8e8e8;
}
.ps18-filter-reset-btn {
  background: none;
  border: none;
  color: #555;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ps18-filter-reset-btn i {
  color: #c0392b;
  font-size: 16px;
}
.ps18-filter-reset-btn:hover {
  color: #000;
}
/* Price inputs */
.ps18-price-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.ps18-price-row label {
  color: #666;
  font-size: 12px;
}
.ps18-price-num {
  width: 68px;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 4px 5px;
  font-size: 12px;
  text-align: center;
  color: #333;
}
.ps18-price-num:focus {
  outline: none;
  border-color: #e8363c;
}
/* Dual range slider */
.ps18-range-wrap {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  margin: 8px 4px;
}
.ps18-range-input {
  position: absolute;
  width: calc(100% + 8px);
  left: -4px;
  height: 0;
  top: 3px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}
.ps18-range-input::-webkit-slider-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e8363c;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.ps18-range-input::-moz-range-thumb {
  pointer-events: all;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e8363c;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
/* Loading overlay */
.ps18-filter-loading {
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.2s;
}
