*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}



/* ================= NAVBAR FIXED (FINAL) ================= */

.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;

  background:#333;
  color:#fff;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding: 0 50px;
  z-index: 9999;
}

/* LOGO */
.navbar .logo img{
  height: 65px;
  width:auto;
  object-fit:contain;
}

/* MENU */
.menu{
  list-style:none;
  display:flex;
  gap:30px;
  align-items:center;
}
@media(max-width:768px){
  .menu{
    gap:12px;
    font-size:12px;
    flex-wrap: wrap; /* penting */
    justify-content: center;
  }
}

.navbar{
  padding:0 20px;
}

.navbar .logo img{
  height:55px;
}

}

/* ================= OFFSET CONTENT ================= */
body{
  padding-top: 80px; /* SAMA DENGAN HEIGHT NAVBAR */
}




.logo{
  font-size:15px;
  font-weight:700;
  color:red; /* logo merah */
}
.logo span{
  color:#fff; /* highlight putih */
}

.menu{
  list-style:none;
  display:flex;
  gap:50px;
  align-items:center;
}

.menu a{
  text-decoration:none;
  color:#fff;
  font-weight:795;
}

.menu a:hover{
  color:red; /* hover merah */
}

.btn-login {
  padding: 8px 18px;
  background: #d62828;
  color: white;
  border-radius: 20px;
  font-weight: 500;
}

.btn-logout {
  padding: 8px 18px;
  border: 1px solid white;
  color: white;
  border-radius: 20px;
}

.user-name {
  color: white;
  font-weight: 500;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:40px;
  left:0;
  background:#fff; /* dropdown putih */
  width:260px;
  display:none;
  grid-template-columns:1fr;
  padding:15px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.dropdown-menu li{
  padding:8px;
  color:#111;
  cursor:pointer;
  border-radius:5px;
}

.dropdown-menu li:hover{
  background:red;
  color:#fff;
}

.dropdown:hover .dropdown-menu{
  display:grid;
}

/* HERO */

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


.hero{
  height:85vh;
  background: url('images/store_bg.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  position:relative;
  overflow:hidden;
 
}

.hero {
  width: 100vw;
  margin: 0;
  padding: 0;
}

.hero-content{
  position:relative;
  z-index:2;
}



.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  backdrop-filter: blur(14px); 
  background: rgba(0,0,0,0.35); 
  z-index:1;
}

/* HERO TEXT ANIMATION FIXED */
/* HERO TEXT SCROLL EFFECT */
.hero-content h1,
.hero-content p,
.hero-content .btn-main{
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}



/* delay spesifik untuk teks dan button */
.hero-content h1 {
  animation-delay: 0.40s;
}

.hero-content p {
  animation-delay: 0.9s;
}

.btn-main {
  animation-delay: 0.4s;
}



/* keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* tambahan font & warna */
.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: white;
}

.hero-content p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 35px;
  color: #f1f1f1;
  text-transform: uppercase;
}

