ISAPPLEPAY {
    display: inline
}

.dw-apple-pay-button,
.dw-apple-pay-button:hover,
.dw-apple-pay-button:active {
    background-color: black;
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 75% 60%;
    border-radius: 5px;
    border: 1px solid black;
    box-sizing: border-box;
    margin: 5px auto;
    min-height: 30px;
    min-width: 100px;
    padding: 0
}

.dw-apple-pay-button:after {
    content: 'Apple Pay';
    visibility: hidden
}

.dw-apple-pay-button.dw-apple-pay-logo-white {
    background-color: white;
    border-color: white;
    background-image: -webkit-named-image(apple-pay-logo-black);
    color: black
}

.dw-apple-pay-button.dw-apple-pay-logo-white.dw-apple-pay-border {
    border-color: black
}



.related-products {
    margin: 60px auto;
    padding: 0 16px;
}

.related-products h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image {
    position: relative;
    background: #f5f5f5;

    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.product-image:hover img {
    scale: 1.1;
    transition: all 0.3s ease-in-out;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    color: #000;
    background: transparent;
}

.product-title {
    margin-top: 12px;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.4;
    color: #000;
}

/* PAGE WRAPPER */
.ts-page {
    background: #ffffff;
    color: #111;
    font-family: Arial, sans-serif;
}

.ts-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
}

/* BREADCRUMB */
.ts-breadcrumbs {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

/* PRODUCT LAYOUT */
.ts-product-layout {
    display: flex;
    gap: 32px;
}

/* UNIQUE IMAGE GALLERY DESIGN */
.ts-gallery {
    display: flex;
    gap: 16px;
}

.ts-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ts-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: border 0.3s ease, opacity 0.3s ease;
}

.ts-gallery-thumbs img:hover {
    border-color: #000;
    opacity: 0.85;
}

.ts-gallery-main {
    flex: 1;
    border: 1px solid #e5e5e5;
    padding: 20px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-gallery-main img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.ts-gallery-thumbs img.ts-active {
    border-color: #000;
    opacity: 1;
}

/* INFO */
.ts-info {
    flex: 1;
}

.ts-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
}

.ts-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.ts-price {
    font-size: 24px;
    font-weight: 700;
    margin: 12px 0;
}

/* CTA */
.ts-cta {
    display: inline-block;
    padding: 14px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* SECTIONS */
.ts-section-title {
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 18px;
}

/* LISTS */
.ts-features,
.ts-specs {
    list-style: none;
    padding: 0;
}

.ts-features li,
.ts-specs li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* RELATED PRODUCTS */
.ts-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ts-related-item img {
    width: 100%;
    border: 1px solid #eee;
}

.ts-related-name {
    margin-top: 10px;
    font-size: 14px;
    color: #222;
}

@media (max-width: 1024px) {
    .ts-product-layout {
        flex-direction: column;
    }
}


.product-filter {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    margin-top: 60px !important;
    display: flex;
    margin: auto;
    justify-content: center;

}

.product-filter .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

/* Minimal Select Style */
.product-filter select {
    border: none;
    border-bottom: 1px solid #000000;
    border-radius: 0;
    background: transparent;
    padding: 8px 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 120px;


}

.product-filter select:focus {
    outline: none;
    border-bottom: 1px solid #666666;
    box-shadow: none;
}

/* Buttons */
.filter-btn {
    border-radius: 25px;
    padding: 6px 18px;
    font-size: 14px;
}

.filter-btn-primary {
    background: #000;
    color: #fff;
    border: none;
}

.filter-btn-primary:hover {
    background: #333;
}

.filter-btn-reset {
    background: transparent;
    border: 1px solid #ccc;
}

/* Responsive spacing */
.product-filter .row>div {
    margin-bottom: 10px;
}

/* Focus */
.product-filter select:focus {
    outline: none;
    border-bottom: 2px solid #000;
}

/* ACTIVE (SELECTED FILTER) */
.product-filter select.active-filter {
    border-bottom: 2px solid #000;
    font-weight: 600;
    color: #000;
}

