/* ============================================================
   GALAXY PAINT - MODERN PRODUCT DETAIL LUXURY SYSTEM (IDEA 1)
   ============================================================ */

.galaxy-product-master {
    color: #ffffff;
    font-family: 'Open Sans', 'UTMAvo', sans-serif;
    overflow: hidden;
    padding-bottom: 30px;
}
.galaxy-product-master a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Breadcrumbs */
.g-breadcrumb-bar {
    padding: 20px 0 10px 0;
}
.g-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}
.g-breadcrumbs li + li:before {
    content: "/";
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}
.g-breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}
.g-breadcrumbs a:hover {
    color: #ffd200;
}
.g-breadcrumbs .active {
    color: #ffd200;
    font-weight: 600;
}

/* HERO SECTION - 2 COLUMNS */
.g-hero-wrap {
    padding: 30px 0 60px 0;
}
.g-hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -20px;
}
.g-hero-col-img {
    flex: 0 0 46%;
    max-width: 46%;
    padding: 0 20px;
    text-align: center;
    position: relative;
}
.g-hero-col-info {
    flex: 0 0 54%;
    max-width: 54%;
    padding: 0 20px;
}

/* Product Image Stage */
.g-img-stage {
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 65%, transparent 75%);
    padding: 40px 20px;
    border-radius: 24px;
}
.g-product-main-img {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.65));
    transition: transform 0.4s ease;
}
.g-img-stage:hover .g-product-main-img {
    transform: translateY(-8px) scale(1.02);
}
.g-badge-hero {
    position: absolute;
    top: 15px;
    left: 20px;
    background: linear-gradient(135deg, #ffd200 0%, #f7931e 100%);
    color: #2b0b42;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
}
.g-badge-tech {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #00ffcc;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Product Info Details */
.g-sub-cat {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #00d2be;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.g-product-title {
    font-family: 'UTMAvoBold', sans-serif;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Rating & Trust */
.g-trust-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
}
.g-stars {
    color: #ffc107;
    font-size: 15px;
    letter-spacing: 2px;
}
.g-rating-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}
.g-sku-pill {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Description snippet */
.g-product-lead {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
    text-align: justify;
}

/* Price Display & Capacity Selector (IDEA 1) */
.g-commerce-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.g-box-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}
.g-price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 18px;
}
.g-main-price {
    font-size: 36px;
    font-weight: 800;
    color: #ffd200;
    letter-spacing: -0.5px;
}
.g-price-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}
.g-vat-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
}

/* Capacity Chips */
.g-capacity-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.g-capacity-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.g-chip {
    cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}
.g-chip:hover {
    border-color: #ffd200;
    background: rgba(255, 210, 0, 0.1);
}
.g-chip.active {
    border-color: #ffd200;
    background: #ffd200;
    color: #260a3d;
    box-shadow: 0 4px 15px rgba(255, 210, 0, 0.35);
}
.g-chip .g-chip-sqm {
    font-size: 11px;
    opacity: 0.75;
    font-weight: normal;
}

/* Actions CTAs */
.g-action-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.g-btn-primary {
    background: linear-gradient(135deg, #00d2be 0%, #009688 100%);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 210, 190, 0.35);
}
.g-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 190, 0.5);
}
.g-btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.g-btn-outline:hover {
    border-color: #ffd200;
    color: #ffd200 !important;
    background: rgba(255, 210, 0, 0.08);
}
.g-btn-video {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.g-btn-video:hover {
    background: #e52d27;
    border-color: #e52d27;
    box-shadow: 0 6px 20px rgba(229, 45, 39, 0.4);
}

/* Quick Guarantee Badges */
.g-guarantees {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-wrap: wrap;
}
.g-guar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}
.g-guar-item i {
    color: #00d2be;
    font-size: 16px;
}

/* SECTION 2: BREAKTHROUGH FEATURES (GRID CARDS) */
.g-features-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.15);
}
.g-section-head {
    text-align: center;
    margin-bottom: 45px;
}
.g-section-badge {
    display: inline-block;
    color: #ffd200;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.g-section-title {
    font-family: 'UTMAvoBold', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}
