/* Product Details Styles */

.wpb-product-details-container {
    width: 100%;
    margin-bottom: 40px;
}

/* =========================================
   TOP SECTION (Image + Info)
   ========================================= */
.wpb-product-top-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 0;
    align-items: flex-start;
}

/* Left Column: Image */
.wpb-product-image-col {
    width: 58%;
    max-width: 58%;
    position: relative; /* Context for badge */
}

/* History Badge */
.wpb-product-history-badge {
    position: absolute;
    bottom: 100px;
    left: -200px;
    z-index: 10;
    width: 600px; /* Adjust as needed */
    height: auto;
}

.wpb-product-history-badge img {
    width: 100%;
    height: auto;
    display: block;
}

.wpb-product-image-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional rounded corners */
}

/* Right Column: Info */
.wpb-product-info-col {
    width: 38%;
    max-width: 38%;
    display: flex;
    flex-direction: column;
    position: relative; /* Context for pattern badge */
}

/* Pattern Badge */
.wpb-product-pattern-badge {
    position: absolute;
    bottom: -200px;
    right: -250px;
    z-index: 0; /* Behind text? or decorative */
    width: 400px;
    height: auto;
    pointer-events: none;
}

.wpb-product-pattern-badge img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.6; /* Optional opacity */
}

/* Title H1 */
.wpb-product-info-col h1 {
    font-size: 100px;
    line-height: 0.8;
    margin: 0 0 10px 0;
    font-weight: 700;
    max-width: 500px;
    
    /* Gradient Text */
    background: linear-gradient(to bottom, #014576 0%, #26949D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Subtitle H2 */
.wpb-product-info-col h2 {
    font-size: 24px;
    font-weight: 400;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

/* Short Description P */
.wpb-product-short-desc {
    margin-bottom: 30px;
}

.wpb-product-short-desc p {
    font-size: 16px;
    line-height: 1.6;
    color: #024576;
    margin-bottom: 15px;
}

/* Sector List Container */
.wpb-product-sectors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

/* Sector Box */
.wpb-product-sector-box {
    margin-bottom: 0 !important; /* Handled by list gap */
    display: flex !important;
    flex-direction: column !important; /* Icon above text */
    align-items: center !important; /* Center icon and text */
    text-align: center;
}

.wpb-product-sector-circle {
    width: 70px !important;
    height: 70px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; /* Visible on white bg */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 10px !important;
}

.wpb-sector-icon-mask {
    width: 35px !important;
    height: 35px !important;
    background: linear-gradient(135deg, #014576 0%, #26949D 100%) !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
    display: block !important;
}

.wpb-product-sector-box h5 {
    font-size: 16px !important; /* Slightly smaller than h4 */
    color: #024576 !important;
    margin: 0 !important;
    font-weight: 600 !important;
}

/* CTA Button */
.wpb-product-cta-wrapper-top {
    margin-top: 10px;
    display: block !important;
}

.wpb-product-cta-btn {
    display: inline-block !important;
    padding: 15px 40px !important;
    background: linear-gradient(135deg, #014576 0%, #26949D 100%) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 0 !important; /* No rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(1, 69, 118, 0.2) !important;
}

.wpb-product-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 69, 118, 0.3);
    color: #fff !important;
}


/* =========================================
   BOTTOM SECTION (Lists)
   ========================================= */

/* Subtitle (if any - legacy) */
.wpb-product-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

/* Lists Layout */
.wpb-product-lists-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 0;
    border-top: 0; /* Removed Separator */
    padding-top: 0;
}

.wpb-product-list-col {
    flex: 1 1 calc(25% - 23px); /* 4 equal columns with gap */
    min-width: 200px; /* Responsive break */
}

/* List Title */
.wpb-list-title {
    font-size: 18px; /* Approx h4 */
    font-weight: 700;
    color: #024576;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

/* Gradient Divider */
.wpb-list-divider {
    width: 75%;
    height: 2px;
    background: linear-gradient(135deg, #014576 0%, #26949D 100%);
    margin: 0 0 20px 0; /* Space below divider */
    align-self: flex-start; /* Left aligned */
}

/* List Items */
.wpb-list-items {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.wpb-list-items li {
    position: relative; /* Context for absolute icon */
    padding-left: 25px; /* Space for icon (20px width + 5px gap) */
    margin-bottom: 10px;
    list-style: none !important; /* Remove marker */
}

/* Remove marker pseudo-element if present */
.wpb-list-items li::marker {
    content: none !important;
    display: none !important;
}

/* Icon (Bullet) */
.wpb-list-items li i {
    font-size: 16px !important; 
    height: 100% !important; 
    line-height: 22px !important; 
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 20px !important;
    color: #024576 !important; /* Force accent color */
    margin: 0;
}

/* Text */
.wpb-list-items li p {
    margin: 0;
    line-height: 1.5;
    color: #024576; /* Updated color */
}

/* CTA Wrapper Bottom (Legacy/Optional) */
.wpb-product-cta-wrapper {
    margin-top: 40px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .wpb-product-info-col h1 {
        font-size: 50px;
    }

    .wpb-product-top-section {
        gap: 0;
    }

    .wpb-product-lists-row {
        margin-top: 30px;
    }
    
    .wpb-product-history-badge,
    .wpb-product-pattern-badge {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .wpb-product-top-section {
        flex-direction: column;
    }
    
    .wpb-product-image-col, 
    .wpb-product-info-col {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .wpb-product-list-col {
        flex: 1 1 calc(50% - 15px); /* 2 cols on tablet */
    }
}

@media (max-width: 480px) {
    .wpb-product-list-col {
        flex: 1 1 100%; /* 1 col on mobile */
    }
}

/* Theme Overrides for Single Product Page */
.single-wpb_product .heading-title[data-header-style="default_minimal"],
.single-wpb_product .post-featured-img {
    display: none !important;
}
