.etpw-product {}

.etpw-wrap {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    align-items: flex-start
}

.etpw-gallery {
    width: 52%
}

.etpw-main-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f3f6f8;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e3e8ee;
    display: flex;
}

.etpw-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.etpw-thumbs {
    margin-top: 12px;
    display: flex;
    gap: 10px
}

.etpw-thumbs .etpw-thumb {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    border: 1px solid #e3e8ee;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.etpw-thumbs .etpw-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.etpw-meta {
    width: 48%
}

.etpw-eyebrow {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 6px
}

.etpw-title {
    margin: 0 0 12px 0;
    font-size: 28px
}

.etpw-desc {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 16px
}

.etpw-size-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.etpw-size-tabs .etpw-size-tab {
    color: #000;
    padding: 8px 14px;
    border: 1px solid #e3e8ee;
    border-radius: 6px;
    cursor: pointer;
    background-color: #e3e8ee;
}

.etpw-size-tabs .etpw-size-tab.etpw-active {
    background: #0b3b66;
    color: #fff;
    border-color: #0b3b66
}

.etpw-faces {
    margin-top: 6px
}

.etpw-faces-list {
    display: flex;
    gap: 12px
}

.etpw-faces-list .etpw-face {
    width: 86px;
    height: 86px;
    border-radius: 6px;
    border: 1px solid #e3e8ee;
    overflow: hidden;
    display: flex;
    cursor: pointer;
}

.etpw-faces-list .etpw-face img {
    object-fit: cover;
}

.etpw-quick {
    margin-top: 18px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 14px;
    background-color: #e9e9e9;
}

.etpw-quick-title {
    margin-bottom: 10px;
    font-weight: bold;
}

.etpw-value {
    text-align: right;
}

.etpw-label {
    color: #000
}

.etpw-facts-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    color: #6b7280;
    font-size: 14px;
}

.etpw-actions {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.etpw-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #e3e8ee;
    background: #fff;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    text-align: center;
}

.etpw-btn.etpw-primary {
    background: #0b3b66;
    color: #fff;
    border-color: #0b3b66
}

.etpw-btn:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
    border-color: #0b3b66;
}

.etpw-sku {
    margin-top: 8px;
    text-align: center;
    color: #6b7280
}

.etpw-faces-title,
.etpw-tabs-title {
    font-weight: bold;
}

@media (max-width:900px) {
    .etpw-wrap {
        flex-direction: column;
        padding: 16px
    }
    .etpw-gallery,
    .etpw-meta {
        width: 100%
    }
    .etpw-main-image {
        aspect-ratio: 4/3
    }
}

.etpw-finishes {
    margin-top: 10px;
}

.etpw-finishes-title {
    font-weight: bold;
    margin-bottom: 6px;
}

.etpw-finish-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.etpw-finish-tab {
    color: #000;
    padding: 10px 12px;
    border: 1px solid #e3e8ee;
    border-radius: 6px !important;
    cursor: pointer;
    background-color: #e3e8ee;
    font-size: 13px;
}

.etpw-finish-tab.etpw-active {
    background: #0b3b66;
    color: #fff;
    border-color: #0b3b66;
}


/* Lightbox Overlay */

.etpw-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.etpw-lightbox-img {
    max-width: 90%;
    max-height: 80%;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.etpw-lightbox-caption {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.etpw-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
}

.etpw-lightbox-close:hover {
    color: #ff5252;
}

.etpw-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #d5d5d5;
    width: 36px;
    height: 38px;
    border-radius: 50% !important;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 5;
    color: #838383;
}

.etpw-nav:hover {
    background: #0b3b66;
    color: #fff;
}

.etpw-gallery {
    position: relative;
}

.etpw-prev {
    left: 10px;
}

.etpw-next {
    right: 10px;
}

.etpw-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.etpw-lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.etpw-lightbox-caption {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.etpw-lightbox-close,
.etpw-lightbox-nav {
    position: absolute;
    font-size: 36px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.etpw-lightbox-close {
    top: 20px;
    right: 30px;
}

.etpw-lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.etpw-lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}