.btn-main {
  background: red;
  padding: 14px 15px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-main:hover {
  background: #fff;
  color: red;
  border: 2px solid red;
}



.intro-section{
  padding:60px 8%;
  background:#fff;
}

.intro-container{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:40px;
}

@media(max-width:768px){

.intro-section{
  padding:40px 6%;
}

.intro-text{
  font-size:14px;
}

.intro-text h2{
  font-size:22px;
}

}

.intro-text{
  flex:1 1 500px;
  font-size:14px;
  line-height:1.8;
  color:#444;
}
.intro-text h2{
  font-size:30px; /* heading lebih kecil */
  margin-bottom:20px;
}

.intro-image{
  flex:1 1 400px;
}

.intro-image img{
  width:100%;
  border-radius:40px;
  object-fit:cover;
}

/* Responsive */
@media screen and (max-width:900px){
  .intro-container{
    flex-direction:column;
    text-align:center;
  }

  .intro-text{
    font-size:18px;
  }

  .intro-text h2{
    font-size:26px;
  }
  

  .intro-image img{
    width:100%;
    margin-top:20px;
  }
}
.btn-intro {
  display: inline-block;
  padding: 10px 15px;
  background-color: #FF0000; /* merah */
  color: #fff; /* teks putih */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-intro:hover {
  background-color: #fff; /* putih bila hover */
  color: #FF0000; /* teks jadi merah */
  border: 1px solid #FF0000; /* optional, untuk nampak button */
}


/* Responsive supaya button center bila mobile */
@media screen and (max-width:900px){
  .btn-intro {
    margin: 20px auto 0;
  }
}


/* PRODUCT SLIDER */

.product-slider{
  position: relative;
  padding: 140px 8%;
  min-height: 50vh;   /* ðŸ”¥ NI PUNCA UTAMA */
  background: linear-gradient(135deg, #b80000, #ff1e1e);
  overflow: hidden;
  display: flex;
  align-items: center;
}


.premium-blur{
  position:absolute;
  border-radius:50%;
  filter: blur(140px);
  opacity:0.45;
  z-index:0;
}

.blur-1{
  width:320px;
  height:320px;
  background:#ffffff;
  top:15%;
  left:10%;
  animation: floatSlow 10s ease-in-out infinite;
}

.blur-2{
  width:420px;
  height:420px;
  background:#ffb3b3;
  bottom:10%;
  right:12%;
  animation: floatSlow 14s ease-in-out infinite reverse;
}


.slider{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}


.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: translateX(40px);
  transition: all 0.8s ease;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:0 60px;
  z-index:2; /* penting */
}

@media(max-width:768px){

.slide{
padding:0 20px;
gap:20px;
}

.slide-text h3{
font-size:26px;
}

.slide-text p{
font-size:10px;
}

}

.slide.active{
  opacity:1;
  transform: translateX(0);
}

/* IMAGE */
.slide img{
  width:100%;
  height:auto; /* maintain ratio */
  max-width:500px; /* optional supaya tak terlalu besar */
  border-radius:20px;
  box-shadow:0 15px 30px rgba(0,0,0,0.25);
  object-fit: contain; /* adjust supaya seluruh gambar muat */
}

.bg-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:140px;
  font-weight:700;
  font-family:'Playfair Display', serif;
  color:rgba(255,255,255,0.07);
  white-space:nowrap;
  z-index:0;
  pointer-events:none;
}


/* TEXT */
.slide-text h3{
  font-size:50px;
  font-family:'Playfair Display', serif;
  margin-bottom:30px;
  color:#fff; /* tukar ke putih */
}

.slide-text p{
  font-size:12px;
  letter-spacing:2px;
  color:#ffeaea; /* putih lembut */
  text-transform:uppercase;
}

/* BLUR SHAPE */
.blur-shape{
  position:absolute;
  border-radius:50%;
  background: rgba(255,255,255,0.15);
  filter: blur(80px);
  z-index:1;
}

/* RESPONSIVE */
@media(max-width:900px){
  .slide{
    flex-direction:column;
    text-align:center;
    padding:0 30px;
  }

  .slide img{
    width:100%;
    height:300px;
  }
}

@media(max-width:768px){

.slide img{
  max-width:280px;
}

.slide-text h3{
  font-size:32px;
}

}

@keyframes floatSlow{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-25px); }
  100%{ transform:translateY(0); }
}


.blur-shape{
  animation: floatSlow 8s ease-in-out infinite;
}


/* responsive */
@media(max-width:900px){
  .slide{
    flex-direction:column;
    text-align:center;
    padding:0 30px;
  }

  .slide img{
    width:100%;
    height:200px;
  }
}


/* FEATURES SECTION */
.features{
  padding:100px 8%;
  background: 
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("images/background.jpeg") center/cover no-repeat;
}


.features-container{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}

.feature-card{
  background:white;
  border-radius:20px;
  padding:40px 30px;
  text-align:center;
  transition:0.4s ease;

  opacity:0;
  transform: translateY(50px);
}

.feature-card h3{
  color:red;
  font-size:18px;
  margin-bottom:15px;
}

.feature-card p{
  color:#0f0f0f;
  font-size:14px;
  line-height:1.6;
}

.feature-card:hover{
  transform: translateY(-10px) scale(1.03);
  background:rgba(255,0,0,0.15);
}