.g-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.g-feat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.g-feat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 210, 0, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
.g-feat-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 210, 190, 0.2) 0%, rgba(255, 210, 0, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffd200;
    margin-bottom: 20px;
}
.g-feat-card h3 {
    font-family: 'UTMAvoBold', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}
.g-feat-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    text-align: justify;
}
.g-feat-card .g-feat-vid-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #ffd200;
    font-weight: 600;
    margin-top: 15px;
}

/* SECTION 3: SPEC SHEET & TIMELINE TABS (CENTERED IDEA 1) */
.g-specs-section {
    padding: 70px 0 80px 0;
}
.g-specs-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}
/* Centered Pill Tabs */
.g-tab-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 25px;
}
.g-tab-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.g-tab-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.g-tab-pill.active {
    background: linear-gradient(135deg, #ffd200 0%, #f7931e 100%);
    border-color: #ffd200;
    color: #260a3d;
    box-shadow: 0 4px 18px rgba(255, 210, 0, 0.4);
}

/* Spec Sheet 2-Col Table */
.g-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}
.g-spec-table tr {
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}
.g-spec-table tr:hover {
    background: rgba(255, 255, 255, 0.08);
}
.g-spec-table td {
    padding: 14px 20px;
    font-size: 14px;
}
.g-spec-table td:first-child {
    width: 38%;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px 0 0 10px;
    border-left: 3px solid #00d2be;
}
.g-spec-table td:last-child {
    width: 62%;
    color: #ffffff;
    font-weight: 500;
    border-radius: 0 10px 10px 0;
}
.g-spec-highlight {
    background: rgba(0, 210, 190, 0.15);
    color: #00ffcc;
    padding: 2px 10px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
}

/* Construction 3-Step Timeline */
.g-timeline-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 15px;
}
.g-timeline-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 28px 22px;
    position: relative;
}
.g-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d2be 0%, #009688 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(0, 210, 190, 0.4);
}
.g-timeline-step h4 {
    font-family: 'UTMAvoBold', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffd200;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}
.g-timeline-step p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: justify;
}

/* SECTION 4: TESTIMONIALS */
.g-testimonial-section {
    padding: 40px 0 60px 0;
    background: rgba(0, 0, 0, 0.1);
}
.g-testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.g-testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 25px;
}
.g-testi-text {
    font-style: italic;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}
.g-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.g-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd200, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #2b0b42;
}
.g-author-info b {
    display: block;
    font-size: 15px;
    color: #ffffff;
}
.g-author-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* CTA BANNER: CALCULATOR & COLOR */
.g-tools-banner {
    margin: 40px 0 20px 0;
    background: linear-gradient(135deg, rgba(0, 210, 190, 0.25) 0%, rgba(255, 210, 0, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.g-tools-content h3 {
    font-family: 'UTMAvoBold', sans-serif;
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 6px 0;
}
.g-tools-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}
.g-tools-btns {
    display: flex;
    gap: 12px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .g-hero-col-img, .g-hero-col-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .g-hero-col-img {
        margin-bottom: 40px;
    }
    .g-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .g-timeline-wrap {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .g-product-title {
        font-size: 26px;
    }
    .g-main-price {
        font-size: 28px;
    }
    .g-features-grid {
        grid-template-columns: 1fr;
    }
    .g-specs-wrapper {
        padding: 24px 16px;
    }
    .g-tab-pill {
        padding: 10px 18px;
        font-size: 13px;
    }
    .g-spec-table td:first-child {
        width: 45%;
        font-size: 13px;
    }
    .g-spec-table td:last-child {
        width: 55%;
        font-size: 13px;
    }
    .g-testi-grid {
        grid-template-columns: 1fr;
    }
    .g-action-group {
        flex-direction: column;
    }
    .g-btn-primary, .g-btn-outline, .g-btn-video {
        width: 100%;
        justify-content: center;
    }
    .g-tools-banner {
        flex-direction: column;
        text-align: center;
    }
    .g-tools-btns {
        width: 100%;
        flex-direction: column;
    }
}
