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(3, 1fr);
    gap: 24px;
}

.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-