/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background: url("image/bg-web.png") no-repeat center fixed;
    background-size: cover;
}
body.bg-berita {
    background: url("image/bg_berita.png") no-repeat center center fixed;
    background-size: cover;
}
body.bg-kontak {
    background: url("image/bg-kontak.png") no-repeat center center fixed;
    background-size: cover;
}

/* ================= KREDIT ================= */

body.bg-kredit {
    background: url("image/bg-kredit.png") no-repeat center center fixed;
    background-size: cover;
}
/* ================= LOGIN ADMIN ================= */

body.bg-login {
    margin: 0;
    height: 100vh;
    background: url("image/bg-login.png") no-repeat center center fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}
form {
    max-width: 500px;
    margin: 30px auto;
}

form input, form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

form button {
    padding: 10px 15px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #218838;
}
button {
    appearance: none;
    -webkit-appearance: none;
    border: none;
}
.btn-admin-menu {
    display: block;
    padding: 12px;
    margin: 10px 0;
    background: #e60012;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
}

.btn-admin-menu:hover {
    background: #ff0000;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: rgba(0,0,0,0.9);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.login-card h2 {
    margin-bottom: 20px;
    color: #e60012;
}

.login-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
}

.login-card button {
    width: 100%;
    padding: 12px;
    background: #e60012;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.login-card button:hover {
    background: #ff0000;
}

.alert-error {
    background: #dc3545;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.back-link {
    display: block;
    margin-top: 15px;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    color: #fff;
}

/* ================= ADMIN BUTTON ================= */

.admin-login-box {
    text-align: center;
    padding: 10px 0;
}

.btn-admin {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-admin:hover {
    background: #e60012;
}
.kredit-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 40px;
    flex-wrap: wrap;
}

.kredit-card {
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.kredit-card h2 {
    margin-bottom: 15px;
    color: #e60012;
}

.kredit-card ul {
    list-style: none;
    padding-left: 0;
}

.kredit-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.kredit-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #e60012;
}

.kredit-cta {
    text-align: center;
    padding: 40px;
}

.btn-kredit {
    display: inline-block;
    padding: 12px 25px;
    background: #e60012;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn-kredit:hover {
    background: #ff0000;
}

.kontak-container {
    display: flex;
    gap: 30px;
    padding: 40px;
    justify-content: center;
}

.kontak-info, .kontak-form {
    background: rgba(0,0,0,0.8);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    width: 45%;
}

.kontak-form input,
.kontak-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
}

.kontak-form button {
    padding: 10px 20px;
    background: #e60012;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.kontak-form button:hover {
    background: #ff0000;
}

/* ================= SOCIAL MEDIA ================= */

.social-media {
    padding: 40px;
    text-align: center;
}

.social-media h3 {
    color: #fff;
    margin-bottom: 20px;
}

.social-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 120px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.social-card small {
    font-weight: normal;
    margin-top: 5px;
}

/* Instagram gradient */
.social-card.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card.instagram:hover {
    transform: translateY(-6px);
}

/* TikTok Gradient Style */
.social-card.tiktok {
    background: linear-gradient(135deg, #000000 40%, #25F4EE, #FE2C55);
    position: relative;
    overflow: hidden;
}

.social-card.tiktok:hover {
    transform: translateY(-6px) scale(1.03);
}
/* Facebook */
.social-card.facebook {
    background: #1877f2;  /* biru khas Facebook */
}

.social-card.facebook:hover {
    background: #0d65d9;
    transform: translateY(-6px);
}
.admin-aksi{
    margin-top:10px;
}

.edit-container img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 10px 0;
}
.edit-container label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    letter-spacing: normal;
}
.edit-container textarea {
    min-height: 180px;   /* tinggi awal */
    resize: vertical;    /* bisa ditarik ke bawah saja */
    font-size: 14px;
    line-height: 1.6;
    padding: 12px;
}
.btn-edit {
    display: inline-block;
    margin-top: 8px;
	margin-bottom: 10px;
    padding: 8px 14px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
	
	
}
.form-action-detail {
    display: flex;
    gap: 15px;
}

