body{
  padding-top: 70px;
}
.cat-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.product-details-right h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: "Saira", sans-serif;
  color: var(--main-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-details-right p {
  margin-bottom: 15px;
}

.product-details-right h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--main-color);
  margin-top: 20px;
}

.product-details-right h4 span {
  font-weight: 700;
  color: var(--secondary-color);
}

.product-details-right .specs-row {
  margin-bottom: 20px;
}

.product-details-right .specs-row .col-6 span {
  font-size: 15px;
  color: #333;
  font-family: "Inter", sans-serif;
}

.product-details-right .specs-row .col-6:nth-child(odd) span {
  font-weight: 600;
  color: var(--main-color);
}

.product-details-right .bid-form {
  margin-top: 35px;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #eee;
  padding: 25px;
  transition: 0.3s ease;
}

.product-details-right .bid-form:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.product-details-right .bid-form .form-title {
  margin-bottom: 18px;
}

.product-details-right .bid-form .form-title h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--main-color);
}

.product-details-right .bid-form .form-title p {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.product-details-right .bid-form .form-title p::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: 4px;
}

.product-details-right .bid-form .form-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.product-details-right .bid-form .form-inner input[type=text] {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.product-details-right .bid-form .form-inner input[type=text]:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.product-details-right .bid-form .form-inner button {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 11px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.product-details-right .bid-form .form-inner button:hover {
  background: var(--main-color);
}

/* ==== Main Swiper (Big Image) ==== */
.sticky-gallery {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.mainSwiper {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.mainSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.mainSwiper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ==== Thumbnail Swiper (Small Images) ==== */
.thumbSwiper {
  width: 100%;
  max-width: 500px;
  margin: 10px auto 0;
  padding: 5px 0;
}

.thumbSwiper .swiper-slide {
  width: auto;
  opacity: 0.6;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.thumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid var(--secondary-color);
}

.thumbSwiper img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}
.thumbSwiper img:hover {
  opacity: 1;
}
.swiper {
  width: 100%;
}
/* ==== Timer Overlay ==== */
.auction-gallery-timer {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  line-height: 1.2;
}
.product-details-right .bid-timer {
  margin: 25px 0 20px;
  background: #f7f9fc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 18px 25px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.product-details-right .bid-timer:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-details-right .bid-timer h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-details-right .bid-timer .timer-count {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: "Saira", sans-serif;
  margin-bottom: 4px;
}

.product-details-right .bid-timer .end-time {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
.highlight-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: linear-gradient(90deg, #1d3557, #457b9d); */
  border: 2px solid var(--main-color);
  color: var(--secondary-color);
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 1.5rem;
  font-weight: bold;
}

.highlight-bar .bid-btn {
  background: #f1faee;
  color: #1d3557;
  font-weight: 700;
  border: none;
  padding: 6px 16px;
  border-radius: 5px;
  transition: 0.3s;
}
.highlight-bar .bid-btn:hover {
  background: #a8dadc;
}
@media (max-width: 768px) {
  .highlight-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
  }
}
.inner-banner {
  min-height: auto;            
  background: rgba(12, 3, 33, 0.9);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 40px 0;
}

/* faint background pattern */
.inner-banner::before {
  content: "";
  background: url("../images/bg/inner-bg.png") center/cover no-repeat;
  opacity: 0.25;                /* soften the image */
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
}

/* title */
.inner-banner-title {
  font-size: 36px;              /* smaller, balanced */
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

/* breadcrumb */
.breadcrumb .breadcrumb-item {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 500;
}
.breadcrumb .breadcrumb-item.active {
  color: #ddd;
}

/* spacing inside container */
.inner-banner .container {
  position: relative;
  z-index: 2;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: '/';
}
.filter-sidebar {
  border: 1px solid var(--light-border);
  background-color: #fff;
  transition: 0.3s;
  border-radius: 12px;
}
.filter-sidebar:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* ===== Accordion ===== */
.accordion-button {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  background-color: #fff;
  /* border: none; */
  box-shadow: none !important;
  transition: 0.3s ease;
  border-radius: 8px;
}

.accordion-button.collapsed {
  background-color: var(--light-bg);
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  color: #fff;
}

.accordion-button::after {
  filter: brightness(0) invert(1); /* Makes arrow white when open */
}

.accordion-item {
  border: none;
  border-bottom: 1px solid var(--light-border);
}
.accordion-body {
  padding-left: 1rem;
}
.accordion-button::after {
  filter: brightness(0) invert(1);
}
/* ===== Custom Checkbox ===== */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-muted);
  transition: 0.2s ease;
}
.custom-checkbox:hover {
  color: var(--main-color);
}
.custom-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary-color);
  cursor: pointer;
  transition: 0.3s;
}
.custom-checkbox input[type="checkbox"]:checked + span {
  color: var(--main-color);
  font-weight: 500;
}

/* ===== Price Range ===== */
.form-range {
  accent-color: var(--secondary-color);
}
#priceValue {
  font-weight: 600;
  color: var(--main-color);
}

/* ===== Apply Button ===== */
.apply-btn {
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  color: #fff;
  border: none;
  transition: 0.3s;
  letter-spacing: 0.3px;
  font-weight: 600;
}
.apply-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--main-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 56, 107, 0.25);
}
.auction-card1 .auction-content h4{
  font-size: 18px;
}
.signup-section .section-bg-bottom{
  z-index: -1;
}
.hero-style-one .banner1-content h1, .hero-style-one .banner1-content h2{
  font-size: 3rem;
}
.category-card-modern {
    background: #eef6ff;
    border-radius: 22px;
    border: 1px solid #d9e9ff;
    box-shadow:
        6px 6px 18px rgba(0,0,0,0.08),
        -2px -2px 8px rgba(255,255,255,0.7);
    transition: .35s ease-in-out;
    cursor: pointer;
    padding: 20px; 
    min-height: 230px;
}

.category-title {
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #d0dff7; 
}

.category-card-modern-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 150px;
    padding-top: 15px; 
}

.category-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 
        10px 10px 25px rgba(0, 0, 0, 0.12),
        -3px -3px 10px rgba(255, 255, 255, 0.9);
    background: #e1efff;
}
.category-modern-img {
  display: block;
    /* width: 100px;
    height: 100px; */
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.category-next1 i,
.category-prev1 i{
  font-size: 2rem;
}
.toast-box {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    min-width: 280px;
}
.toast-message {
    padding: 14px 18px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp .4s ease;
}
.toast-success { background: #28a745; }
.toast-error { background: #dc3545; }
.ts-control {
    background-color: #fff !important;
    border: 1px solid #ced4da;
    padding: 0.67rem;
    font-size: 0.85rem;
}
/* Dropdown background */
.ts-dropdown {
    background-color: #fff !important;
    border: 1px solid #ced4da;
    z-index: 1055;
}
/* Hover item */
.ts-dropdown .option:hover,
.ts-dropdown .active {
    background-color: #f8f9fa;
    color: #000;
}
.phone-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}
.phone-wrapper .form-select{
  border-top-right-radius: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-color: #e5e7eb;
}
.phone-wrapper .form-control{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    background-color: var(--main-color);
    color: #fff;
    object-fit: cover;
}

.profile-initial {
    text-transform: uppercase;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}