/* StoveShield Product Block Styles */

.stove-shield-product-block {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    border-radius: 2px;
    position: relative;
}

/* Title Section */
.product-title-section {
    margin-bottom: 20px;
    position: relative;
}

.product-main-title {
    font-weight: 700;
    font-size: 36px;
    margin: 0 0 5px 0;
    color: #000;
    text-align: center;
    position: relative;
}

.product-main-title::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    bottom: -10px;
    left: 10%;
}

.product-subtitle {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

/* Feature Image */
.feature-image-container {
    margin: 15px auto 25px auto;
    max-width: 90%;
}

.feature-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}

.feature-image-placeholder {
    background-color: #f5f5f5;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    border: 1px dashed #ccc;
}

/* Brand Banner */
.brand-video-section {
    margin: 20px auto;
    position: relative;
    max-width: 95%;
}

.brand-banner {
    padding: 8px 20px;
    display: inline-block;
    margin: 0 auto 15px auto;
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    top: -10px;
}

.brand-highlight {
    font-weight: bold;
    margin-right: 3px;
    font-size: 20px;
}

.brand-text {
    font-weight: bold;
    font-size: 20px;
}

/* Video Section */
.product-video-container {
    border: 2px solid #000;
    max-width: 100%;
    overflow: hidden;
    margin-top: -15px;
    position: relative;
    z-index: 1;
}

.product-video {
    max-width: 100%;
    width: 100%;
    display: block;
}

.product-video-placeholder {
    position: relative;
    cursor: pointer;
    border: 2px solid #000;
    margin-top: -15px;
    z-index: 1;
}

.video-thumbnail {
    max-width: 100%;
    width: 100%;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.video-placeholder {
    background-color: #f5f5f5;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
}

/* Editor-specific styles */
.media-upload-container {
    margin-bottom: 15px;
}

.preview-image, 
.preview-video {
    max-width: 100%;
    margin-bottom: 10px;
}

.button-group {
    display: flex;
    gap: 8px;
}

.feature-item-edit {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

/* Feature Circles */
.feature-circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.feature-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #000;
}

.feature-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    font-size: 12px;
    margin-top: 5px;
    font-weight: bold;
}

/* .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    text-align: center;
} */

/* Editor helper */
.editor-video-link-info {
    background-color: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}