.form-action-detail .btn-edit,
.form-action-detail .btn-hapus {
    width: auto;     /* override width 100% */
    flex: 1;         /* supaya sama besar */
}

.btn-edit:hover {
    background-color: #0056b3;
}
.btn-hapus {
    background: #dc3545;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-hapus:hover {
    background: #b02a37;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


.alert-success {
    background: #28a745;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

.alert-error {
    background: #dc3545;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}
/* Navbar */
.navbar {
	
    position: relative;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
}

.logo img {
    height: 40px;
}

.menu {
    list-style: none;
    display: flex;
	gap: 25px;
}

.menu li {
    position: relative;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    padding : 10px;
	display: block;
}

.menu li a:hover {
    color: #2ecc71;
}
/* ===== TOGGLE BUTTON ===== */
.menu-toggle{
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
}


.submenu li {
    border-bottom: 1px solid #333;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    padding: 10px 15px;
    font-size: 14px;
}

.submenu a:hover {
    background: #e60012; /* merah Suzuki */
    color: #fff;
}



.pro {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background-color: transparent;
    
    margin: 0;
    padding-top: 30px; /* top untuk navbar */
	padding-bottom: 40px;
    position: relative;


}

.pro-overlay {
    position: absolute;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}
.pro-content {
    position: relative;
    
    text-align: center;
    
}

.pro-content h1 {
    font-size: 48px;
	color: #fff;
}
/* Hero */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
	flex: 1;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
}

/* Slider */
.hero-slider {
    width: 100%;
    max-width: 420px;
    height: 230px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
}

.slides a {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
}

.slides img:hover {
    transform: scale(1.05);
}
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #007bff;
}
.alert-success,
.alert-error {
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: bold;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}
/* Button */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #2ecc71;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #27ae60;
}

/* FOOTER SENADA NAVBAR */
.footer {
    background: rgba(0, 0, 0, 0.7); /* sama persis navbar */
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.15);
	margin-top: auto; /* KUNCI */

}

.footer p {
    margin: 0;
}

.footer strong {
    color: #e60012; /* merah khas Suzuki */
}
.bg-siku {
    background: #111;
    color: #fff;
    padding: 20px 30px;
    width: fit-content;
    margin: 20px auto;
    
    /* bentuk siku + setengah lingkaran */
    border-top-left-radius: 0;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 0;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	border: 1px solid rgba(255,255,255,0.6);
}

.bg-siku .title {
    font-size: 16px;
    margin-bottom: 5px;
}

.bg-siku .subtitle {
    font-size: 14px;
    color: #e60012;   /* MERAH SUZUKI */
    font-weight: 600;
    letter-spacing: 0.6px;
}
.section-produk {
    background: linear-gradient(160deg, #ffffff, #f1f1f1);
    padding: 60px 0;
}
.produk-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px 40px 40px;
}

.produk-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
	overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between; /* TAMBAHKAN INI */
    position: relative;
    color: #333;
}


.produk-card:hover {
    transform: translateY(-6px);
}

.produk-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.produk-card h3 {
    padding: 0 15px;
    color: #111;
    font-weight: bold;
}

.produk-card .harga {
    padding: 0 15px;
    color: #e60012;
    font-weight: bold;
}

.produk-card .deskripsi {
    padding: 0px 15px;
    font-size: 14px;
    color: #555;
    text-align: justify !important;
    flex-grow: 1; /* INI KUNCINYA */
}
.produk-card .btn-detail {
    margin-top: auto;   /* INI KUNCINYA */
}
.produk-card .btn-detail,
.produk-card .btn-whatsapp {
    
    width: 75%;
    margin: 12px auto 0;
    padding: 14px 0;
    border-radius: 12px;
    font-weight: 600;
}

.produk-card .btn-detail {
    margin-top: auto;
	background: #222;
    color: #fff;
}

.produk-card .btn-detail:hover {
    background: #000;
}

