.product-gallery-wrapper {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.product-main-image-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Navigation Arrows */
.gallery-nav-prev,
.gallery-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    user-select: none;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-nav-prev {
    left: 15px;
}

.gallery-nav-next {
    right: 15px;
}

.gallery-nav-prev:hover,
.gallery-nav-next:hover {
    background: #fff;
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

/* Gallery Thumbnails */
.product-gallery-thumbnails {
    display: grid;
    gap: 12px;
    margin-top: 15px;
}

.thumbnail-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
    background: #eee;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-item.active {
    border-color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Product Info Widget */
.product-info-wrapper {
    position: relative;
    padding: 10px 0;
    text-align: left;
}

.product-info-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-info-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.2;
    color: #1a1a1a;
}

.product-info-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-top: 5px;
}

.price-current {
    font-size: 24px;
    font-weight: 800;
    color: #e63946;
}

.price-old {
    font-size: 18px;
    text-decoration: line-through;
    color: #777;
    font-weight: 400;
}

/* Ensure WooCommerce currency symbols look consistent */
.woocommerce-Price-currencySymbol {
    font-size: 0.8em;
    vertical-align: super;
    margin-right: 2px;
}