body {
background-color: #fff !important;
}
.header-top-ptb-1 {
  background-color: transparent !important;
  border-bottom: 1px solid #dfdac4 !important;
}
.single-post .content h5 a {
color: var(--color-brand);
}

.btn-outline-dark {
    color: rgb(var(--bs-dark-rgb)) !important;
    background: transparent !important;
    border: 1px solid rgb(var(--bs-dark-rgb)) !important;
}

.has-buy-now-button .button.button-buy-now {
    background-color: var(--color-brand) !important;
}

.ps-list--categories li a {
  color: var(--color-brand) !important;
}

.title-detail {
  color: var(--color-brand) !important;
}

.bg-danger-transparent {
    background-color: rgba(var(--bs-danger-rgb), 0.1) !important;
    color: rgb(var(--bs-danger-rgb)) !important;
}
.badge-1 {
    padding: 0.25rem 0.45rem;
    font-weight: 600;
    border-radius: 0.4rem;
}
.sidebar-widget {
 background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(19px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 20px 10px rgba(255, 255, 255, 1);
}

.fs-11 {
    font-size: 0.6875rem;
}
.detail-info .product-price-cover {
border: none !important;
}

.accordion-item {
    color: #1b2c3f;
    background-color: #fff;
    border: none;
}

.accordion.accordion-solid-primary .accordion-button.collapsed {
    background-color: #fff;
    color: #1b2c3f;
}

.accordion.accordion-solid-primary .accordion-button {
    background-color: var(--color-brand);
    color: #fff;
}
.accordion-body
 {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.accordion-button:focus {
border: none !important;
box-shadow: none;
}
//* ==============================
   PRODUCT GALLERY (VELVET STYLE)
================================ */
.product-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==============================
   MAIN PREVIEW SLIDER
================================ */
.swiper-preview {
    width: 100%;
    height: 520px;
    background: linear-gradient(180deg, #f7f7f8, #f2f3f4);
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Force horizontal layout (WOWY override) */
.swiper-preview .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
}

.swiper-preview .swiper-slide {
    flex: 0 0 100% !important;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

/* Image normalization */
.swiper-preview img {
    max-width: 100%;
    max-height: calc(100% - 8px);
    object-fit: contain;

    background: #ffffff;
    border-radius: 14px;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

/* Premium hover (desktop only) */
@media (hover: hover) {
    .swiper-preview .swiper-slide-active:hover img {
        transform: scale(1.03);
        filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.15));
    }
}

/* ==============================
   NAVIGATION ARROWS (INSET & SAFE)
================================ */
.swiper-preview .swiper-button-next,
.swiper-preview .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 38px;
    height: 38px;

    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    backdrop-filter: blur(6px);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.18);

    color: #111;
}

.swiper-preview .swiper-button-prev {
    left: 14px;
}

.swiper-preview .swiper-button-next {
    right: 14px;
}

.swiper-preview .swiper-button-next::after,
.swiper-preview .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
}

/* ==============================
   THUMBNAILS STRIP
================================ */
.swiper-view {
    height: 96px;
    padding: 8px 12px;
    margin-top: 4px;

    background: rgba(0, 0, 0, 0.02);
    border-radius: 14px;

    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);

    overflow: hidden;
}

/* Force horizontal thumbs */
.swiper-view .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
}

.swiper-view .swiper-slide {
    flex: 0 0 auto !important;
    width: 90px !important;
    height: 90px;

    background: #ffffff;
    border-radius: 14px;
    padding: 6px;

    cursor: pointer;
    opacity: 0.45;

    transition:
        opacity 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Thumb images */
.swiper-view img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Active thumb */
.swiper-view .swiper-slide-thumb-active {
    opacity: 1;
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.14),
        inset 0 0 0 2px rgba(0, 0, 0, 0.45);
}

.swiper-view .swiper-slide-thumb-active img {
    transform: scale(0.98);
}

