/* Advanced Product Listing Page Styles - Using Theme Dynamic Colors */

/* Page Section */
.products-page {
  padding: 60px 0;
  background: #f8f9fa;
}

/* Sidebar Styles */
.products-sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  position: sticky;
  top: 20px;
}

.sidebar-widget {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--oxpins-bdr-color, #eee9db);
}

.sidebar-widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--oxpins-black, #283734);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--oxpins-base, #00715d), var(--oxpins-primary, #fbd45a));
  border-radius: 2px;
}

/* Search Box */
.search-box {
  position: relative;
}

.search-box .form-control {
  padding: 12px 45px 12px 15px;
  border: 2px solid var(--oxpins-bdr-color, #eee9db);
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-box .form-control:focus {
  border-color: var(--oxpins-base, #00715d);
  box-shadow: 0 0 0 3px rgba(var(--oxpins-base-rgb, 0, 113, 93), 0.1);
  outline: none;
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--oxpins-base, #00715d);
  color: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: var(--thm-button1-hovercolor, var(--oxpins-base, #00715d));
  transform: translateY(-50%) scale(1.05);
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: var(--oxpins-gray, #525655);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.category-list a span {
  flex: 1;
}

.category-arrow {
  font-size: 18px;
  color: var(--oxpins-gray, #525655);
  transition: all 0.3s ease;
  opacity: 0.5;
}

.category-list a:hover,
.category-list a.active {
  background: linear-gradient(90deg, rgba(var(--oxpins-base-rgb, 0, 113, 93), 0.1), rgba(var(--oxpins-primary-rgb, 251, 212, 90), 0.1));
  color: var(--oxpins-base, #00715d);
  padding-left: 16px;
}

.category-list a.active {
  font-weight: 600;
}

.category-list a:hover .category-arrow,
.category-list a.active .category-arrow {
  opacity: 1;
  color: var(--oxpins-base, #00715d);
  transform: translateX(3px);
}

.category-item.category-hidden {
  display: none;
}

.category-item.category-visible {
  display: block;
}

.show-more-categories-btn {
  width: auto;
  margin: 10px auto 0;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--oxpins-bdr-color, #eee9db);
  border-radius: 6px;
  color: var(--oxpins-base, #00715d);
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}

.show-more-categories-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.show-more-categories-btn:hover {
  background: var(--oxpins-extra, #f9f4e8);
  border-color: var(--oxpins-base, #00715d);
  transform: translateY(-2px);
}

.show-more-categories-btn i {
  transition: all 0.3s ease;
}

.show-more-categories-btn:hover i {
  transform: translateY(2px);
}

/* Filter List */
.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  margin-bottom: 10px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.filter-checkbox:hover {
  background: var(--oxpins-extra, #f9f4e8);
}

.filter-checkbox input[type="checkbox"],
.filter-checkbox input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: var(--oxpins-base, #00715d);
}

.filter-checkbox span {
  font-size: 14px;
  color: var(--oxpins-black, #283734);
  user-select: none;
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  padding: 6px 14px;
  background: var(--oxpins-extra, #f9f4e8);
  color: var(--oxpins-gray, #525655);
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--oxpins-bdr-color, #eee9db);
}

.tag-item:hover,
.tag-item.active {
  background: linear-gradient(90deg, var(--oxpins-base, #00715d), var(--oxpins-primary, #fbd45a));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--oxpins-base-rgb, 0, 113, 93), 0.3);
}

.tag-count {
  opacity: 0.7;
  font-size: 11px;
}

.clear-filters-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: var(--oxpins-extra, #f9f4e8);
  color: var(--oxpins-black, #283734);
  border: 2px solid var(--oxpins-bdr-color, #eee9db);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.clear-filters-btn:hover {
  background: var(--oxpins-base, #00715d);
  color: #fff;
  border-color: var(--oxpins-base, #00715d);
  transform: translateY(-2px);
}

/* Products Header */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.results-info {
  font-size: 14px;
  color: var(--oxpins-gray, #525655);
}

.results-info strong {
  color: var(--oxpins-black, #283734);
  font-weight: 700;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-options label {
  font-weight: 500;
  color: var(--oxpins-black, #283734);
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.sort-options .form-control {
  padding: 8px 35px 8px 12px;
  border: 1px solid var(--oxpins-bdr-color, #eee9db);
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300715d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  appearance: none;
  min-width: 180px;
  color: var(--oxpins-black, #283734);
}

.sort-options .form-control:focus {
  border-color: var(--oxpins-base, #00715d);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--oxpins-base-rgb, 0, 113, 93), 0.1);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-thumb {
  position: relative;
  overflow: hidden;
  background: var(--oxpins-extra, #f9f4e8);
  height: 250px;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.1);
}

.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff6c6c;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 108, 108, 0.4);
}

.status-badge {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  padding: 10px 16px 10px 12px;
  font-size: 11px;
  font-weight: 800;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.status-badge::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: inherit;
  z-index: -1;
}

.status-badge.status-hot {
  background: #ff3838;
  color: #fff;
}

.status-badge.status-on_sale {
  background: #2c2c2c;
  color: #fff;
}

.status-badge.status-new_arrival {
  background: #00b894;
  color: #fff;
}

.status-badge.status-best_seller {
  background: #f39c12;
  color: #fff;
}

.status-badge i {
  font-size: 13px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--oxpins-primary, #fbd45a);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(var(--oxpins-primary-rgb, 251, 212, 90), 0.4);
}

/* If status badge exists on left, adjust featured badge position */
.status-badge ~ .featured-badge {
  top: 12px;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-actions {
  display: flex;
  gap: 12px;
}

.action-btn {
  width: 45px;
  height: 45px;
  background: #fff;
  color: var(--oxpins-base, #00715d);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.product-card:hover .action-btn {
  transform: translateY(0);
}

.action-btn:hover {
  background: var(--oxpins-base, #00715d);
  color: #fff;
  transform: translateY(0) scale(1.1);
}

.product-body {
  padding: 10px 0px 0px 20px;
  flex-grow: 1;
}

.product-category {
  font-size: 11px;
  color: var(--oxpins-primary, #fbd45a);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-title {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 38px;
}

.product-title a {
  color: var(--oxpins-black, #283734);
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-title a:hover {
  color: var(--oxpins-base, #00715d);
}

.product-price {
  margin-bottom: 10px;
}

.price-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-wrapper .old-price {
  font-size: 13px;
  color: var(--oxpins-gray, #525655);
  text-decoration: line-through;
}

.price-wrapper .current-price {
  font-size: 20px;
  font-weight: 700;
  color: #ff6c6c;
}

.price-wrapper .discount-percent {
  display: inline-block;
  background: #ff6c6c;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.current-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--oxpins-black, #283734);
}

.product-footer {
  padding: 0 20px 16px;
  display: flex;
  justify-content: center;
}

.view-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 12px;
  background: transparent;
  color: var(--oxpins-base, #00715d);
  border: 1.5px solid var(--oxpins-base, #00715d);
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.view-details-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--oxpins-base, #00715d);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 25px;
}

.view-details-btn:hover {
  color: #fff;
  border-color: var(--oxpins-base, #00715d);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--oxpins-base-rgb, 0, 113, 93), 0.25);
}

.view-details-btn:hover::before {
  left: 0;
}

.view-details-btn i {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.view-details-btn:hover i {
  transform: translateX(4px);
}

/* No Products */
.no-products-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 40px 20px;
}

.no-products {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 100%;
}

.no-products i {
  font-size: 80px;
  color: var(--oxpins-gray, #525655);
  margin-bottom: 30px;
  opacity: 0.4;
  display: block;
}

.no-products h4 {
  color: var(--oxpins-black, #283734);
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}

.no-products p {
  color: var(--oxpins-gray, #525655);
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.6;
}

/* Pagination */
.pagination-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.pagination-wrapper .pagination {
  gap: 8px;
}

.pagination-wrapper .page-link {
  padding: 10px 16px;
  border: 2px solid var(--oxpins-bdr-color, #eee9db);
  color: var(--oxpins-black, #283734);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.pagination-wrapper .page-link:hover {
  background: var(--oxpins-base, #00715d);
  color: #fff;
  border-color: var(--oxpins-base, #00715d);
  transform: translateY(-2px);
}

.pagination-wrapper .page-item.active .page-link {
  background: linear-gradient(90deg, var(--oxpins-base, #00715d), var(--oxpins-primary, #fbd45a));
  color: #fff;
  border-color: transparent;
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

.product-detail-page {
  padding: 60px 0;
  background: #f8f9fa;
}

.product-detail-page .container {
  position: relative;
}

.product-detail-page .row {
  align-items: flex-start;
}

/* Product Image Section - Make the column sticky */
.product-detail-page > .container > .row > .col-lg-6:first-child,
.product-detail-page > .container > .row > .col-md-6:first-child {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
  z-index: 10;
}

.product-image-section {
  height: fit-content;
}

.main-product-image {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-zoom-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  cursor: zoom-in;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.image-zoom-container .zoom-image {
  width: 100%;
  height: 400px;
  max-width: 100%;
  max-height: 600px;
  display: block;
  transition: transform 0.3s ease, cursor 0.3s ease, opacity 0.5s ease;
  object-fit: cover;
  object-position: center;
}

.image-zoom-container.zoomed .zoom-image {
  transform: scale(2.5);
  cursor: zoom-out;
}

.image-zoom-container.zoomed {
  cursor: zoom-out;
  overflow: visible;
}

.zoom-indicator {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.zoom-indicator i {
  font-size: 14px;
}

.image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--oxpins-black, #283734);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.image-nav-btn:hover {
  background: var(--oxpins-base, #00715d);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.image-nav-btn.prev-btn {
  left: 15px;
}

.image-nav-btn.next-btn {
  right: 15px;
}

.main-product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease, opacity 0.5s ease;
  object-fit: contain;
}

.status-badge-large {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  padding: 14px 22px 14px 16px;
  font-size: 13px;
  font-weight: 800;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.status-badge-large::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: inherit;
  z-index: -1;
}

.status-badge-large.status-hot {
  background: #ff3838;
  color: #fff;
}

.status-badge-large.status-on_sale {
  background: #2c2c2c;
  color: #fff;
}

.status-badge-large.status-new_arrival {
  background: #00b894;
  color: #fff;
}

.status-badge-large.status-best_seller {
  background: #f39c12;
  color: #fff;
}

.status-badge-large i {
  font-size: 16px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.featured-badge-large {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--oxpins-primary, #fbd45a);
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(var(--oxpins-primary-rgb, 251, 212, 90), 0.4);
}

/* If status badge exists, adjust featured badge position */
.status-badge-large ~ .featured-badge-large {
  top: 65px;
}

/* Thumbnail Gallery */
.product-thumbnails {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.thumbnail-item {
  width: 90px;
  height: 90px;
  min-width: 90px;
  max-width: 90px;
  min-height: 90px;
  max-height: 90px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  position: relative;
}

.thumbnail-item img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.thumbnail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thumbnail-item.active {
  border-color: var(--oxpins-base, #00715d);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Info Section */
.product-info-section {
  max-height: calc(130vh - 140px);
  overflow-y: auto;
  scroll-behavior: smooth;
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.product-info-section::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.discount-badge {
  display: inline-block;
  background: #ff6c6c;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: var(--oxpins-primary, #fbd45a);
  font-size: 18px;
}

.review-count {
  color: var(--oxpins-gray, #525655);
  font-size: 14px;
}

.product-title-main {
  font-size: 32px;
  font-weight: 700;
  color: var(--oxpins-black, #283734);
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-short-desc {
  color: var(--oxpins-gray, #525655);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-price-section {
  margin-bottom: 25px;
}

.price-wrapper-large {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.price-wrapper-large .old-price-large {
  font-size: 22px;
  color: var(--oxpins-gray, #525655);
  text-decoration: line-through;
}

.price-wrapper-large .current-price-large {
  font-size: 36px;
  font-weight: 700;
  color: #ff6c6c;
}

.price-wrapper-large .discount-percent-large {
  display: inline-block;
  background: #ff6c6c;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.current-price-large {
  font-size: 36px;
  font-weight: 700;
  color: var(--oxpins-black, #283734);
}

/* Variations */
.product-variations {
  margin-bottom: 35px;
}

.variation-group {
  margin-bottom: 20px;
}

.variation-label {
  display: block;
  font-weight: 600;
  color: var(--oxpins-black, #283734);
  margin-bottom: 10px;
  font-size: 14px;
}

.color-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.color-swatch.active {
  border-color: var(--oxpins-base, #00715d);
}

.color-swatch .check-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.color-swatch.active .check-mark {
  opacity: 1;
}

.size-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.size-option {
  padding: 5px 12px;
  background: #fff;
  border: 2px solid var(--oxpins-bdr-color, #eee9db);
  border-radius: 5px;
  color: var(--oxpins-black, #283734);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.size-option:hover {
  border-color: var(--oxpins-base, #00715d);
  color: var(--oxpins-base, #00715d);
}

.size-option.active {
  background: var(--oxpins-base, #00715d);
  color: #fff;
  border-color: var(--oxpins-base, #00715d);
}

/* Quantity & Actions */
.product-actions-wrapper {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.quantity-wrapper {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quantity-wrapper > label {
  align-self: flex-start;
}

.quantity-wrapper-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-label {
  display: inline-block;
  font-weight: 600;
  color: var(--oxpins-black, #283734);
  margin-bottom: 0;
  margin-right: 0;
  font-size: 15px;
  white-space: nowrap;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--oxpins-bdr-color, #eee9db);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 45px;
  background: var(--oxpins-extra, #f9f4e8);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oxpins-black, #283734);
  font-size: 18px;
  transition: all 0.3s ease;
}

.qty-btn:hover:not(:disabled) {
  background: var(--oxpins-base, #00715d);
  color: #fff;
}

.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty-input {
  width: 70px;
  height: 45px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--oxpins-black, #283734);
  background: #fff;
}

.qty-input:focus {
  outline: none;
}

.qty-hint {
  display: block;
  margin-top: 6px;
  margin-left: 0;
  color: var(--oxpins-gray, #525655);
  font-size: 12px;
  width: 100%;
}

.action-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: auto;
}

.btn-add-to-cart {
  padding: 15px 30px;
  background: var(--oxpins-primary, #fbd45a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-add-to-cart:hover {
  background: var(--oxpins-base, #00715d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--oxpins-base-rgb, 0, 113, 93), 0.3);
}

.btn-add-to-cart:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--oxpins-base-rgb, 0, 113, 93), 0.2);
  background: var(--oxpins-base, #00715d);
}

.btn-add-to-cart:active {
  transform: translateY(0);
}

.btn-wishlist {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid var(--oxpins-bdr-color, #eee9db);
  border-radius: 8px;
  color: var(--oxpins-gray, #525655);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-wishlist:hover {
  border-color: var(--oxpins-base, #00715d);
  color: var(--oxpins-base, #00715d);
  background: var(--oxpins-extra, #f9f4e8);
}

/* Meta Info */
.product-meta-info {
  padding: 20px;
  background: var(--oxpins-extra, #f9f4e8);
  border-radius: 8px;
  margin-top: 30px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--oxpins-bdr-color, #eee9db);
}

.meta-item:last-child {
  border-bottom: none;
}

.meta-label {
  font-weight: 600;
  color: var(--oxpins-black, #283734);
}

.meta-value {
  color: var(--oxpins-gray, #525655);
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.stock-badge i {
  font-size: 16px;
}

.stock-badge.in-stock {
  background: #d5f5e3;
  color: #2a9d8f;
}

.stock-badge.out-of-stock {
  background: #ffe2e2;
  color: #ff6c6c;
}

/* Product Information Sections */
.product-info-sections {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-info-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.info-block-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--oxpins-black, #283734);
  margin: 0;
  padding: 25px 30px;
  background: var(--oxpins-extra, #f9f4e8);
  border-bottom: 2px solid var(--oxpins-bdr-color, #eee9db);
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-block-title i {
  color: var(--oxpins-base, #00715d);
  font-size: 24px;
}

.info-block-content {
  padding: 30px;
  color: var(--oxpins-gray, #525655);
  line-height: 1.8;
  font-size: 15px;
}

.info-block-content h1,
.info-block-content h2,
.info-block-content h3,
.info-block-content h4,
.info-block-content h5,
.info-block-content h6 {
  color: var(--oxpins-black, #283734);
  margin-top: 20px;
  margin-bottom: 15px;
}

.info-block-content p {
  margin-bottom: 15px;
}

.info-block-content ul,
.info-block-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.info-block-content li {
  margin-bottom: 8px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid var(--oxpins-bdr-color, #eee9db);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table td {
  padding: 15px 0;
  vertical-align: top;
}

.info-table td:first-child {
  width: 250px;
  font-weight: 600;
  color: var(--oxpins-black, #283734);
}

.info-table td:last-child {
  color: var(--oxpins-gray, #525655);
}

/* Related Products */
.related-products-section {
  margin-top: 50px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--oxpins-black, #283734);
  margin-bottom: 30px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.related-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.related-product-link {
  text-decoration: none;
  display: block;
}

.related-product-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--oxpins-extra, #f9f4e8);
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.related-product-card:hover .related-product-image img {
  transform: scale(1.1);
}

.related-status-badge {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  padding: 6px 12px 6px 10px;
  font-size: 10px;
  font-weight: 800;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.related-status-badge::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: inherit;
  z-index: -1;
}

.related-status-badge.status-hot {
  background: #ff3838;
  color: #fff;
}

.related-status-badge.status-on_sale {
  background: #2c2c2c;
  color: #fff;
}

.related-status-badge.status-new_arrival {
  background: #00b894;
  color: #fff;
}

.related-status-badge.status-best_seller {
  background: #f39c12;
  color: #fff;
}

.related-status-badge i {
  font-size: 11px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.related-product-info {
  padding: 15px;
}

.related-product-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--oxpins-black, #283734);
  margin-bottom: 10px;
  line-height: 1.4;
}

.related-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-price-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.related-price-wrapper .old-price-small {
  font-size: 12px;
  color: var(--oxpins-gray, #525655);
  text-decoration: line-through;
}

.old-price-small {
  font-size: 13px;
  color: var(--oxpins-gray, #525655);
  text-decoration: line-through;
}

.related-price-wrapper .current-price-small {
  font-size: 15px;
  font-weight: 700;
  color: #ff6c6c;
}

.related-price-wrapper .related-discount-percent {
  display: inline-block;
  background: #ff6c6c;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.current-price-small {
  font-size: 16px;
  font-weight: 700;
  color: var(--oxpins-black, #283734);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .products-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 30px;
    max-height: none;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .products-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .sort-options {
    width: 100%;
    justify-content: space-between;
  }

  .product-detail-page .col-lg-6:first-child {
    position: relative;
    top: 0;
  }
  
  .product-image-section {
    margin-bottom: 40px;
  }

  .product-info-sections {
    gap: 25px;
  }

  .info-block-title {
    font-size: 20px;
    padding: 20px 25px;
  }

  .info-block-content {
    padding: 25px;
  }
}

@media (max-width: 575.98px) {
  .products-page {
    padding: 40px 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-thumb {
    height: 200px;
  }

  .product-body {
    padding: 15px;
  }

  .product-footer {
    padding: 0 15px 15px;
  }

  .products-header {
    padding: 15px;
  }

  .sort-options {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .sort-options .form-control {
    width: 100%;
  }

  .product-title-main {
    font-size: 24px;
  }

  .current-price-large {
    font-size: 28px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn-add-to-cart {
    width: 100%;
  }

  .product-tabs {
    flex-direction: column;
  }

  .tab-item {
    flex: 1;
  }

  .tab-content-wrapper {
    padding: 20px;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Cart Page Styles */
.cart-page {
  padding: 60px 0;
}

.cart-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--oxpins-black);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--oxpins-bdr-color);
}

.cart-items-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--oxpins-bdr-color);
  border-radius: 10px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.cart-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cart-item-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--oxpins-bdr-color);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-item-title a {
  color: var(--oxpins-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cart-item-title a:hover {
  color: var(--oxpins-primary);
}

.cart-item-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--oxpins-gray);
}

.cart-item-variations {
  font-size: 12px;
}

.variations-label {
  font-weight: 600;
  color: #666;
  margin-bottom: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.variation-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.variation-badge:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.variation-badge .variation-attr {
  font-weight: 600;
  color: #495057;
  margin-right: 4px;
}

.variation-badge .variation-value {
  color: #6c757d;
}

.cart-item-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-price .unit-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--oxpins-primary);
}

.cart-item-price .original-price {
  font-size: 14px;
  color: var(--oxpins-gray);
  text-decoration: line-through;
}

.cart-item-quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.cart-item-quantity label {
  font-size: 12px;
  font-weight: 600;
  color: var(--oxpins-gray);
  margin-bottom: 4px;
}

/* Cart-specific quantity controls */
.cart-item .quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 4px;
}

.cart-item .qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #495057;
  font-size: 16px;
  padding: 0;
}

.cart-item .qty-btn:hover:not(:disabled) {
  background: var(--oxpins-primary);
  color: #fff;
  border-color: var(--oxpins-primary);
}

.cart-item .qty-btn:active {
  transform: scale(0.95);
}

.cart-item .qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cart-item .qty-input {
  width: 50px;
  height: 32px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: #495057;
  padding: 0;
}

.cart-item .qty-input:focus {
  outline: none;
  border-color: var(--oxpins-primary);
  box-shadow: 0 0 0 2px rgba(var(--oxpins-primary-rgb, 251, 212, 90), 0.2);
}

.cart-item-total {
  min-width: 100px;
  text-align: right;
}

.cart-item-total .total-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--oxpins-black);
}

.cart-item-actions {
  min-width: 40px;
}

.btn-remove-item {
  background: #ff4444;
  color: #fff;
  border: none;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.btn-remove-item:hover {
  background: #cc0000;
  transform: scale(1.1);
}

/* Coupon Section Styles */
.cart-coupon-section {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.coupon-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--oxpins-black);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coupon-title i {
  color: var(--oxpins-primary);
  font-size: 20px;
}

.coupon-input-group {
  display: flex;
  gap: 10px;
}

.coupon-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--oxpins-bdr-color);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.coupon-input:focus {
  border-color: var(--oxpins-base);
  box-shadow: 0 0 0 3px rgba(var(--oxpins-base-rgb, 0, 113, 93), 0.1);
  outline: none;
}

.btn-apply-coupon {
  padding: 12px 20px;
  background: var(--oxpins-base);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-apply-coupon:hover {
  background: var(--thm-button1-hovercolor, var(--oxpins-base));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--oxpins-base-rgb, 0, 113, 93), 0.3);
}

.btn-apply-coupon:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.coupon-message {
  margin-top: 12px;
  font-size: 13px;
}

.coupon-error {
  color: #dc3545;
  padding: 8px 12px;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
}

.coupon-success {
  color: #155724;
  padding: 8px 12px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 6px;
}

.applied-coupon-info {
  margin-top: 10px;
}

.coupon-applied {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: 8px;
}

.coupon-code-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #4caf50;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  flex: 1;
}

.coupon-code-badge i {
  font-size: 16px;
}

.coupon-discount {
  font-weight: 700;
  color: #4caf50;
  font-size: 16px;
}

.btn-remove-coupon {
  padding: 6px 10px;
  background: transparent;
  border: 1px solid #4caf50;
  color: #4caf50;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-remove-coupon:hover {
  background: #4caf50;
  color: #fff;
}

.summary-discount {
  color: #4caf50;
  font-weight: 600;
}

.cart-summary {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.summary-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--oxpins-black);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--oxpins-bdr-color);
}

.summary-content {
  margin-bottom: 25px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--oxpins-bdr-color);
  font-size: 15px;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-total {
  font-size: 18px;
  padding-top: 15px;
  margin-top: 10px;
  border-top: 2px solid var(--oxpins-bdr-color);
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-continue-shopping,
.btn-checkout {
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-continue-shopping {
  background: #f5f5f5;
  color: var(--oxpins-black);
  border: 2px solid var(--oxpins-bdr-color);
}

.btn-continue-shopping:hover {
  background: var(--oxpins-gray);
  color: #fff;
  border-color: var(--oxpins-gray);
}

.btn-checkout {
  background: var(--oxpins-primary);
  color: #fff;
}

.btn-checkout:hover {
  background: var(--thm-button1-hovercolor);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--oxpins-primary-rgb, 251, 212, 90), 0.4);
}

.empty-cart {
  padding: 0px 20px;
  text-align: center;
}

.empty-cart-content {
  max-width: 500px;
  margin: 0 auto;
}

.empty-cart-content i {
  font-size: 80px;
  color: var(--oxpins-gray);
  margin-bottom: 20px;
  display: block;
}

.empty-cart-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--oxpins-black);
  margin-bottom: 15px;
}

.empty-cart-content p {
  font-size: 16px;
  color: var(--oxpins-gray);
  margin-bottom: 30px;
}

.btn-shopping {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--oxpins-primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-shopping:hover {
  background: var(--thm-button1-hovercolor);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--oxpins-primary-rgb, 251, 212, 90), 0.4);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .cart-item {
    flex-wrap: wrap;
  }
  
  .cart-item-image {
    width: 100px;
    height: 100px;
  }
  
  .cart-item-details {
    flex: 1 1 60%;
  }
  
  .cart-item-quantity,
  .cart-item-total,
  .cart-item-actions {
    flex: 1 1 auto;
  }
  
  .cart-summary {
    position: relative;
    top: 0;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .cart-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cart-item-details {
    width: 100%;
  }
  
  .cart-item-quantity,
  .cart-item-total {
    width: 100%;
  }
  
  .cart-item-total {
    text-align: center;
  }
}

/* Checkout Page Styles */
.checkout-page {
  padding: 60px 0;
  background: #f8f9fa;
}

.checkout-section {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.checkout-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--oxpins-black);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--oxpins-bdr-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-section-title i {
  color: var(--oxpins-primary);
  font-size: 24px;
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid var(--oxpins-bdr-color);
  border-radius: 8px;
  background: #fafafa;
}

.checkout-item-image {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--oxpins-bdr-color);
  flex-shrink: 0;
}

.checkout-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item-details {
  flex: 1;
  min-width: 0;
}

.checkout-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--oxpins-black);
  margin-bottom: 6px;
}

.checkout-item-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--oxpins-gray);
  margin-bottom: 6px;
}

.checkout-item-variations {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.checkout-variation-badge {
  display: inline-block;
  padding: 3px 8px;
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 10px;
}

.checkout-item-price {
  min-width: 100px;
  text-align: right;
}

.checkout-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--oxpins-primary);
}

.checkout-summary {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.checkout-summary-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--oxpins-black);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--oxpins-bdr-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-summary-title i {
  color: var(--oxpins-primary);
  font-size: 22px;
}

.checkout-summary-content {
  margin-bottom: 25px;
}

.summary-currency-group {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--oxpins-bdr-color);
}

.summary-currency-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-currency-label {
  font-weight: 600;
  color: #333;
  font-size: 13px;
  margin-bottom: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  color: var(--oxpins-black);
}

.summary-total {
  font-size: 18px;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 2px solid var(--oxpins-bdr-color);
}

.checkout-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-place-order,
.btn-back-cart {
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-place-order {
  background: var(--oxpins-primary);
  color: #fff;
}

.btn-place-order:hover {
  background: var(--thm-button1-hovercolor);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--oxpins-primary-rgb, 251, 212, 90), 0.4);
  color: #fff;
}

.btn-back-cart {
  background: #f5f5f5;
  color: var(--oxpins-black);
  border: 2px solid var(--oxpins-bdr-color);
}

.btn-back-cart:hover {
  background: var(--oxpins-gray);
  color: #fff;
  border-color: var(--oxpins-gray);
  text-decoration: none;
}

@media (max-width: 991px) {
  .checkout-summary {
    position: relative;
    top: 0;
    margin-top: 30px;
  }
}