/* ACTIVE STATE (scroll animation) */
.features.active .feature-card{
  opacity:1;
  transform: translateY(0);
}

.features.active .feature-card:nth-child(1){ transition-delay:0.1s;}
.features.active .feature-card:nth-child(2){ transition-delay:0.2s;}
.features.active .feature-card:nth-child(3){ transition-delay:0.3s;}
.features.active .feature-card:nth-child(4){ transition-delay:0.4s;}
.features.active .feature-card:nth-child(5){ transition-delay:0.5s;}
.features.active .feature-card:nth-child(6){ transition-delay:0.6s;}


.feature-card{
  display:block;
  text-decoration:none;
  color:#fff;
  background:white;
  padding:35px 30px;
  border-radius:18px;
  transition:all 0.4s ease;
  backdrop-filter: blur(6px);
}

.feature-card:hover{
  transform: translateY(-10px) scale(1.03);
  background: rgba(255,0,0,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}


/* RESPONSIVE */
@media(max-width:900px){
  .features-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .features-container{
    grid-template-columns:1fr;
  }

  
/* ================= BACKGROUND ================= */
.contact-bg{
  min-height:100vh;
  background:linear-gradient(-45deg,#b71c1c,#111,#c62828,#000);
  background-size:400% 400%;
  animation:bgMove 12s ease infinite;
  padding:90px 8% 80px; /* naikkan content */
}


/* Optional: overlay tambahan untuk lebih gelap */
.contact-bg::after {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: rgba(0, 0, 0, 0.3); /* overlay gelap ringan */
}

.contact-title{
  text-align:center;
  color:#fff;
  margin-bottom:50px;
}

.contact-title h1{
  font-size:42px;
  font-weight:700;
  letter-spacing:-0.5px;
}

.contact-title p{
  font-size:13px;
  letter-spacing:0.3px;
  opacity:.85;
  margin-top:8px;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
}

.info-item i{
  font-size:16px;
  color:#b71c1c;
  margin-top:3px;
}

.info-item p{
  font-size:13px;   /* <—— ini yang awak minta */
  line-height:1.6;
  color:#333;
}


/* ================= CORPORATE CONTACT SECTION ================= */
.contact-corporate {
    position: relative; /* supaya content di atas background */
    padding: 80px 60px;
    color: #fff; /* teks putih supaya jelas */
    font-family: 'Poppins', sans-serif;
}

.contact-top {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

}

/* INFO BOX */
.contact-info-box{
    flex:1 1 220px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius:20px;
    padding:40px;
    color:#fff;
    transition:0.4s ease;
}

.contact-info-box h2{
    font-size:20px;
    margin-bottom:25px;
    color:red;
}

.address-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.address-card{
    background: rgba(255,255,255,0.25);
    border-radius:15px;
    padding:2px;
    transition:0.3s;
    color:#111;
	font-size:12px;
}

.address-card:hover{
    background: rgba(255,0,0,0.15);
}

/* SOCIAL ICONS */
.contact-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.contact-social img{
    width:50px;
    height:50px;
    transition:0.3s;
}

.contact-social a:hover img{
    transform: translateY(-5px) scale(1.1);
}

.contact-action-btn{
  display:inline-block;
  margin-top:35px;
  background:red;
  color:#fff;
  padding:16px 40px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  transition:.35s ease;
  box-shadow:0 18px 40px rgba(255,0,0,.45);
}

.contact-action-btn:hover{
  background:#fff;
  color:red;
  transform:translateY(-5px);
}

/* MAP BOX */
.contact-map-box{
    flex:1 1 500px;
    background: #fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.contact-map-box h3{
    color:#111;
    margin-bottom:20px;
}

.contact-map-box iframe{
    width:100%;
    height:400px;
    border-radius:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .contact-top{
        flex-direction:column;
        gap:40px;
    }

    .address-grid{
        grid-template-columns:1fr;
    }
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 60px;
  height: 60px;

  background: #25D366; /* official WhatsApp green */
  border-radius: 50%; /* perfect bulat */

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* shadow clean */
  transition: 0.3s ease;

  z-index: 999;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* hover effect (nampak premium sikit) */
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.product-page{
  padding:80px 8%;
}

.page-title{
  text-align:center;
  font-size:40px;
  margin-bottom:50px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.product-card{
  background:#fff;
  padding:20px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.4s;
}

.product-card:hover{
  transform:translateY(-8px);
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:contain;
}

.btn-details{
  display:inline-block;
  margin-top:15px;
  padding:10px 24px;
  background:#c0184f;
  color:white;
  border-radius:30px;
  text-decoration:none;
}

/* DETAIL PAGE */
.detail-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  padding:80px 8%;
}

.product-image img{
  width:100%;
  border-radius:20px;
}

.spec li{
  margin:10px 0;
}

.enquiry-form input,
.enquiry-form textarea{
  width:100%;
  padding:12px;
  margin:8px 0;
  border-radius:8px;
  border:1px solid #ccc;
}

.enquiry-form button{
  width:100%;
  padding:14px;
  margin-top:10px;
  background:#c0184f;
  color:white;
  border:none;
  border-radius:30px;
}

.product-wrapper{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:40px;
  padding:60px 6%;
}

/* SIDEBAR */
.product-sidebar{
  background:#c0184f;
  padding:25px;
  border-radius:10px;
}

.product-sidebar h3{
  color:#fff;
  margin-bottom:20px;
}

.product-sidebar a{
  display:block;
  color:white;
  padding:10px 0;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.3);
}

.product-sidebar a:hover{
  background:rgba(255,255,255,.15);
  padding-left:10px;
}

/* PRODUCT GRID */
.product-content h1{
  margin-bottom:24px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.product-card{
  background:white;
  padding:20px;
  text-align:center;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.4s;
}

.product-card:hover{
  transform:translateY(-8px);
}

.product-card img{
  width:100%;
  height:200px;
  object-fit:contain;
}

.btn-details{
  display:inline-block;
  margin-top:10px;
  padding:8px 20px;
  background:#c0184f;
  color:white;
  border-radius:20px;
  text-decoration:none;
}
.contact-section {
  padding: 80px 10%;
  font-family: 'Poppins', sans-serif;
  position: relative; /* penting untuk pseudo-element */
  overflow: hidden;   /* elak blur keluar kotak */
}

/* Pseudo-element untuk background gambar + blur */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: url("images/backgroundcontact.jpeg") center/cover no-repeat;
  filter: blur(8px) brightness(0.6); /* blur + gelapkan sikit */
  z-index: -1; /* pastikan di belakang content */
}


/* GET IN TOUCH */
.get-in-touch {
  background: #b71c1c; /* deep red */
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.get-in-touch h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.get-in-touch p {
  font-size: 14px;
  line-height: 1.6;
}

/* MAPS */
.maps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.map-box{
  border-radius:14px;
  overflow:hidden;
  border:3px solid #b71c1c;
}

.map-box iframe{
  width:100%;
  height:200px;
  border:0;
}


/* FORM FULL WIDTH */
.contact-form-full {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  font-size:10px;
}

.contact-form-full h2 {
  margin-bottom: 10px;
  color: #b71c1c;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 10px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b71c1c;
  box-shadow: 0 0 8px rgba(183,28,28,0.2);
  outline: none;
}

.btn-submit {
  background: linear-gradient(45deg, #b71c1c, #d32f2f);
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(183,28,28,0.4);
}

/* RESPONSIVE */
@media(max-width:900px){
  .maps-container {
    grid-template-columns: 1fr;
  }

  .get-in-touch, .contact-form-full {
    padding: 10px;
  }
}



/* LOGIN BUTTON & DROPDOWN */
.btn-login {
  background: linear-gradient(45deg, #b71c1c, #d32f2f);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183,28,28,0.5);
}

/* Dropdown */
.user-menu {
  position: relative;
}

.user-menu .dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s ease;
  min-width: 150px;
  z-index: 100;
}

.user-menu:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu .dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.user-menu .dropdown li a:hover {
  background: #b71c1c;
  color: #fff;
}

/* ============================= */
/* LOGIN & REGISTER PREMIUM THEME */
/* ============================= */

.login-body{
  background:
    linear-gradient(135deg, rgba(0,0,0,.85), rgba(0,0,0,.9)),
    url("images/login-bg.jpg");
  background-size:cover;
  background-position:center;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Poppins',sans-serif;
}

/* BOX */
.login-container{
  background:#ffffff;
  width:400px;
  padding:45px 40px;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
  position:relative;
  overflow:hidden;
}

/* RED ACCENT BAR */
.login-container::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:#c1121f;
}

/* HEADING */
.login-container h2{
  margin-bottom:6px;
  font-weight:600;
  color:#0e0e0e;
}

.login-container p{
  font-size:14px;
  color:#666;
  margin-bottom:28px;
}

/* INPUT */
.login-container input{
  width:100%;
  padding:14px 15px;
  margin-bottom:15px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:14px;
  transition:.3s;
}

.login-container input:focus{
  outline:none;
  border-color:#c1121f;
  box-shadow:0 0 0 3px rgba(193,18,31,.15);
}

/* BUTTON */
.login-container button{
  width:100%;
  padding:14px;
  background:#0e0e0e;
  color:#fff;
  border:none;
  border-radius:10px;
  cursor:pointer;
  font-weight:500;
  letter-spacing:.5px;
  transition:.3s;
}

.login-container button:hover{
  background:#c1121f;
}

/* LINKS */
.login-container a{
  color:#c1121f;
  text-decoration:none;
  font-weight:500;
}

.login-container a:hover{
  text-decoration:underline;
}

/* ERROR & SUCCESS */
.login-error{
  background:#ffe1e1;
  color:#b00000;
  padding:10px;
  border-radius:8px;
  margin-bottom:15px;
  font-size:13px;
}

.login-success{
  background:#e7fff1;
  color:#006b3c;
  padding:10px;
  border-radius:8px;
  margin-bottom:15px;
  font-size:13px;
}

/* SMALL FOOTER TEXT */
.login-container .small-text{
  margin-top:18px;
  font-size:12px;
  color:#555;
  text-align:center;
}


.shop-layout{
  display:flex;
  max-width:1400px;
  margin:40px auto;
  gap:30px;
}

/* SIDEBAR */
.sidebar{
  width:260px;
}

.search-box{
  background:#d81b60;
  padding:15px;
  color:#fff;
}

.search-box h4{
  margin-bottom:10px;
}

.search-box input{
  width:100%;
  padding:8px;
  border:none;
  margin-bottom:8px;
}

.search-box button{
  width:100%;
  padding:8px;
  background:#fff;
  border:none;
  cursor:pointer;
  font-weight:bold;
}

.category-list{
  background:#d81b60;
  list-style:none;
}

.category-list li a{
  display:block;
  padding:12px 15px;
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.2);
}

.category-list li a:hover{
  background:#b71c1c;
}

/* CONTENT */
.content{
  flex:1;
}

.breadcrumb{
  color:#777;
  font-size:14px;
}

.back-link{
  display:inline-block;
  margin:10px 0;
  color:#000;
  text-decoration:none;
  font-weight:500;
}

.content h1{
  margin:20px 0;
  font-size:28px;
}

/* PRODUCT GRID */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.product-card{
  background:#fff;
  padding:15px;
  border-radius:10px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.product-card h4{
  margin:10px 0;
}

.product-card a{
  display:inline-block;
  padding:8px 20px;
  background:#b71c1c;
  color:#fff;
  text-decoration:none;
  border-radius:20px;
  font-size:13px;
}

/* Navbar container */
.navbar {
    background: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px; /* kecilkan padding atas/bawah untuk navbar lebih pendek */
    height: 80px; /* tetapkan tinggi tetap */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.navbar .logo img {
    height: 75px; /* logo tetap besar */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Pastikan layout navbar tak terganggu */
.navbar .logo {
    display: flex;
    align-items: center;
    position: relative;
}

/* TOP BAR */
.topbar{
  background:#111;
  color:#fff;
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.topbar span{
  color:#b71c1c;
}

.logout{
  color:#fff;
  text-decoration:none;
  background:#b71c1c;
  padding:10px 20px;
  border-radius:30px;
  transition:.3s;
}

.logout:hover{
  background:#fff;
  color:#b71c1c;
  box-shadow:0 8px 25px rgba(0,0,0,.3);
}

/* DASHBOARD GRID */
.dashboard{
  padding:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
  animation:fadeUp .8s ease;
}

/* CARD */
.card{
  background:#fff;
  padding:35px 25px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
  transition:.4s;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:#b71c1c;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

.card h3{
  color:#111;
  margin-bottom:10px;
}

.card p{
  color:#555;
  margin-bottom:20px;
  font-size:14px;
}

.card a{
  text-decoration:none;
  background:#b71c1c;
  color:#fff;
  padding:10px 22px;
  border-radius:25px;
  font-size:14px;
  transition:.3s;
}

.card a:hover{
  background:#111;
}



#introPuzzle{
  position:fixed;
  inset:0;
  background:#000;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
}

/* LOGO PUZZLE */
.logo-puzzle{
  width:400px;
  height:240px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:repeat(3,1fr);
}

.logo-puzzle span{
  background:url('images/logomemento.png') no-repeat;
  background-size:300% 300%;
  opacity:0;
  animation:puzzleFly .9s ease forwards;
}

/* POTONG LOGO BETUL-BETUL */
.logo-puzzle span:nth-child(1){background-position:0% 0%;animation-delay:.1s}
.logo-puzzle span:nth-child(2){background-position:50% 0%;animation-delay:.2s}
.logo-puzzle span:nth-child(3){background-position:100% 0%;animation-delay:.3s}

.logo-puzzle span:nth-child(4){background-position:0% 50%;animation-delay:.4s}
.logo-puzzle span:nth-child(5){background-position:50% 50%;animation-delay:.5s}
.logo-puzzle span:nth-child(6){background-position:100% 50%;animation-delay:.6s}

.logo-puzzle span:nth-child(7){background-position:0% 100%;animation-delay:.7s}
.logo-puzzle span:nth-child(8){background-position:50% 100%;animation-delay:.8s}
.logo-puzzle span:nth-child(9){background-position:100% 100%;animation-delay:.9s}

/* GERAK MASUK MACAM PUZZLE */
@keyframes puzzleFly{
  from{
    transform:translate(
      calc(-150px + 300px * random()),
      calc(-150px + 300px * random())
    ) scale(.4);
    opacity:0;
  }
  to{
    transform:translate(0,0) scale(1);
    opacity:1;
  }
}

/* EXIT */
.intro-hide{
  animation:fadeOut .8s ease forwards;
}

@keyframes fadeOut{
  to{opacity:0;visibility:hidden}
}
/* ===== CLIENTS ===== */
.clients-section{
  padding:80px 0;
  background:#fff;
  text-align:center;
}

.clients-section h2{
  color:#c2182b;
  font-size:32px;
  letter-spacing:2px;
  margin-bottom:50px;
}

.clients-slider{
  overflow:hidden;
  position:relative;
  width:100%;
}

.clients-track{
  display:flex;
  align-items:center;
  gap:50px;
  width:max-content;
  animation:slide 25s linear infinite;
}

.clients-track img{
  height:100px;
  object-fit:contain;
  opacity:.9;
  transition:.3s;
}

@media(max-width:768px){

.clients-track img{
  height:60px;
}

}

.clients-track img:hover{
  opacity:1;
  transform:scale(1.08);
}

.clients-slider:hover .clients-track{
  animation-play-state:paused;
}

@keyframes slide{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}
  
  
 .contact-corporate{
  max-width:1200px;
  margin:auto;
}


@media(max-width:768px){

.menu{
  gap:12px;
  font-size:12px;
}

.btn-login,
.btn-logout{
  padding:6px 12px;
  font-size:12px;
}

.user-name{
  display:none;
}

}
.footer {
  background: #2c2c2c; /* pink macam contoh */
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

.footer p {
  margin: 5px 0;
}

.footer b {
  font-weight: 600;
}

.powered {
  font-size: 13px;
  opacity: 0.9;
}

.product-card img {
  width: 100%;
  height: 250px; /* boleh adjust 250-300px ikut design */
  object-fit: cover;
  border-radius: 15px;
}