.produk-card .btn-whatsapp {
    display: block;
    text-align: center;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.produk-card .btn-whatsapp:hover {
    background: #1ebe5d;
}


.page-title {
    margin-top: 40px; /* tinggi navbar */
    padding: 10px 10px;
    text-align: center;

    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.page-title h1 {
    font-size: 34px;
    color: #fff;
    letter-spacing: 1px;
}
.overlay-produk {
    position: absolute;
    inset: 0;
    
    z-index: -1;
}
.page-titleproduk {
    margin-top: 0px; /* tinggi navbar */
    padding: 10px 10px;
    text-align: center;

    background: rgba(150,150,150,0.4);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.page-titleproduk h1 {
    font-size: 34px;
    color: #fff;
    letter-spacing: 1px;
}

/* ZOOM IMAGE */
.zoom-img {
    cursor: zoom-in;
}

/* Overlay zoom */
.img-zoom {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.img-zoom img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    animation: zoomIn 0.3s ease;
}

.img-zoom .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.page-title {
    text-align: center;
    padding: 20px 20px 20px;
    color: #fff;
    background-color: #111; /* Hitam gelap */
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.profil-section {
   
    text-align: justify;
	display: flex;
    flex-direction: column;
    min-height: auto;
    background-color: transparent;
    color: #fff;
    margin: 0;
    padding: 0px 0px 0px; /* top untuk navbar */
    position: relative;
}
.profil-overlay {
    position: absolute;
    background: rgba(0,0,0,0.55);
    z-index: -1;
	
}

.profil-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px 40px 40px;
}

.profil-card {
    background: #1c1c1c;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.profil-card:hover {
    transform: translateY(-6px);
}

.profil-card img {
    
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;

}

.profil-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.profil-card p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}
.profil-card .btn-wa {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: #25d366;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.profil-card .btn-wa:hover {
    background: #1ebc59;
}

.notif {
    background: #27ae60;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}
.admin-action {
    margin: 8px 15px 5px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;   /* jarak antar tombol */
}

.admin-action a,
.admin-action form {
    display: block;
    margin-bottom: 8px;
}

.admin-action form {
    margin: 0;
}

.btn-edit,
.btn-hapus {
    width: 100%;
    height: 45px;              /* samakan tinggi */
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    padding: 0;
    line-height: 1;            /* ini penting */
    box-sizing: border-box;

}

.btn-edit {
    background: #3498db;
    color: white;
    
}

.btn-hapus {
    background: #e74c3c;
    color: white;
}
.form-container {
    width: 500px;
    margin: 120px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-container label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

.form-container input,
.form-container textarea,
.form-container select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.form-edit-card {
    width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.checkbox-group {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}
/* Container */
.admin-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Card */
.admin-card {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Header */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.admin-header h2 {
    margin: 0;
}

.btn-back {
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
}

/* Form */
.admin-form .form-group {
    margin-bottom: 18px;
}

.admin-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.admin-form input,
.admin-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.admin-form input:focus,
.admin-form textarea:focus {
    border-color: #3498db;
    outline: none;
}
/* CENTER WRAPPER */
.center-wrapper {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;   /* center horizontal */
    justify-content: center; /* center vertical */
    padding: 40px 20px;
    text-align: left; /* paksa teks rata kiri */
}

/* Card */
.ber-card-form {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    text-align: left; /* paksa isi rata kiri */
    margin: 40px auto;  /* center horizontal */
    
}

/* Pastikan form tidak ikut center */
.form-detail {
    text-align: left;
}
/* Buttons */
.form-action {
    display: flex;
    gap: 10px;
    margin-top: 15px;
	margin-bottom: 10px;
}

.btn-save {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #2ecc71;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.btn-cancel {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.preview-img {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
}
.tambah-wrapper {
    text-align: center;
    margin: 10px 0;
}
.admin-top {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
	margin-top: 25px;
}

.btn-tambah {
    display: inline-block;
    padding: 12px 25px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-tambah:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-simpan {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    background: #27ae60;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
}

.btn-simpan:hover {
    background: #1e874b;
}

.badge-card {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 5;
    
}

.badge-card.promo {
    background: #e74c3c; /* merah promo */
	color: #fff;
}

.badge-card.terlaris {
    background: #ffeb3b; /* hitam elegan */
    top: 45px;
	color: #000;
}

/* AREA GELAP */
.dark-section {
    background: #111;
    color: #fff;
}

/* AREA TERANG */
.light-section {
    background: #fff;
    color: #333;
}

.tanggal {
   font-size: 12px;
    color: #ff4d4d;
    margin-bottom: 8px;
}
.media-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.media-card {
    background: rgba(0,0,0,0.8);
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
}

.media-card:hover {
    transform: translateY(-5px);
}

.media-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
}

.media-video {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.media-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
	padding: 10px 15px;
    color: #555;
}

.media-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.media-item video {
    width: 100%;
    border-radius: 8px;
}
/* TOMBOL TAMBAH MEDIA */
.btn-tambah-media {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}

/* ACTION BUTTON MEDIA */
.media-action {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.media-action form {
    flex: 1;
}
.media-admin-top {
    display: flex;
    justify-content: center;   /* bikin ke tengah horizontal */
    margin: 20px 0;
}

.media-admin-top form {
    margin: 0;
}

.btn-tambah-media {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}
.btn-edit-media,
.btn-hapus-media {
    width: 100%;
    height: 35px;
    border-radius: 20px;
    border: none;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

.btn-edit-media {
    background: #3498db;
}

.btn-hapus-media {
    background: #e74c3c;
}

.btn-file {
    display: inline-block;
    padding: 8px 15px;
    background: #e74c3c;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}
.btn-whatsapp {
    background: #25D366;   /* Hijau WhatsApp */
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ebe5d;   /* Lebih gelap saat hover */
    transform: translateY(-2px);
}

.dokumen-card{
    width: 100%;
    min-height: 150px;   /* pakai min-height lebih aman */
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.dokumen-card:hover{
    transform: translateY(-5px);
}

.dokumen-card img{
    width: 60px;
    height: 60px;
    object-fit: contain;   /* supaya icon tidak terpotong */
    margin: 0 auto 10px;
}

.dokumen-card p{
    font-size: 13px;
    margin-bottom: 10px;
    word-break: break-word;
}

.dokumen-card a{
    display: inline-block;
    padding: 6px 12px;
    background: #e74c3c;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
}

.produk-detail {
    display: flex;
    justify-content: space-between; /* space antar konten & sidebar */
    padding: 30px 20px;             /* jarak kiri-kanan container */
	align-items:flex-start;
    gap: 30px;                       /* jarak antar kolom */
}
.produk-detail > div:first-child { /* konten utama */
    width: 70%;
}


.berita-card {
    width: 840px; 
    background: rgba(0,0,0,0.85);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 20px;
}
.det-detail {
    display: flex;
    justify-content: center; /* space antar konten & sidebar */
    padding: 30px 30px;             /* jarak kiri-kanan container */
                          
}
.det-content {
    position: relative;
    
    text-align: justify;
}
.ber-card {
    width: 840px; 
    background: rgba(0,0,0,0.85);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 20px;
}
.ber-card h2 {
    color: orange;           /* Contoh warna kontras */
	text-align: center;
	margin-top: 15px;
}
.ber-card .harga {
    color: #e60012;        /* Merah khas Suzuki */
    font-weight: bold;      /* tebal */
    font-size: 24px;        /* lebih menonjol, bisa disesuaikan */
    text-align: center;     /* posisi tengah */
    margin-bottom: 15px;         /* jarak atas-bawah */
}
.ber-card .btn-wa {
   display: inline-block;
    padding: 8px 15px;          /* sama seperti btn-file */
    background: #25D366;        /* hijau WhatsApp */
    color: #fff;
    border-radius: 6px;         /* sama seperti btn-file */
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s ease;
    margin-top: 15px;
	 text-align: center;
	
}
.detail-card {
   
    width: 840px;
    background: rgba(0,0,0,0.85);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    position: relative;
    color: #fff;
    padding: 20px;
}
.detail-card h3 {
    padding: 0 15px;
    color: #111;
    font-weight: bold;
}
.detail-card .harga {
    padding: 0 15px;
    color: #e60012;
    font-weight: bold;
}
.detail-card .deskripsi {
    padding: 10px 0;
    font-size: 14px;
    color: #ddd;
}
.detail-card video{
width:100%;
border-radius:8px;
margin-bottom:10px;
}
/* Fade Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}
/* SIDEBAR BOX */
.sidebar {
    background: rgba(120,120,120,0.25); /* abu transparan */
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    color: #fff;
	width: 28%;
    padding-left: 15px;   /* jarak dari konten utama */
    padding-right: 15px;  /* jarak dari tepi kanan layar */
}

/* Judul Sidebar */
.sidebar h3 {
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-size: 18px;
}
.sidebar h3.populer {
    color: #e60012;  /* merah khas Suzuki */
    margin-bottom: 15px;
    padding-bottom: 8px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
    font-weight: bold;
	font-size: 20px;
}


/* Link Sidebar */
.sidebar a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #e60012; /* merah Suzuki */
}

/* Spacing antar item */
.sidebar p {
    margin-bottom: 10px;
}
.flex-container {
    display: flex;
    gap: 2%; /* jarak antara konten & sidebar */
    align-items: flex-start; /* supaya sejajar di atas */
}

/* ================= DESKRIPSI BERITA ================= */
/* Item berita populer */
.populer-item {
    margin-bottom: 12px;
}
/* ================= DESKTOP DROPDOWN FIX ================= */
.dropdown{
    position:relative;
}

.submenu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#222;
    min-width:200px;
    list-style:none;
    padding:0;
    border-radius:8px;
    z-index:999;
}

.submenu li{
    padding:10px 15px;
}

.submenu li a{
    color:white;
    text-decoration:none;
    display:block;
}

.submenu li a:hover{
    background:#e60012;
}

/* HANYA DESKTOP */
@media (min-width:769px){
    .dropdown:hover > .submenu{
        display:block;
    }
}
.populer-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.populer-item a:hover {
    color: #e60012;
}

/* Thumbnail kecil */
.populer-img{
    width:70px;
    height:55px;
    object-fit:cover;
    border-radius:6px;
    flex-shrink:0;
    display:block;
}

.populer-img video{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Text area */
.populer-text {
     display: flex;
    flex-direction: column;
    align-items: flex-start;   /* paksa rata kiri */
    text-align: left;
}

.populer-judul {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}
.populer-view {
    font-size: 11px;
    color: #ccc;
    margin-top: 3px;
}
.deskripsi-berita {
    
	
	 margin-top: 25px;
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
    color: #333;
    font-family: 'Segoe UI', Arial, sans-serif;
    
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);

    border-left: 5px solid #e30613; /* merah Suzuki */
}
.deskripsi-berita br {
    margin-bottom: 15px;
}

.deskripsi-berita p {
    margin-bottom: 18px;
}

.deskripsi-berita::first-letter {
    font-size: 40px;
    font-weight: bold;
    float: left;
    margin-right: 10px;
    line-height: 1;
    color: #e30613;
}

/* ================= BERITA TERKAIT ================= */

/* Judul section */
.related-title {
    background: linear-gradient(90deg, #e60012, #111);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
}
.detail-card .related-title {
    color: #fff !important;
}

.related-wrapper {
    margin-top: 25px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}


.related-card {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    margin-bottom: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.related-thumb{
    width:130px;
    height:95px;
    overflow:hidden;
    border-radius:10px;
    flex-shrink:0;
}
.related-thumb img,
.related-thumb video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.10);
}
.pagination a{
    margin:5px;
    padding:8px 12px;
    background:#e60000;
    color:white;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.pagination a:hover {
    background:#ff4d4d;
}

.pagination a.active{
    background:#ff0000;   /* merah terang untuk halaman aktif */
    font-weight:bold;
}
/* Thumbnail */
.related-img {
    width: 130px;
    height: 95px;
    object-fit: cover;
}


/* Konten */
.related-content{
    padding:12px 18px;
    display:flex;
    flex-direction:column;
    align-items:flex-start; /* paksa rata kiri */
    text-align:left;
}

.related-content h4{
    font-size:15px;
    margin-bottom:6px;
    font-weight:600;
    color:#111;
    text-align:left;
}

.related-content span{
    font-size:13px;
    color:#666;
    text-align:left;
}



@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ===================================== */
/* ========== MOBILE VERSION =========== */
/* ===================================== */

@media (max-width: 768px) {

  
    /* ===== HERO ===== */
  .hero {
        min-height: 100vh;
        padding-top: 80px;   /* ruang aman navbar */
        padding-bottom:300px; /* supaya tidak mepet footer */
        align-items: flex-start; /* jangan terlalu naik */
    }

    .hero-content {
        width: 100%;
        margin-top: 20px;
    }

    .hero-content h1 {
        margin-top: 0;
    }

    .hero-slider {
        width: 95%;
        height: auto;
    }
	

    .slides a {
        width: 100%;
    }

    .slides img {
        height: 180px;
    }

    /* ===== PAGE TITLE ===== */
    .page-title h1,
    .page-titleproduk h1 {
        font-size: 20px;
    }

    /* ===== PRODUK GRID ===== */
    .produk-container {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .produk-card img {
        height: 180px;
    }
	 .produk-card .btn-detail,
    .produk-card .btn-whatsapp{
        width: 100%;
        margin: 10px 0;
    }

    /* ===== PRODUK DETAIL + SIDEBAR ===== */
    .produk-detail {
        flex-direction: column;
        padding: 15px;
    }

    .produk-detail > div:first-child,
    .sidebar {
        width: 100% !important;
    }

    .sidebar {
        margin-top: 20px;
        padding: 15px;
    }

    /* ===== BERITA CARD ===== */
    .detail-card,
    .ber-card,
    .berita-card {
        width: 100% !important;
        padding: 15px;
    }

    .deskripsi-berita {
        padding: 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    /* ===== POPULER SIDEBAR ===== */
    .populer-img {
        width: 60px;
        height: 45px;
    }
	video.populer-img{
    width:70px;
    height:55px;
    object-fit:cover;
    border-radius:6px;
    display:block;
}

    .populer-judul {
        font-size: 13px;
    }

    /* ===== FORM ===== */
    .form-container,
    .form-edit-card,
    .admin-card {
        width: 95% !important;
        margin: 100px auto 40px auto;
        padding: 20px;
    }

    input,
    textarea,
    select {
        font-size: 14px;
    }

    /* ===== KONTAK ===== */
    .kontak-container {
        flex-direction: column;
        padding: 15px;
    }

    .kontak-info,
    .kontak-form {
        width: 100%;
    }

    /* ===== PROFIL ===== */
    .profil-container {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    /* ===== MEDIA ===== */
    .media-container {
        grid-template-columns: 1fr;
    }

    /* ===== BUTTON ===== */
    .btn,
    .btn-edit,
    .btn-hapus,
    .btn-tambah {
        width: 100%;
        text-align: center;
    }

    /* ===== PAGINATION ===== */
    .pagination {
        text-align: center;
    }

    .pagination a {
        display: inline-block;
        margin: 3px;
        padding: 6px 10px;
        font-size: 13px;
    }

    /* ===== FOOTER ===== */
    .footer {
        font-size: 12px;
        padding: 15px;
    }
	/* Container utama */
    .produk-detail{
        flex-direction: column;
        padding: 15px;
        gap: 20px;
    }

    /* Konten utama */
    .konten-berita{
        width: 100% !important;
    }

    /* Card berita */
    .detail-card{
        width: 100% !important;
        padding: 15px;
        border-radius: 12px;
    }

    .detail-card img{
        width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .detail-card h2{
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .tanggal{
        font-size: 12px;
        margin-bottom: 10px;
    }

    .deskripsi{
        font-size: 14px;
        line-height: 1.6;
    }

    .btn-file{
        display: block;
        text-align: center;
        margin-top: 12px;
        padding: 10px;
        border-radius: 8px;
    }
	.btn-whatsapp {
    background: #25D366;   /* Hijau WhatsApp */
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ebe5d;   /* Lebih gelap saat hover */
    transform: translateY(-2px);
}
	

    /* Sidebar turun ke bawah */
    .sidebar{
        width: 100% !important;
        margin-top: 25px;
        padding: 15px;
        border-radius: 12px;
    }

    /* Kategori link */
    .sidebar p{
        margin-bottom: 8px;
    }

    /* Populer item */
    .populer-item a{
        gap: 10px;
    }

    .populer-img{
        width: 60px;
        height: 45px;
    }

    .populer-judul{
        font-size: 13px;
    }

    .populer-view{
        font-size: 11px;
    }

    /* Pagination */
    .pagination{
        text-align: center;
        margin-top: 20px;
    }

    .pagination a{
        display: inline-block;
        margin: 4px;
        padding: 6px 10px;
        font-size: 13px;
        border-radius: 5px;
    }
	.produk-detail{
    display: flex !important;
    flex-direction: column !important;
}

.konten-berita{
    width: 100% !important;
}

.sidebar{
    width: 100% !important;
    margin-top: 20px !important;
}

.detail-card,
.ber-card,
.berita-card{
    width: 100% !important;
}
/* ===== FIX BUTTON WHATSAPP MOBILE ===== */

.produk-card .btn-detail,
.produk-card .btn-whatsapp {
    display: block !important;
    width: 100% !important;
    padding: 12px !important;
    margin: 10px 0 !important;
    border-radius: 8px !important;
    text-align: center !important;
    text-decoration: none !important;
    font-weight: 600;
}

.produk-card .btn-detail {
    background: #2c3e50 !important;
    color: #fff !important;
}

.produk-card .btn-whatsapp {
    background: #25D366 !important;
    color: #fff !important;
}

.produk-card .btn-whatsapp:hover {
    background: #1ebe5d !important;
}


}
/* ================= MOBILE NAVBAR ================= */


/* ================= MOBILE NAVBAR FIX ================= */
@media (max-width:768px){

    .navbar{
        position:relative;
        padding:15px 20px;
    }

    .menu-toggle{
        display:block;
        font-size:28px;
        cursor:pointer;
    }

    .menu{
        display:none;
        flex-direction:column;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#111;
        padding:10px 0;
        z-index:999;
    }

    .menu.show{
        display:flex;
    }

    .menu li{
        text-align:center;
        padding:12px 0;
    }

    /* NONAKTIFKAN hover di mobile */
    .dropdown:hover .submenu{
        display:none;
    }

    .submenu{
        display:none;
        position:static;
        background:#222;
    }

    .dropdown.active .submenu{
        display:block;
    }
	.produk-card .btn-detail,
    .produk-card .btn-whatsapp{
        display: block !important;
        width: 100% !important;
        padding: 12px !important;
        margin: 10px 0 !important;
        border-radius: 8px !important;
        text-align: center !important;
        text-decoration: none !important;
        font-weight: 600;
    }

    .produk-card .btn-detail{
        background: #2c3e50 !important;
        color: #fff !important;
    }

    .produk-card .btn-whatsapp{
        background: #25D366 !important;
        color: #fff !important;
    }
}
/* ============================= */
/* RESPONSIVE MOBILE */
/* ============================= */

@media (max-width:768px){

/* layout berita jadi 1 kolom */
.produk-detail{
flex-direction:column;
}

/* konten berita full */
.konten-berita{
width:100%;
}

/* sidebar turun ke bawah */
.sidebar{
width:100%;
margin-top:30px;
}

/* card berita */
.detail-card{
padding:15px;
}

/* gambar dan video */
.detail-card img,
.detail-card video{
width:100%;
height:auto;
}

/* judul berita */
.detail-card h2{
font-size:18px;
}

/* deskripsi */
.deskripsi{
font-size:14px;
}

/* tombol */
.btn-file{
display:inline-block;
margin-top:10px;
font-size:14px;
}

/* berita populer */
.populer-item{
display:flex;
align-items:center;
gap:10px;
}

/* thumbnail populer */
.related-thumb{
width:70px;
height:55px;
}

/* text populer */
.populer-judul{
font-size:14px;
}

.populer-view{
font-size:12px;
}

}