/* Hover feedback */
.swiper-view .swiper-slide:hover {
    opacity: 0.75;
}

/* ==============================
   MOBILE REFINEMENT
================================ */
@media (max-width: 768px) {
    .product-gallery {
        gap: 8px;
    }

    .swiper-preview {
        height: 400px;
        border-radius: 12px;
    }

    .swiper-preview .swiper-slide {
        padding: 14px;
    }

    .swiper-preview img {
        border-radius: 10px;
    }

    .swiper-preview .swiper-button-next,
    .swiper-preview .swiper-button-prev {
        width: 32px;
        height: 32px;
        left: 8px;
        right: 8px;
    }

    .swiper-view {
        height: 80px;
        padding: 4px;
        border-radius: 10px;
    }

    .swiper-view .swiper-slide {
        width: 70px !important;
        height: 70px;
        border-radius: 10px;
    }
}


.header-middle-ptb-1 {
padding: 0px !important;
}

.banner-left-icon {
    background: transparent !important;
}



.product-detail-rating {
padding: 10px 0px 0px 5px !important;
}

.product-cart-wrap:hover {
  box-shadow: none !important;
  text-decoration: underline;
}

.product-cart-wrap .product-img-action-wrap .product-img a img {
  aspect-ratio: 1/1 !important;
}
.product-cart-wrap {
 border-radius: 0px !important;
}

.product-tabs .container {
width: 100% !important;
}

.detail-extralink .action-btn {
  border: 1px solid #000;
  padding: 15px 20px !important;
  border-radius: 4px;
  color: #000;
}
.detail-extralink .action-btn:hover {
  background: #000 !important;
   color: #fff;
}


.detail-extralink > div {
  vertical-align: baseline !important;
}

.product-extra-link2 {
display: flex !important;
  flex-direction: column;
  width: 80% !important;
  gap: 10px;
}
.product-attributes .bb-product-attribute-swatch {
  background: transparent !important;
  border: none !important;
  width: 80% !important;
  padding: 0px !important;
  
}
.page-header.breadcrumb-wrap {
  background-color: transparent !important;
  padding: 0px !important;
}

.product-attributes .bb-product-attribute-swatch .form-select {
  background: transparent !important;
  border: 1px solid #000 !important;
}

.card-1,
.product-cart-wrap {
  background: transparent !important;
  border: none !important;

}
.product-cart-wrap .product-content-wrap {
  padding: 0px !important;
}

.product-cart-wrap .product-content-wrap h2 {
 border-bottom: none !important;
  margin-bottom: 0px !important;
}

.detail-extralink .detail-qty,
.product-extra-link2 a {
  background-color: transparent !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}

.shop-product-filter .sort-by-product-area .sort-by-product-wrap {
background: transparent !important;
}

.cart-dropdown-wrap {
  background-color: #fffae7 !important;
}

.search-style-2 form button {
border-radius: 25px !important;
}

.faqs-list .card .card-header h2 button {
  background: transparent !important;
}

.faqs-list .card .card-header h2 button::after {
border: none !important;
}

.faqs-list .card {
  border: none !important;
  background: transparent !important;
}

.faqs-list .card .card-header {
  background: transparent !important;
  border: none !important;
}

@media (max-width: 568px) {
  .product-extra-link2 {
  width: 100% !important; 
}
  .product-attributes .bb-product-attribute-swatch {
  width: 100% !important;
}
  
  .product-cart-wrap .product-content-wrap .product-category a {
  font-size: 10px !important;
  }
  .product-cart-wrap .product-content-wrap h2 {
  font-size: 14px !important;
  font-weight: 500 !important;
    padding: 0px !important;
  }
  
  .product-cart-wrap .product-content-wrap .product-price span {
  font-size: 14px !important;
  font-weight: 600 !important;
}
  .product-cart-wrap .product-img-action-wrap .product-img a img {
  aspect-ratio: 9/11 !important;
  }
}
}