/*
Theme Name: iBAN Power
Theme URI: https://ibanpower.com
Author: Vodjo
Author URI: https://vodjo.com
Description: Custom WordPress theme for iBAN Power - Taiwan Based Telecom Energy Provider
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iban-power
Tags: business, telecom, energy, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* 
This file is intentionally minimal. 
All styling is done through the main.css file in the css folder 
to maintain the original template structure.
*/

/**
 * FIX: Product Detail Hero Image Display
 * Mengubah tampilan dari 'cover' (terpotong) menjadi 'contain' (utuh)
 */

/* Target khusus untuk halaman Single Product */
.single-product .gal-top-hero,
.single-product .hero-image {
    /* Memastikan gambar latar belakang tampil utuh */
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

/* KASUS 2: Jika gambar dipanggil menggunakan tag <img src="..."> */
.single-product .gal-top-hero img,
.single-product .hero-image img {
    object-fit: contain !important;
    width: 100% !important;
    height: auto !important;
    
    /* Mencegah gambar menjadi terlalu tinggi jika portrait */
    max-height: 80vh; 
    margin: 0 auto;
    display: block;
}

/* KASUS 3: Jika Hero ada di dalam Slider (Swiper) */
.single-product .swiper-slide .gal-top-hero {
    background-size: contain !important;
}
