/* ============================================
   Main Stylesheet — Generated Pharmacy Site
   Based on mypharmacieenligne.com design patterns
   ============================================ */

/* FontAwesome font-display override */
@font-face {
  font-family: 'FontAwesome';
  font-display: swap;
}

/* Reset & Base */
html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
:focus { outline: 0; }

body, html { height: 100%; }
body {
  background-color: #f1f0f0;
  color: #555;
  font: normal 16px/1.5 Arial, sans-serif;
  min-width: 320px;
}

p {
  margin: 0 0 15px;
  color: #555;
  font: normal 16px/1.5 Arial, sans-serif;
  text-align: justify;
}

a { color: #555; text-decoration: underline; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; border: 0; }
ul { list-style: none; margin: 0; padding: 0; }
table { width: 100%; border-collapse: collapse; border-spacing: 0; }

.clr { clear: both; }
.clr::after, .clr::before { content: ''; display: block; clear: both; }

/* ============================================
   Wrapper — table layout (sidebar + main)
   ============================================ */

.wrapper {
  display: table;
  width: 100%;
  min-height: 100%;
  height: 100%;
  background-color: #f1f0f0;
  background-image: linear-gradient(to bottom, #efebec 0, #f6f3f4 100%);
}

.main-container,
.sidebar {
  display: table-cell;
  vertical-align: top;
}

/* ============================================
   Sidebar (320px, white)
   ============================================ */

.sidebar {
  width: 320px;
  max-width: 320px;
  background-color: #fff;
}

.logo {
  width: 320px;
  text-align: center;
  text-transform: uppercase;
  padding: 47px 0 45px;
  display: block;
  text-decoration: none;
}
.logo .logo-img {
  display: block;
  margin: 0 auto 25px;
  max-width: 130px;
  height: auto;
}
.logo .site-title {
  font-size: 20px;
  line-height: 26px;
  text-decoration: none;
  margin: 0;
  display: inline-block;
  color: #333;
}
.logo-text {
  font-size: 22px;
  line-height: 26px;
  color: var(--theme-color, #333);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
}
.logo img {
  max-height: 90px;
  width: auto;
}

/* Left Menu */
.left-menu { margin: 0; padding: 0; contain: content; }
.left-menu > li { position: relative; border-bottom: 1px solid #5a5a5a; }
.left-menu > li:last-child { border-bottom: none; }
.left-menu > li > a {
  display: block;
  padding: 10px 50px 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .15s, color .15s;
  border-bottom: none;
  background: #4a4a4a;
}
.left-menu > li > a:hover { background: #555; color: #fff; }
.left-menu > li.open > a,
.left-menu > li > a.sub-left-menu-cat-selected {
  background: #3a3a3a;
  color: #fff;
}

.arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23fff' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat center center;
  transition: transform 0.3s ease;
}
.arrow-right.down {
  transform: rotate(180deg);
}
.left-menu > li.open .arrow-right,
.left-menu > li:hover .arrow-right {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23fff' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
}

.sub-left-menu {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease;
}
.sub-left-menu.display-block,
.left-menu > li.open .sub-left-menu {
  max-height: 2000px;
}

.sub-left-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 20px 7px 30px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  border-bottom: none;
  transition: background .15s;
}
.sub-left-menu li a:hover {
  background: #f5f5f5;
}
.sub-left-menu li a span,
.sub-left-menu li a .sidebar-price {
  color: var(--theme-color, #007a6d);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  margin-left: 8px;
  flex-shrink: 0;
}
.sub-left-menu li.sub-left-menu-prod-selected a {
  background: #eaeaea;
  color: #333;
  font-weight: 700;
}
.sub-left-menu-cat-selected {
  color: #fff !important;
  font-weight: 700;
}

/* Sidebar cart */
.sidebar-cart {
  margin: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.sidebar-cart-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #4a4a4a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.sidebar-cart-items {
  margin: 0;
  padding: 0;
}
.sidebar-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  gap: 8px;
}
.sidebar-cart-item:last-child { border-bottom: none; }
.sidebar-cart-item-info {
  flex: 1;
  min-width: 0;
}
.sidebar-cart-item-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.sidebar-cart-item-qty {
  font-size: 12px;
  color: #888;
}
.sidebar-cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-color, #007a6d);
  white-space: nowrap;
}
.sidebar-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-top: 2px solid #eee;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}
.sidebar-cart-total-price {
  font-size: 16px;
}
.sidebar-cart-buttons {
  display: flex;
  flex-direction: column;
}
.sidebar-cart-btn {
  display: block;
  text-align: center;
  padding: 11px 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}
.sidebar-cart-btn-view {
  background: #e8e8e8;
  color: #333;
  border-top: 1px solid #ddd;
}
.sidebar-cart-btn-view:hover { background: #ddd; }
.sidebar-cart-btn-checkout {
  background: var(--theme-color, #007a6d);
  color: #fff;
}
.sidebar-cart-btn-checkout:hover { opacity: .9; }
.sidebar-cart-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #ccc;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color .15s;
  border: none;
  background: none;
  padding: 0;
  margin-left: 2px;
}
.sidebar-cart-remove:hover { color: #c62828; }

/* Sidebar footer links */
.sidebar-footer-links {
  padding: 16px 20px 30px;
}
.sidebar-footer-links li { margin-bottom: 0; }
.sidebar-footer-links li a {
  color: #333;
  font-size: 14px;
  line-height: 32px;
  text-decoration: underline;
}
.sidebar-footer-links li a:hover { color: var(--theme-color, #007a6d); }

/* ============================================
   Menu Bar (dark top bar)
   ============================================ */

.main-container { width: auto; }

.menu-container {
  background-color: #372e31;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
}

.support-block {
  overflow: hidden;
  text-align: left;
  float: left;
  flex-shrink: 0;
  background-color: var(--theme-color, #007a6d);
  padding-right: 10px;
}
.support-block a,
.support-block span {
  text-decoration: none;
  display: block;
  float: left;
}
.support-block .support-tel {
  color: #fff;
  font-size: 20px;
  line-height: 18px;
  padding: 14px 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.logo-desktop {
  width: 50px;
  height: 47px;
  float: left;
  border-bottom: 3px solid var(--theme-color, #007a6d);
  border-right: 1px solid #007467;
  background: #fff;
  /* logo rendered via EJS, not CSS background */
}

/* Top menu */
.top-menu {
  display: inline-block;
  padding: 12px 0;
  overflow: visible;
}
.top-menu li { float: left; }
.top-menu li:last-child { float: right; }
.top-menu a {
  color: #b9b7b8;
  display: block;
  font-size: 14px;
  line-height: 26px;
  padding: 0 23px;
  text-decoration: underline;
}
.top-menu a:hover { color: #fff; }

/* Top search (replaces FAQ/Contact in menu bar) */
.top-search {
  display: flex;
  justify-content: center;
  flex: 1;
  padding: 8px 15px;
}
.top-search-form {
  display: flex;
  align-items: center;
}
.top-search-input {
  width: 200px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px 0 0 3px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.top-search-input::placeholder { color: rgba(255,255,255,0.5); }
.top-search-input:focus {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  width: 250px;
}
.top-search-btn {
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-left: none;
  border-radius: 0 3px 3px 0;
  background: var(--theme-color, #007a6d);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.top-search-btn:hover { background: rgba(255,255,255,0.2); }

/* Search autocomplete dropdown */
.search-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}
.ac-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.ac-item:hover { background: #f5f5f5; }
.ac-item:last-child { border-bottom: none; }
.ac-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 10px;
  flex-shrink: 0;
}
.ac-info { flex: 1; min-width: 0; }
.ac-title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-price {
  font-size: 12px;
  color: var(--theme-color, #007a6d);
  font-weight: 700;
}

/* Nav search (in category bar) */
.header-nav-search {
  float: right;
  padding: 6px 10px;
}
.nav-search-form {
  display: flex;
  align-items: center;
}
.nav-search-input {
  width: 180px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px 0 0 3px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.nav-search-input::placeholder { color: rgba(255,255,255,0.6); }
.nav-search-input:focus {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}
.nav-search-btn {
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-left: none;
  border-radius: 0 3px 3px 0;
  background: rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.nav-search-btn:hover { background: rgba(255,255,255,0.35); }

/* Shopping cart icon */
.shopping-cart {
  float: right;
  flex-shrink: 0;
  position: relative;
}
.shopping-cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  width: 56px;
  height: 50px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
}
.shopping-cart-icon svg { display: block; }
.shopping-cart-title {
  display: block;
  text-align: center;
  width: 250px;
  height: 50px;
  background-color: #fff;
  color: #555;
  font: normal 16px/50px Tahoma, sans-serif;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 50px;
  z-index: 1;
}
.shopping-cart.empty .shopping-cart-title { display: none; }

.cart-count-badge {
  background: #ff3100;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  position: absolute;
  top: 5px;
  right: 5px;
}

/* Shopping cart dropdown */
.shopping-cart-inner {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 100;
  width: 300px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  border-radius: 0 0 4px 4px;
}
.shopping-cart:hover .shopping-cart-inner,
.shopping-cart.open .shopping-cart-inner { display: block; }

/* Mini cart title */
.mini-cart-title {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

/* Mini cart items */
.mini-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
}
.mini-cart-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid #eee;
  border-radius: 3px;
  flex-shrink: 0;
}
.mini-cart-info {
  flex: 1;
  min-width: 0;
}
.mini-cart-item-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.mini-cart-item-detail {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}
.mini-cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-color, #007a6d);
  white-space: nowrap;
}
.mini-cart-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #ccc;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color .15s;
  border: none;
  background: none;
  padding: 0;
  margin-left: 4px;
}
.mini-cart-remove:hover { color: #c62828; }

/* Mini cart total */
.mini-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  border-top: 1px solid #ddd;
}
.mini-cart-total-price {
  font-size: 17px;
  color: #333;
}
.mini-cart-btn {
  display: block;
  text-align: center;
  margin: 0;
  padding: 12px 10px;
  border-radius: 0;
  font-weight: 600;
  width: 100%;
  box-sizing: border-box;
}
.mini-cart-empty {
  padding: 24px 14px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

/* Hamburger */
#mob-menu {
  width: 50px;
  height: 50px;
  display: none;
  float: right;
  background-color: #372e31;
  position: relative;
  z-index: 11;
  cursor: pointer;
  border: none;
}
#mob-menu svg { display: block; margin: 15px auto; }

.open-top-menu {
  float: left;
  display: none;
  width: 20px;
  height: 49px;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='15' viewBox='0 0 30 150'%3E%3Ccircle cx='15' cy='15' r='15' fill='%23fff'/%3E%3Ccircle cx='15' cy='75' r='15' fill='%23fff'/%3E%3Ccircle cx='15' cy='135' r='15' fill='%23fff'/%3E%3C/svg%3E") no-repeat center center;
}

/* #close-mob-menu */
#close-mob-menu {
  width: 24px;
  height: 24px;
  margin: 16px auto 14px;
  padding: 0;
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

/* ============================================
   Main Content Area
   ============================================ */

.main-content {
  padding: 30px 60px 100px 50px;
}
.main-content.main-product-content {
  padding: 0 0 100px 0;
}

/* ============================================
   Breadcrumb
   ============================================ */

.breadcrumb {
  padding: 12px 20px 12px 50px;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: transparent;
  margin: 0;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
}
.breadcrumb a:hover { color: var(--theme-color, #007a6d); }
.breadcrumb .fa {
  margin: 0 6px;
  font-size: 13px;
  color: #aaa;
}
.breadcrumb .fa-home { margin-left: 0; color: #999; }
.breadcrumb .breadcrumb-sep {
  margin: 0 8px;
  color: #bbb;
  font-size: 12px;
}
.breadcrumb .breadcrumb-current {
  color: #555;
  font-weight: 600;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  background-color: transparent;
  border: none;
  display: inline-block;
  font: normal 16px/20px Arial, sans-serif;
  text-decoration: none;
  text-align: center;
  margin: 0;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .15s;
}
.btn:hover { opacity: .9; text-decoration: none; }

.btn-orange,
.btn-primary {
  color: #fff;
  text-transform: none;
  background: var(--theme-color, #016055);
  box-shadow: none;
  border-radius: 2px;
  padding: 10px 20px;
  font-weight: 600;
}
.btn-orange:hover,
.btn-primary:hover {
  opacity: .85;
}

.btn-gray,
.btn-secondary {
  color: #666;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 20px;
  text-align: center;
  border: 0;
  background: linear-gradient(to top, #e5e5e5 0, #f8f8f8 100%);
  border-radius: 2px;
  box-shadow: 0 1px 0 #fff inset, 0 1px 1px rgba(0,0,0,.45);
}

.btn-success { background: #2e7d32; color: #fff; }
.btn-danger { background: #c62828; color: #fff; }
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-lg { padding: 12px 28px; font-size: 16px; }
.btn-block { display: block; width: 100%; }
/* Cart button in product tables: always icon-only */
.btn-add-to-cart {
  font-size: 0 !important;
  padding: 10px 14px !important;
  min-width: 44px;
  min-height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='m1 1 4 0 2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  white-space: nowrap;
  cursor: pointer;
}
.btn-add-to-cart.btn-added {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") !important;
  background-color: #2e7d32 !important;
}

.btn-cart {
  min-width: 90px;
  padding: 8px 16px;
}
/* Empty cart button (icon-only, like original) */
.btn-cart:empty {
  min-width: 50px;
  min-height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='m1 1 4 0 2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--theme-color, #016055);
}

.round-arrow::after {
  content: '';
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 180 180'%3E%3Cpath fill='%23fff' d='M90 180c-50 0-90-40-90-90S40 0 90 0s90 40 90 90-40 90-90 90zm0-163c-40 0-73 33-73 73s33 73 73 73 73-33 73-73-33-73-73-73zm-8 110c-2 2-4 2-6 2-5 0-8-3-8-8 0-3 1-5 2-6l27-25-27-25c-1-1-2-3-2-6 0-5 3-8 8-8 2 0 4 0 6 2l33 31c2 1 3 4 3 6s-1 5-3 6l-33 31z'/%3E%3C/svg%3E") no-repeat 0 0;
}

/* ============================================
   Section Title
   ============================================ */

.section-title,
.page-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #333;
  line-height: 1.3;
}
.page-title { font-size: 24px; margin-bottom: 20px; }

/* ============================================
   Product Grid (cards)
   ============================================ */

.product-grid,
.our-products-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.product-grid-item,
.our-products-item {
  width: calc(33.333% - 12px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s;
  min-height: 380px;
  contain: layout;
}
.product-grid-item:hover,
.our-products-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.our-products-item-inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.our-products-img {
  text-align: center;
  padding: 15px 15px 10px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-products-img img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  aspect-ratio: 250 / 200;
}
.our-products-img a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.our-products-info {
  padding: 12px 15px 6px;
}
.our-products-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 0;
  line-height: 1.3;
}
.our-products-title a {
  color: #333;
  text-decoration: none;
}
.our-products-title a:hover {
  color: var(--theme-color, #007a6d);
}
.our-products-dosage-qlt {
  font-size: 13px;
  color: #888;
  margin-bottom: 0;
}
.our-products-dosage { margin-right: 6px; }

.our-products-price-btn {
  padding: 0;
  overflow: hidden;
  display: flex;
  border-top: 1px solid #eee;
  margin-top: auto;
}
.our-products-price {
  flex: 1;
  font-size: 13px;
  color: #555;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  line-height: 1.4;
}
.our-products-price .price {
  font-size: 13px;
}
.our-products-price .priceBold {
  font-weight: 700;
  font-size: 17px;
  color: var(--theme-color, #01a493);
  display: block;
}

.our-products-btn {
  display: flex;
  align-items: stretch;
}
.our-products-btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  padding: 10px 16px;
  min-width: 80px;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
  white-space: nowrap;
}

/* product-card (used in EJS templates) */
.product-card-link {
  display: block;
  padding: 16px;
  color: #333;
  text-decoration: none;
}
.product-card-img { width: 100%; height: 140px; object-fit: contain; margin-bottom: 10px; }
.product-card-img-placeholder { width: 100%; height: 140px; background: #f0f0f0; border-radius: 4px; margin-bottom: 10px; }
.product-card-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.product-card-category { font-size: 12px; color: #888; display: block; margin-bottom: 4px; }
/* Dosage tabs */
.dosage-tabs-label {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.dosage-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  flex-wrap: wrap;
}
.dosage-tab {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  background: #f0f0f0;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  position: relative;
}
.dosage-tab:hover {
  background: #e8f5f3;
  border-color: var(--theme-color, #007a6d);
  color: var(--theme-color, #007a6d);
}
.dosage-tab.active {
  background: var(--theme-color, #007a6d);
  border-color: var(--theme-color, #007a6d);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,122,109,.3);
}
.dosage-panel {
  display: none !important;
}
.dosage-panel.active {
  display: block !important;
  animation: dosageFadeIn .25s ease;
}
@keyframes dosageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.per-pill-label {
  font-size: 12px;
  font-weight: 400;
  color: #888;
  text-transform: lowercase;
}
.product-card-price { font-size: 14px; color: var(--theme-color, #01a493); font-weight: 700; }

/* TOP PRODUIT badge */
.badge-top {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ff3100;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

/* ============================================
   Product Page
   ============================================ */

.product-container {
  position: relative;
  min-height: 185px;
  padding: 30px 54px 0;
}
.product-page-title {
  font-size: 24px;
  margin: 0 0 20px;
  color: #333;
}
.product-left { float: left; width: 40%; padding-right: 30px; }
.product-short-description {
  margin-bottom: 20px;
  line-height: 1.7;
}
.product-short-description h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.product-main { overflow: hidden; }
.product-header { margin-bottom: 16px; }
.product-header h2 { font-size: 20px; margin: 0 0 8px; color: #333; }
.product-footer { margin-top: 10px; }

.product-intro { margin-bottom: 24px; line-height: 1.7; }

/* Product image carousel */
.carousel-thumbnail-container { margin-bottom: 20px; }
.carousel-container { list-style: none; padding: 0; margin: 0; }
.image-set { text-align: center; }
.image-main { max-width: 100%; border-radius: 4px; }

/* Dosage tables */
.dosage-group { margin-bottom: 24px; }
.dosage-title {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--theme-color, #007a6d);
  font-weight: 600;
}

.table-product,
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.table-product caption,
.price-table caption {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 0;
  color: var(--theme-color, #007a6d);
}
.table-product thead th,
.price-table th {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #f7f7f7;
  box-shadow: 0 1px 0 #f7f7f7 inset, 0 -1px 0 #d7d7d7 inset;
  font: bold 14px/45px Arial, sans-serif;
  text-align: left;
  vertical-align: middle;
  color: #333;
  padding: 0 10px;
}
.table-product tbody td,
.price-table td {
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  font-size: 14px;
  color: #555;
  vertical-align: middle;
}
.table-product tbody td .price,
.price-cell {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}
.table-product tbody td .new-price,
.price-cell strong {
  font-size: 16px;
  color: var(--theme-color, #01a493);
  font-weight: 700;
}
.price-table tr:hover { background: #fafafa; }

.bonus-badge {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}

/* Rating */
.rating-container { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.product-rating { font-weight: 700; font-size: 16px; color: #333; }
.rating-black {
  display: inline-block;
  width: 80px;
  height: 14px;
  background: #ddd;
  position: relative;
  border-radius: 2px;
}
.rating-orange {
  display: block;
  height: 100%;
  background: #ff9800;
  border-radius: 2px;
}
.rating-and-reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.link-on-reviews {
  color: var(--theme-color, #007a6d);
  font-size: 14px;
}

/* Tabs */
.nav-tabs {
  display: flex;
  list-style: none;
  border-bottom: 2px solid #ddd;
  margin: 30px 0 0;
  padding: 0;
}
.nav-tabs li { margin-bottom: -2px; }
.nav-tabs li a {
  display: block;
  padding: 10px 20px;
  color: #888;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-size: 15px;
  font-weight: 600;
  transition: color .15s;
}
.nav-tabs li.active a,
.nav-tabs li a:hover {
  color: var(--theme-color, #007a6d);
  border-bottom-color: var(--theme-color, #007a6d);
}
.tab-content { padding: 20px 0; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Product description / SEO content */
.product-content,
.seo-content,
.category-content {
  margin-top: 30px;
  line-height: 1.8;
}
.seo-content h2,
.product-content h2 { font-size: 20px; margin: 20px 0 10px; color: #333; }
.seo-content h3,
.product-content h3 { font-size: 17px; margin: 16px 0 8px; color: #444; }
.seo-content p,
.product-content p { margin-bottom: 12px; }
.seo-content ul,
.seo-content ol,
.product-content ul,
.product-content ol { margin: 10px 0 10px 24px; list-style: disc; }
.seo-content li,
.product-content li { margin-bottom: 4px; }

blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  background: #f7f7f7;
  border-left: 4px solid var(--theme-color, #007a6d);
  overflow: hidden;
}
blockquote img { float: left; margin-right: 16px; max-width: 320px; }

/* Related products */
.related-products { margin-top: 30px; }
.related-products h2 { font-size: 20px; margin-bottom: 16px; }

/* Reviews */
.product-review-container { margin-top: 20px; }
.review-list {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.review-list-left { float: left; width: 180px; text-align: center; }
.review-list-right { overflow: hidden; padding-left: 16px; }
.review-user-name { display: block; font-weight: 700; font-size: 14px; color: #333; margin-top: 6px; }
.review-date-pub { font-size: 12px; color: #888; margin-bottom: 4px; }
.review-content { line-height: 1.6; font-size: 14px; color: #555; }
.add-review-btn {
  margin-bottom: 16px;
  padding: 10px 0;
}
.add-review-btn .icon { display: inline-block; vertical-align: middle; margin-right: 6px; }
.add-review-btn a { color: var(--theme-color, #007a6d); font-weight: 600; text-decoration: none; }
.add-review-btn a:hover { text-decoration: underline; }

/* Review form */
.product-add-review { display: none; }
.product-add-review.show { display: block; }
.product-reviews.hide { display: none; }
.product-add-review-form .form-group.half { display: flex; gap: 14px; }
.product-add-review-form .form-group.half .left-side,
.product-add-review-form .form-group.half .right-side { flex: 1; }
.product-add-review-form input[type="text"],
.product-add-review-form input[type="email"] {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.product-add-review-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  resize: vertical;
}
.product-add-review-form .qlt-star { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.product-add-review-form .qlt-star label { margin-right: 8px; font-weight: 600; }
.one-star, .two-star, .three-star, .four-star, .five-star {
  width: 20px; height: 20px; cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23ddd' stroke='none'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/%3E%3C/svg%3E") no-repeat center;
}
.one-star.active, .two-star.active, .three-star.active, .four-star.active, .five-star.active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23ff9800' stroke='none'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/%3E%3C/svg%3E");
}
.star-divider { width: 4px; }

/* ============================================
   Cart Page
   ============================================ */

.cart-empty { text-align: center; padding: 40px; color: #888; }

/* Order form container */
.product-container.orderform { padding: 30px 20px 0 54px; }

/* Delete item icon */
.order-del { text-align: center; }
.order-del-icon {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 1000 1000'%3E%3Cpolygon fill='%23666' points='995,104 896,5 500,401 104,5 5,104 401,500 5,896 104,995 500,599 896,995 995,896 599,500'/%3E%3C/svg%3E") no-repeat center center;
}
.order-del-icon:hover { opacity: .7; }

/* Quantity +/- controls */
.qlt-number { display: inline-block; vertical-align: middle; }
.qlt-number .btn {
  width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0;
  border: 1px solid #d7d7d7;
  background-color: #f8f6f6;
  margin: 0 10px;
  font-size: 14px;
  cursor: pointer;
}
.qlt-number .btn:hover { background-color: #eee; }

/* Mobile cart table */
.order-table.show-mob { display: none; }
.order-table.show-mob td { vertical-align: top; }
.order-table .order-img-mob img {
  float: left;
  border: 1px solid #ddd;
  display: block;
  margin: 0 13px 11px 0;
  width: 72px;
}
.order-table .order-img-mob .order-title {
  font-size: 14px;
  font-weight: 700;
  min-height: 32px;
  margin-bottom: 4px;
  line-height: 16px;
  color: #353535;
}
.order-table .order-img-mob .order-dosage {
  font-size: 12px;
  line-height: 16px;
  color: #353535;
}
.order-table .order-img-mob .order-price {
  font-size: 14px !important;
  margin-top: 3px;
  line-height: 16px;
  color: #353535;
}
.order-table .order-img-mob .order-price .new-price { font-size: 16px; }
.order-table .order-img-mob .order-del { float: right; }
.order-table .order-img-mob .new-price,
.order-table .order-img-mob .old-price,
.order-table .order-img-mob .price { display: inline-block; }

/* Qty controls */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  overflow: hidden;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  padding: 0;
  line-height: 1;
}
.qty-btn:hover { background: #e8e8e8; }
.qty-btn:active { background: #ddd; }
.qty-value {
  min-width: 36px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  padding: 0 4px;
}

/* Order buttons inline */
.order-btn-inline {
  display: flex;
  gap: 10px;
  align-items: center;
}
.order-btn-inline .btn {
  float: none;
}

/* Order price-qty mobile */
.order-price-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.order-total-mob {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Arrow button */
.btn-arrow-right::after {
  content: '';
  width: 12px;
  height: 13px;
  margin-left: 7px;
  display: inline-block;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 1000 1030'%3E%3Cpath fill='%23fff' d='M990 491l-483-482c-7-7-15-10-24-10-9 0-16 3-23 10l-52 52c-7 7-10 14-10 23 0 9 3 17 10 24l407 407-407 407c-7 7-10 15-10 24 0 9 3 16 10 23l52 52c7 7 14 10 23 10 9 0 17-3 24-10l483-482c7-7 10-15 10-24 0-9-3-17-10-24z'/%3E%3C/svg%3E") no-repeat center center;
}

.order-table { margin-bottom: 45px; }
.order-table thead th {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #f7f7f7;
  box-shadow: 0 1px 0 #f7f7f7 inset, 0 -1px 0 #d7d7d7 inset;
  font: bold 14px/45px Arial, sans-serif;
  text-align: left;
  vertical-align: middle;
  color: #333;
}
.order-table tbody td {
  vertical-align: middle;
  font: 14px/30px Arial, sans-serif;
  color: #555;
  padding: 20px 5px 15px 0;
  border-bottom: 1px solid #f7f7f7;
  box-shadow: 0 -1px 0 #d7d7d7 inset;
}
.order-table tbody td.order-title {
  font: bold 16px/30px Arial, sans-serif;
}
.order-table tbody td.order-img img {
  display: block;
  width: 98px;
  height: auto;
  margin: 0 auto;
}
.order-table tbody .price { font-size: 16px; font-weight: 700; }
.order-table tbody .old-price { font-size: 16px; text-decoration: line-through; color: #999; }
.order-table tbody .new-price { font-size: 20px; color: var(--theme-color, #01a493); font-weight: 700; }

/* Cart also with .cart-table for backward compatibility */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: #f5f5f5; padding: 10px; text-align: left; font-size: 13px; }
.cart-table td { padding: 12px 10px; border-bottom: 1px solid #eee; }
.cart-product-name a { font-weight: 600; color: #333; }
.cart-item-total { font-size: 16px; color: var(--theme-color, #01a493); font-weight: 700; }

.cart-upgrade-row td { background: #fffde7; }
.upgrade-offer { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14px; }
.upgrade-save { color: #e65100; font-weight: 600; }

.order-sum-btn {
  width: 390px;
  margin: 0 auto;
  overflow: hidden;
}
.order-sum-btn .order-total-sum {
  overflow: hidden;
  margin-bottom: 25px;
  color: #333;
  font-size: 18px;
  line-height: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f7f7f7;
  box-shadow: 0 -1px 0 #d7d7d7 inset;
}
.order-sum-btn .order-total-title { float: left; }
.order-sum-btn .order-total-price { float: right; font-size: 24px; }
.order-sum-btn .order-total-price span { font-weight: 700; }
.order-sum-btn .order-btn { overflow: hidden; }

.cart-summary { margin-top: 20px; padding-top: 16px; border-top: 2px solid #ddd; text-align: right; }
.cart-total-line { font-size: 18px; margin-bottom: 16px; }
.cart-actions { display: flex; justify-content: flex-end; gap: 10px; }

/* ============================================
   Checkout
   ============================================ */

/* Checkout container */
.product-container.checkout { padding: 30px 54px 0; }

/* Checkout steps progress */
.checkout-steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 580px;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  color: #999;
  flex: 1;
  border-right: 1px solid #e0e0e0;
  position: relative;
}
.checkout-steps li:last-child { border-right: none; }
.checkout-steps li.active { color: var(--theme-color, #007a6d); font-weight: 700; }
.checkout-steps li.active .step-round {
  background: var(--theme-color, #007a6d);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,122,109,.3);
}
.step-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ddd;
  color: #888;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-text { font-size: 15px; }

/* Delivery / Billing form */
.delivery-billing-form {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.delivery-address h2,
.billing-address h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--theme-color, #007a6d);
}

.form-group-width {
  margin-bottom: 6px;
}
.input-client {
  display: flex;
  align-items: center;
  position: relative;
}
.input-client input,
.input-client select {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  font-size: 15px;
  font-family: Arial, sans-serif;
  transition: border-color .2s;
  background: transparent;
}
.input-client input:focus,
.input-client select:focus {
  outline: none;
  border-bottom-color: var(--theme-color, #007a6d);
  box-shadow: none;
}
.input-client select { padding-left: 44px; }

.red-info {
  color: #c62828;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

/* Input icons */
.inputIcon {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #4a4a4a;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  flex-shrink: 0;
}
.inputIcon.email { background: #4a4a4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") no-repeat center; background-size: 16px; }
.inputIcon.user { background: #4a4a4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") no-repeat center; background-size: 16px; }
.inputIcon.street { background: #4a4a4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") no-repeat center; background-size: 16px; }
.inputIcon.pzl { background: #4a4a4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center; background-size: 16px; }
.inputIcon.tel { background: #4a4a4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.362 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.338 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center; background-size: 16px; }
.inputIcon.city { background: #4a4a4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Crect x='4' y='2' width='16' height='20' rx='2' ry='2'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3Cpath d='M8 6h.01M16 6h.01M12 6h.01M8 10h.01M16 10h.01M12 10h.01M8 14h.01M16 14h.01M12 14h.01'/%3E%3C/svg%3E") no-repeat center; background-size: 16px; }
.inputIcon.land { background: #4a4a4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") no-repeat center; background-size: 16px; }

/* SSL badge */
.ssl-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.ssl-cart img { max-width: 60px; }
.ssl-text { font-size: 13px; color: #555; line-height: 1.4; }
.ssl-text .green { color: #2e7d32; font-weight: 600; }

.form-group-btn {
  overflow: hidden;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-group-btn .btn {
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
}

/* Checkout card (centered form card) */
.checkout-card {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.checkout-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color, #007a6d);
  margin: 0 0 16px;
}
.checkout-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 14px;
}
.checkout-section-title svg { color: var(--theme-color, #007a6d); }

/* Checkout radio options */
.checkout-radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.checkout-radio-option:hover { background: #f9f9f9; border-color: #ccc; }
.checkout-radio-option input:checked ~ .checkout-radio-label { font-weight: 600; color: #333; }
.checkout-radio-label { flex: 1; font-size: 14px; color: #555; }
.checkout-radio-price { font-size: 14px; font-weight: 700; color: var(--theme-color, #007a6d); }

/* Checkout SSL badge */
.checkout-ssl-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f0faf0;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  margin-bottom: 16px;
}
.checkout-ssl-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}
.checkout-ssl-text span { display: block; font-weight: 400; font-size: 13px; color: #2e7d32; }

/* Payment type cards */
.checkout-payment-types {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.checkout-payment-type {
  cursor: pointer;
}
.checkout-payment-type input { display: none; }
.checkout-payment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: #fff;
  transition: border-color .15s;
}
.checkout-payment-type input:checked + .checkout-payment-card {
  border-color: var(--theme-color, #007a6d);
  box-shadow: 0 0 0 1px var(--theme-color, #007a6d);
}
.visa-card {
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  color: #1a1f71;
  letter-spacing: -0.5px;
}

/* CC number with brand logo */
.cc-number-wrap {
  position: relative;
}
.cc-number-wrap input {
  padding-right: 56px !important;
}
.cc-brand-logo {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

/* CC fields */
.checkout-cc-fields { margin-top: 0; }
.checkout-cc-row {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.checkout-cc-row .form-group-width { flex: 1; }
.checkout-cc-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}
.checkout-cc-selects {
  display: flex;
  gap: 8px;
}
.checkout-cc-selects select {
  padding: 12px 10px;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  background: transparent;
  flex: 1;
  outline: none;
}
.checkout-cc-selects select:focus { border-bottom-color: var(--theme-color, #007a6d); }

/* CC input icons */
.inputIcon.cc-icon { background: #4a4a4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E") no-repeat center; background-size: 16px; }
.inputIcon.cvv-icon { background: #4a4a4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") no-repeat center; background-size: 16px; }

/* Checkout terms */
.checkout-terms {
  padding-top: 16px;
}
.checkout-terms-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}
.checkout-terms-label input { width: 18px; height: 18px; margin: 0; }
.checkout-terms-label a { color: var(--theme-color, #007a6d); }

/* Checkout total block */
.checkout-total-block {
  margin-top: 20px;
  padding: 16px 18px;
  background: #f9fafb;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 14px;
  color: #555;
}
.checkout-total-grand {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 2px solid #ddd;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.checkout-total-grand span:last-child {
  color: var(--theme-color, #007a6d);
  font-size: 20px;
}

/* Checkout errors */
.checkout-errors {
  margin-top: 20px;
  padding: 14px 16px;
  background: #fff5f5;
  border: 1px solid #ffcdd2;
  border-radius: 6px;
}
.checkout-error-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #c62828;
  padding: 4px 0;
}
.checkout-error-item svg { flex-shrink: 0; }

/* Checkout submit */
.checkout-submit {
  margin-top: 24px;
  text-align: center;
}
.checkout-submit .btn {
  padding: 14px 50px;
  font-size: 16px;
  font-weight: 700;
}

/* States dropdown (hidden by default) */
.states { display: none; }

/* Checkout step done */
.checkout-steps li.done { color: #999; }
.checkout-steps li.done .step-round {
  background: #aaa;
  color: #fff;
}

/* Second step table (order summary at payment step) */
.second-step-table { margin-bottom: 20px; }
.second-step-table.show-mob { display: none; }
.second-step-table td { padding: 10px 10px 10px 0; vertical-align: middle; border-bottom: 1px solid #f7f7f7; }
.second-step-img img,
.img-second-step { width: 72px; height: auto; display: block; border: 1px solid #ddd; }
.second-step-title { font-size: 14px; font-weight: 600; color: #333; }
.second-step-title span { font-weight: 400; font-size: 14px; }
.second-step-price .new-price { font-size: 18px; color: var(--theme-color, #01a493); font-weight: 700; }
.second-step-price .old-price { font-size: 14px; text-decoration: line-through; color: #999; }
.second-step-mob img { float: left; margin: 0 13px 10px 0; width: 72px; border: 1px solid #ddd; }
.second-step-mob .second-step-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.second-step-mob .second-step-qlt { font-size: 12px; color: #555; }

/* Shipping method */
.shipping-payment-form { max-width: 600px; }
.shipping-method { margin-bottom: 24px; }
.shipping-method h2,
.payment-method h2,
.terms-conditions h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #333;
}

/* Custom radio / checkbox */
.custom-label {
  display: block;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.custom-label input.custom { margin-right: 8px; }
.customRadio, .customCheckbox {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* Payment method */
.payment-method { margin-bottom: 20px; }
.payment-secure {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 4px;
}
.payment-geotrust { max-width: 100px; height: auto; }
.payment-ssl { max-width: 160px; height: auto; }
.payment-ssl-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}
.payment-ssl-text span { display: block; font-weight: 400; font-size: 13px; color: #555; }
.payment-item {
  display: inline-block !important;
  margin-right: 10px;
  cursor: pointer;
}
.payment-item img { vertical-align: middle; }

/* CC fields */
.cc-data { margin-bottom: 12px; }
.cc-data label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
  color: #555;
}
.cc-data input[type="text"],
.cc-data select {
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: Arial, sans-serif;
}
.cc-data input[type="text"]:focus,
.cc-data select:focus {
  outline: none;
  border-color: var(--theme-color, #007a6d);
}
.cart_number_input { width: 100%; max-width: 320px; }
.select-month-year select { margin-right: 8px; }
.cvv-block input { width: 80px; }
.cvv-block b {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background: #ddd;
  color: #555;
  font-size: 12px;
  cursor: pointer;
  margin-left: 6px;
  vertical-align: middle;
}
#wiretransfer_info { display: none; font-size: 13px; color: #888; }

/* Checkout order total */
.checkout-order-total-price {
  padding: 12px 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.checkout-order-text { margin-right: 10px; }
.checkout-order-price { color: var(--theme-color, #01a493); }

/* Terms & conditions */
.terms-conditions { margin-top: 20px; padding-top: 16px; border-top: 1px solid #eee; }
.text-info { font-size: 14px; color: var(--theme-color, #007a6d); text-decoration: underline; }

/* Static page / Article content */
article.content {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
article.content .h1,
article.content h1 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 16px;
  line-height: 1.3;
}
article.content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 20px 0 10px;
}
article.content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin: 16px 0 8px;
}
article.content p {
  margin: 0 0 15px;
  text-align: justify;
  color: #555;
}
article.content ul,
article.content ol {
  margin: 0 0 15px 20px;
  padding: 0;
  color: #555;
}
article.content li {
  margin-bottom: 6px;
  line-height: 1.5;
}
article.content strong { color: #333; }
article.content a { color: var(--theme-color, #007a6d); }
article.content img { margin: 10px 0; border-radius: 4px; }

/* Contact card */
.contact-card {
  max-width: 580px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 0;
  margin-top: 20px;
  overflow: hidden;
}
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: #f8f9fa;
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

/* Contact form */
.contact-form { max-width: 100%; padding: 24px; margin-top: 0; }
.contact-form .form-group { margin-bottom: 14px; }
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}
.contact-form .input-client { position: relative; }
.contact-form .input-client .form-control { padding-left: 36px; }
.contact-form .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  transition: border-color .2s;
}
.contact-form .form-control:focus {
  border-color: var(--theme-color, #007a6d);
  box-shadow: 0 0 0 3px rgba(0,122,109,.1);
}
.contact-form textarea.form-control { resize: vertical; min-height: 120px; }
.contact-form .form-control::placeholder { color: #aaa; }

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.contact-secure-note {
  font-size: 12px;
  color: #888;
}
.alert-success {
  padding: 12px 16px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  color: #2e7d32;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Thank you / Order summary page */
.print-order-info { max-width: 600px; }
.print-order-info h1 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px;
}
.all-order-info { margin-bottom: 30px; }
.total-order-info {
  overflow: hidden;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.total-order-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 12px 0 4px;
  border-bottom: none;
}
.total-order-info-left {
  float: left;
  width: 200px;
  font-weight: 600;
  color: #777;
}
.total-order-info-right {
  overflow: hidden;
  color: #333;
}

/* Checkout form general */
.checkout-form { max-width: 600px; }
.checkout-summary {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.checkout-summary p { margin: 4px 0; }

.form-section { margin-bottom: 24px; }
.form-section h3 { margin-bottom: 10px; font-size: 17px; color: #333; }

.radio-option {
  display: block;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background .15s;
}
.radio-option:hover { background: #f9f9f9; }
.radio-option input { margin-right: 8px; }

.order-summary { background: #f9f9f9; padding: 16px; border-radius: 6px; margin-bottom: 20px; }
.summary-table { width: 100%; border-collapse: collapse; }
.summary-table td { padding: 8px 0; border-bottom: 1px solid #eee; }
.summary-total td { border-top: 2px solid #333; font-size: 17px; }
.text-right { text-align: right; }

.coupon-form { display: flex; gap: 8px; max-width: 400px; }
.coupon-applied { color: #2e7d32; font-weight: 600; margin-top: 8px; }

/* ============================================
   Thank You / Decline
   ============================================ */

.page-thankyou, .page-decline { text-align: center; padding: 40px 20px; }
.thankyou-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e8f5e9;
}
.decline-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffebee;
}
.order-details { background: #f9f9f9; padding: 16px; border-radius: 6px; display: inline-block; margin: 16px 0; }

/* Thank you — items table */
.thankyou-items-table {
  width: 100%;
  border-collapse: collapse;
}
.thankyou-items-table tr {
  border-bottom: 1px solid #eee;
}
.thankyou-items-table tr:last-child { border-bottom: none; }
.thankyou-items-table td {
  padding: 10px 0;
  font-size: 14px;
  color: #333;
  vertical-align: top;
}
.thankyou-item-name { flex: 1; }
.thankyou-item-qty {
  color: #888;
  font-size: 13px;
  margin-left: 6px;
}
.thankyou-item-price {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
  color: var(--theme-color, #007a6d);
}

/* Thank you — details toggle */
.thankyou-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.thankyou-toggle-btn:hover { background: #f5f5f5; border-color: #bbb; }
.thankyou-toggle-btn svg {
  transition: transform .2s;
}
.thankyou-toggle-btn.open svg {
  transform: rotate(180deg);
}

/* Thank you — details table */
.thankyou-details-table {
  width: 100%;
  border-collapse: collapse;
}
.thankyou-details-table tr {
  border-bottom: 1px solid #f0f0f0;
}
.thankyou-details-table tr:nth-child(odd) { background: #fafafa; }
.thankyou-details-table td {
  padding: 10px 12px;
  font-size: 14px;
  color: #555;
  vertical-align: top;
}
.thankyou-details-table td:first-child {
  width: 140px;
  color: #888;
  font-size: 13px;
}
.thankyou-details-table td strong { color: #333; }

/* ============================================
   FAQ
   ============================================ */

.faq-list { margin-top: 16px; }
.faq-item {
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  background: #fafafa;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.faq-question:hover { background: #f0f0f0; }
.faq-toggle { font-size: 20px; font-weight: 700; color: var(--theme-color, #007a6d); }
.faq-answer { display: none; padding: 14px 16px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ============================================
   Forms
   ============================================ */

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 4px; color: #555; }
.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  transition: border-color .15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--theme-color, #007a6d);
  box-shadow: 0 0 0 3px rgba(0,122,109,.1);
}
.form-control.is-invalid,
.invalid_field { border-color: #c62828 !important; }
.form-error { color: #c62828; font-size: 12px; }
.form-row { display: flex; gap: 14px; }
.form-row .form-group { flex: 1; }
.form-actions { display: flex; gap: 10px; margin-top: 20px; }

textarea.form-control { resize: vertical; }

/* ============================================
   Alerts & Messages
   ============================================ */

.alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.text-success { color: #2e7d32; }
.text-error { color: #c62828; }

#message {
  display: none;
  min-width: 350px;
  max-width: 500px;
  position: fixed;
  left: 10px;
  top: 15px;
  z-index: 9999;
  padding: 15px;
  opacity: .9;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ============================================
   Footer
   ============================================ */

/* Footer */
.footer-container {
  background: #3c3536;
  color: #aaa;
  padding: 0;
}
.footer-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 36px 24px 28px;
  flex-wrap: nowrap;
}
.footer-section {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 18px 22px;
}
.footer-subscribe { flex: 1; max-width: 320px; }
.footer-payment { flex-shrink: 0; }
.footer-shipping { flex-shrink: 0; }
.footer-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Footer subscribe */
.footer-subscribe-text {
  font-size: 13px;
  color: #c0b8b9;
  margin: 0 0 12px;
  text-align: left;
  line-height: 1.4;
}
.subscribe-form { margin: 0; }
.subscribe-form-row {
  display: flex;
}
.subscribe-form-row input {
  height: 40px;
  padding: 0 14px;
  border: 1px solid #555;
  background: #4a4545;
  color: #eee;
  font-size: 14px;
  border-radius: 3px 0 0 3px;
  width: 220px;
  outline: none;
}
.subscribe-form-row input::placeholder { color: #888; }
.subscribe-form-row button {
  height: 40px;
  padding: 0 18px;
  background: var(--theme-color, #007a6d);
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.subscribe-form-row button:hover { filter: brightness(1.1); }
.subscribe-msg {
  font-size: 13px;
  margin-top: 6px;
  text-align: left;
}

/* Footer payment & delivery */
.list-payment-options {
  display: flex;
  gap: 8px;
  margin: 0;
}
.list-payment-options li {
  width: 48px;
  height: 30px;
  border-radius: 4px;
}
.mc-options { background: #f0f0f0 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="24" viewBox="0 0 40 24"><circle cx="15" cy="12" r="10" fill="%23eb001b" opacity="0.8"/><circle cx="25" cy="12" r="10" fill="%23f79e1b" opacity="0.8"/></svg>') no-repeat center; }
.visa-options { background: #f0f0f0; position: relative; }
.visa-options::after {
  content: 'VISA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  color: #1a1f71;
}
.list-delivery-methods {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.delivery-method {
  width: 46px;
  height: 28px;
  border-radius: 4px;
  background: #555;
}

.footer-bottom {
  text-align: center;
  padding: 14px 20px;
  border-top: 1px solid #4a4545;
  font-size: 13px;
  color: #b0a8a9;
}
.footer-divider {
  margin: 0 6px;
  color: #555;
}

/* Footer grid variant */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col a { color: #aaa; font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  padding: 16px 20px;
  margin-top: 24px;
  border-top: 1px solid #444;
  font-size: 12px;
  color: #b0a8a9;
}

/* Back to top */
#back-to-top {
  display: none;
  position: fixed;
  right: 3%;
  bottom: 80px;
  margin: 0;
  z-index: 2;
}
#back-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #372e31;
  opacity: .6;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
#back-to-top a:hover { opacity: .9; }
#back-to-top svg { display: block; }

/* ============================================
   Contact Page
   ============================================ */

.contact-info { margin-bottom: 20px; }
.contact-info p { margin-bottom: 6px; }

/* ============================================
   Search Page
   ============================================ */

.search-results { margin-top: 16px; }
.search-result-item {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.search-result-item a { font-weight: 600; font-size: 16px; }

/* ============================================
   404
   ============================================ */

.page-404 { text-align: center; padding: 60px 20px; }
.page-404 h1 { font-size: 72px; color: #ccc; margin-bottom: 10px; }

/* ============================================
   Sidebar mini-cart
   ============================================ */

.sidebar-cart {
  margin: 20px 26px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.list-added-products { font-size: 14px; line-height: 18px; color: #333; }
.list-added-products li { overflow: hidden; margin-bottom: 10px; }
.list-added-products .list-products-img { width: 71px; float: left; }
.list-added-products .list-products-img img { display: block; }
.list-added-products .list-product-info-price { float: left; width: 170px; padding: 5px 0 0 10px; }
.list-added-products .list-product-price { font-size: 15px; color: #ff3100; line-height: 24px; }

.total-sum-added-products {
  overflow: hidden;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  line-height: 24px;
  font-size: 16px;
  color: #333;
  padding: 17px 0;
  margin-top: 10px;
}

/* ============================================
   Category intro
   ============================================ */

.category-intro {
  margin-bottom: 20px;
  line-height: 1.7;
}
.category-intro p { margin-bottom: 12px; }

/* ============================================
   Utility
   ============================================ */

.clear { clear: both; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   Responsive: 1350px
   ============================================ */

/* ============================================
   Responsive: 1550px — hide order images
   ============================================ */

@media only screen and (max-width: 1550px) {
  .order-table tbody td.order-img { display: none; }
  .product-container.orderform { padding: 30px 20px 0 54px; }
}

/* ============================================
   Responsive: 1450px — mobile cart table
   ============================================ */

@media only screen and (max-width: 1450px) {
  .order-table.show-mob { display: table; }
  .order-table.hide-mob { display: none; }
  .second-step-table.show-mob { display: table; }
  .second-step-table.hide-mob { display: none; }
  .order-table tbody td {
    border-bottom: 1px solid #f7f7f7;
    border-top: 1px solid #d7d7d7;
    box-shadow: 0 -1px 0 #d7d7d7 inset, 0 1px 0 #f7f7f7 inset;
  }
}

@media only screen and (max-width: 1350px) {
  .open-top-menu { display: block; }
  .top-menu {
    width: 223px;
    display: none;
    background-color: #fff;
    padding: 12px 27px 20px 20px;
    position: absolute;
    top: 60px;
    left: 9px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    border-radius: 4px;
  }
  .top-menu.open { display: block; }
  .top-menu a { font-size: 14px !important; line-height: 30px; padding: 0 !important; color: #555; text-align: left; }
  .top-menu li,
  .top-menu li:last-child { float: none; }

  .product-grid-item,
  .our-products-item { width: calc(50% - 8px); }
}

/* ============================================
   Responsive: 1110px — mobile sidebar
   ============================================ */

@media only screen and (max-width: 1110px) {
  .main-container,
  .sidebar,
  .wrapper { display: block; }
  .wrapper { height: auto; }

  .product-container.orderform { padding: 30px 20px 0 30px; }
  .order-table .order-img { display: none; }
  .order-table .new-price,
  .order-table .old-price,
  .order-table .price { display: block; line-height: 20px; }

  .sidebar {
    height: 100vh;
    width: 320px;
    max-width: 320px;
    position: fixed;
    top: 0;
    right: -320px;
    z-index: 100;
    transition: right .3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 16px rgba(0,0,0,.2);
  }
  .sidebar.open { right: 0; }
  body.sidebar-open { overflow: hidden !important; height: 100vh; }

  #mob-menu { display: block; }
  #close-mob-menu { display: block; }

  .menu-container { text-align: left; }

  .shopping-cart-icon {
    border-left: 1px solid #221b1e;
    border-right: 1px solid #221b1e;
  }

  .main-content { padding: 30px 20px 90px; }
}

/* ============================================
   Responsive: 890px
   ============================================ */

@media only screen and (max-width: 890px) {
  .main-content { padding: 20px 10px 90px; }

  .product-container { padding: 0 15px; }
  .product-container.orderform { padding: 30px 10px 0 10px; }
  .product-left { float: none; width: 100%; padding-right: 0; margin-bottom: 20px; }

  .order-table { margin-bottom: 10px; }
  .order-table tbody td,
  .order-table tbody td.order-title { padding: 17px 0 15px 0; }
  .order-sum-btn .order-total-sum { padding-bottom: 10px; }
}

/* ============================================
   Responsive: 660px
   ============================================ */

@media only screen and (max-width: 660px) {
  .logo-desktop { display: none !important; }
  .support-block { display: none; }
  .open-top-menu { width: 30px; }

  .product-grid-item,
  .our-products-item { width: calc(50% - 8px); }

  .footer-inner { grid-template-columns: repeat(2, 1fr); }

  .price-table { font-size: 13px; }
  .price-table th,
  .price-table td { padding: 6px 8px; }

  .form-row { flex-direction: column; gap: 0; }
  .cart-actions { flex-direction: column; }
}

/* Coupon section */
.coupon-section { max-width: 420px; margin: 20px 0; }
.coupon-input-row { display: flex; gap: 8px; }
.coupon-input { flex: 1; padding: 8px 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px; }
.coupon-message { margin-top: 6px; font-size: 13px; }
.coupon-applied { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.coupon-badge { background: #e8f5e9; color: #2e7d32; padding: 4px 12px; border-radius: 4px; font-size: 13px; font-weight: 600; }
.coupon-remove { background: none; border: none; color: #c00; font-size: 18px; cursor: pointer; padding: 0 4px; }
.order-subtotal, .order-discount { display: flex; justify-content: space-between; max-width: 390px; margin-bottom: 4px; font-size: 14px; color: #666; }
.discount-amount { color: #2e7d32; font-weight: 600; }

/* Billing address section */
.billing-address { margin-top: 20px; padding-top: 20px; border-top: 1px solid #e0e0e0; }
.billing-toggle { display: flex; align-items: center; gap: 8px; margin: 16px 0; cursor: pointer; font-size: 14px; }
.billing-toggle input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
.billing-fields { display: none; }
.billing-fields.show { display: block; }

/* ============================================
   Responsive: 480px
   ============================================ */

@media only screen and (max-width: 480px) {
  .mobile-buy-btn { display: block !important; }
  .main-content { padding: 16px 10px; }
  .page-title { font-size: 20px; }
  .product-page-title { font-size: 20px; }

  /* Product table mobile fixes */
  .table-product { table-layout: auto; }
  .table-product td.title,
  .table-product th.title { display: none; }
  .table-product td,
  .table-product th {
    padding: 6px 4px !important;
    font-size: 12px !important;
  }
  .btn-add-to-cart,
  .table-product .btn-add-to-cart {
    font-size: 0 !important;
    padding: 8px 12px !important;
    min-width: 40px;
    min-height: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='m1 1 4 0 2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }
  .btn-add-to-cart.btn-added {
    font-size: 0 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") !important;
    background-color: #2e7d32 !important;
  }

  /* Related products: 2 per row on mobile */
  .our-products-content .our-products-item {
    width: calc(50% - 8px) !important;
  }
  .our-products-btn .btn-cart,
  .our-products-btn .btn-orange {
    font-size: 11px !important;
    padding: 6px 8px !important;
    white-space: normal !important;
  }

  .product-grid-item { width: 100%; }

  .order-sum-btn { max-width: 390px; width: 100%; }
  .order-sum-btn .btn { float: none; display: block; margin-bottom: 10px !important; }
  .order-sum-btn .order-total-sum { margin-bottom: 10px; }

  #back-to-top {
    display: block !important;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 16px;
    font-size: 20px;
    line-height: 40px;
  }

  /* Floating cart button */
  .floating-cart {
    position: fixed;
    bottom: 70px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: var(--theme-color, #016055);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
    z-index: 999;
    text-decoration: none;
    transition: transform .2s;
  }
  .floating-cart.has-items { display: flex; }

  /* Checkout steps mobile */
  .checkout-steps {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
  }
  .checkout-steps li {
    padding: 10px 6px;
    gap: 4px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
  }
  .step-round {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .step-text {
    font-size: 11px;
    line-height: 1.2;
  }
  .floating-cart:active { transform: scale(.92); }
  .floating-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #c00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 10px;
    padding: 0 5px;
  }

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

  .review-list-left { float: none; width: 100%; margin-bottom: 10px; }
  .review-list-right { padding-left: 0; }

  .total-order-info-left { float: none; width: auto; margin-bottom: 2px; }
  .total-order-info-right { margin-left: 0; }
  .product-container.checkout { padding: 20px 15px 0; }
}
