:root {
  --accent: #d91b1b;
  --muted: #6b6b6b;
  --max-w: 1100px;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #111;
}

.container-max {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 15px;
}

.static-page-content {
  padding: 40px 0;
  line-height: 1.6;
}

.static-page-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 25px;
}

.static-page-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #111;
}

.static-page-content p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

.static-page-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.static-page-content ul li {
  margin-bottom: 10px;
  list-style: disc;
  color: #444;
}

.static-page-content a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .static-page-content {
    padding: 20px 0;
  }

  .static-page-content h1 {
    font-size: 26px;
  }

  .static-page-content h2 {
    font-size: 20px;
  }

  .static-page-content p,
  .static-page-content ul li {
    font-size: 14px;
  }
}

/* TOP BAR (kept visually same) */
/* TOP BAR LAYOUT */
.top-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  gap: 20px;
}

/* LEFT */
.tb-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* TOGGLE SWITCH */
.switch-toggle {
  width: 40px;
  height: 20px;
  position: relative;
  display: inline-block;
}

.switch-toggle input {
  display: none;
}

.switch-toggle .slider {
  position: absolute;
  inset: 0;
  background: #dcdcdc;
  border-radius: 20px;
  transition: .2s;
}

.switch-toggle .slider:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}

.switch-toggle input:checked+.slider {
  background: #d91b1b;
}

.switch-toggle input:checked+.slider:before {
  transform: translateX(20px);
}

.toggle-label {
  font-size: 14px;
  color: #333;
}

/* CENTER BAR */
.tb-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 16px;
}

.filter-text,
.sort-text,
.featured-label {
  font-size: 14px;
  color: #222;
}

.filter-icon {
  width: 14px;
  height: 14px;
}

.down-icon {
  width: 14px;
  height: 14px;
}

.featured-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

/* RIGHT SIDE AREA SELECT */
.tb-right {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #D9D9D96B;
  border-radius: 5px;
  padding-left: 10px;
}

.area-label {
  font-size: 14px;
  color: #333;
}

.area-dropdown {
  position: relative;
  display: inline-block;
}

.area-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #b63e37;
}

/* Dropdown menu */
.area-menu {
  display: none;
  position: absolute;
  top: 25px !important;
  right: 0;
  min-width: 150px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.area-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.area-menu a:hover {
  background: #f5f5f5;
}

/* class toggled by JS */
.area-dropdown.open .area-menu {
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .tb-center {
    gap: 12px;
  }

  .area-btn {
    padding: 6px 10px;
  }
}



.area-select {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fafafa;
  /* light background */
  border: 1px solid #efefef;
  /* subtle border */
  padding-left: 6px;
  border-radius: 8px;
  box-shadow: none;
}

/* left text */
.area-label {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

/* dropdown wrapper */
.area-dropdown {
  position: relative;
  display: inline-block;
}

/* right small button style */
.area-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  /* white pill inside the container */
  border: 1px solid #eee;
  color: #b63e37;
  /* red text */
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

/* caret small */
.area-btn .caret {
  font-size: 12px;
  color: #b63e37;
}

/* dropdown menu (hidden by default) */
.area-menu {
  position: absolute;
  top: 26px;
  right: 0;
  min-width: 150px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: none;
  z-index: 50;
}

/* menu items */
.area-menu a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.area-menu a:hover {
  background: #f5f5f5;
}

/* show menu on hover for desktop */
.area-dropdown:hover .area-menu {
  display: block;
}

/* optional small responsive tweak */
@media (max-width:480px) {
  .area-select {
    padding: 6px;
    gap: 8px;
  }

  .area-btn {
    padding: 6px 8px;
    font-size: 13px;
  }
}



/* PAGE / PRODUCT */
.page-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 0.6px;
  text-align: center;
}

.product-main {
  margin-top: 58px;
}

.row-product {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.left-col {
  flex: 0 0 420px;
  max-width: 420px;
}

.right-col {
  flex: 1 1 460px;
  min-width: 260px;
}

.img-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-card img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  object-fit: cover;
}

/* RIGHT SIDE */
.right-product-details {
  padding-left: 8px;
  margin-top: 10px;
}

.product-title {
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-price {
  color: var(--accent);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 6px;
}

.tax-note {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}

hr.sep {
  border: 0;
  height: 1px;
  background: #efefef;
  margin: 12px 0 18px;
}

.label-small {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.size-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.size {
  padding: 14px 14px;
  background: #f2f2f2;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: 0px solid #ddd;
  cursor: pointer;
}

.size.active {
  background: #333;
  color: #fff;
}

/* layout for date + quantity (same row) */
.two-col {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.two-col .field-box {
  flex: 1;
  min-width: 160px;
}

.field-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.small-field {
  height: 44px;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 8px 10px;
  width: 100%;
  box-sizing: border-box;
}

/* QUANTITY: red rounded box with inner - 1 + */
.qty-container {
  display: inline-block;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 2px;
  background: #fff;
}

.qty-container .qty-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.qty-input {
  width: 60px;
  height: 36px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.custom-textarea {
  width: 100%;
  min-height: 99px;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
}

.add-cart {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  margin-bottom: 18px;
}

/* Accordion container */
.mini-accordion .acc-item {
  border-bottom: 1px solid #efefef;
  padding: 0;
}

/* Accordion header */
.acc-header {
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Arrow style */
.acc-arrow {
  width: 14px;
  transition: transform 0.25s ease;
}

/* Rotate arrow WHEN OPEN */
.acc-header:not(.collapsed) .acc-arrow {
  transform: rotate(180deg);
}

/* Body */
.acc-body {
  padding: 12px 0;
  font-size: 14px;
  color: #444;
}


/* responsive */
@media (max-width:991.98px) {

  .left-col,
  .right-col {
    flex-basis: 100%;
    max-width: 100%;
  }

  .two-col {
    flex-direction: row;
  }
}

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

  .page-title {
    font-size: 22px;
  }
}



/* ADD these styles to your main stylesheet (place after any existing top-bar rules) */

/* TOP BAR */
.top-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  box-sizing: border-box;
}

/* containers */
.tb-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.tb-center {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  flex: 1 1 auto;
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* toggle */
.switch-toggle {
  width: 38px;
  height: 20px;
  position: relative;
  display: inline-block;
}

.switch-toggle input {
  display: none;
}

.switch-toggle .slider {
  position: absolute;
  inset: 0;
  background: #ececec;
  border-radius: 20px;
  transition: .18s;
}

.switch-toggle .slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: .18s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.switch-toggle input:checked+.slider {
  background: #1e90ff;
}

.switch-toggle input:checked+.slider:before {
  transform: translateX(18px);
}

.toggle-label {
  font-size: 14px;
  color: #333;
}

/* center items */
.center-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 14px;
}

.center-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  opacity: .95;
}

/* featured small caret */
.center-item .down-icon {
  width: 14px;
  height: 14px;
}

/* right area */
.area-label {
  font-size: 14px;
  color: #333;
  margin-right: 6px;
}

/* area pill */
.area-dropdown {
  position: relative;
  display: inline-block;
}

.area-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #b63e37;
}

.area-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  min-width: 150px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  z-index: 40;
}

.area-menu a {
  display: block;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.area-menu a:hover {
  background: #f5f5f5;
}

/* toggled state */
.area-dropdown.open .area-menu {
  display: block;
}

/* responsive */
@media (max-width:768px) {
  .tb-center {
    gap: 12px;
  }

  .center-icon {
    width: 12px;
    height: 12px;
  }

  .area-btn {
    padding: 6px 10px;
  }
}

/* FILTER DROPDOWN */
.filter-dropdown {
  position: relative;
  cursor: pointer;
}

.filter-dropdown .filter-menu {
  position: absolute;
  top: 28px;
  left: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  display: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.filter-dropdown:hover .filter-menu {
  display: block;
}

.filter-menu a {
  display: block;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.filter-menu a:hover {
  background: #f5f5f5;
}

/* FEATURED DROPDOWN */
.featured-dropdown {
  position: relative;
  cursor: pointer;
}

.featured-dropdown .featured-menu {
  z-index: 5;
  position: absolute;
  top: 21px;
  left: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  display: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.featured-dropdown:hover .featured-menu {
  display: block;
}

.featured-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.featured-menu a:hover {
  background: #f5f5f5;
}