/* === NAVBAR UMUM === */
.navbar {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

/* === Menu navbar (HOME, EKSLUSIF, KATEGORI, dll) pakai Roboto === */
.navbar-nav .nav-link,
.dropdown-item {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
}

/* === Hanya brand text pakai Aclonica === */
.logo-text {
  font-family: 'Aclonica', sans-serif;
  font-size: 20px;
  color: #fff;
}

/* === Default text lain tetap pakai Bootstrap === */
body, .navbar, .nav-link, .dropdown-item {
  font-family: Arial, Helvetica, sans-serif; 
}


.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.logo-img {
  height: 40px;
}
 
/* === GAMBAR === */
.carousel-item img {
  width: 100%;
  height: 500px;       /* batas tinggi */
  object-fit: cover;   /* auto crop */
  margin-top: 0.5rem;
}

/* === FONT DI ATAS GAMBAR === */

.gratis-ongkir h1{
  text-align: center; 
  margin-top: 1rem; 
  font-family: 'Rowdies'; 
  font-size: large;
}

.logo-text {
  font-size: 20px;
  color: #fff;
  margin-left: 8px;
}

/* === NAV LINKS === */
.navbar-nav .nav-link {
  color: #fff; /* default putih */
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff0000; /* hover jadi merah */
}

/* === GARIS MERAH DI BAWAH MENU === */
.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);  
  width: 0;
  height: 2px;
  background-color: #ff0000;
  transition: width 0.2s linear;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* === DROPDOWN === */
.dropdown-menu {
  border-radius: 6px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-top: 8px;
}

.dropdown-item {
  font-size: 15px;
  padding: 8px 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #ff0000; 
}

/* === HAPUS PANAH DROPDOWN === */
.dropdown-toggle::after {
  display: none !important;
}

/* === SEARCH BOX === */
form .form-control {
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 14px;
}

form .btn {
  border-radius: 20px;
  font-size: 14px;
  padding: 6px 14px;
}

/* === CART ICON === */
.cart-icon {
  height: 28px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: rgb(255, 0, 0);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
}

/* Section Brand */
.brands-section {
  border: 2px solid #d1ccc4;
  border-radius: 4px;
  overflow: hidden;
}

.brands-header {
  background-color: #E5E0D8; /* warna di judul */
  margin-bottom: 2%;
}

.brands-header h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #333;
}

/* Logo brand */
.brand-logo {
  max-width: 100px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* WHAT'S NEW Section */
.whats-new h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #111;
}

/* Product card */
.product-card {
  height: 100%; 
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.1s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Product image */
.product-card img {
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 10px;
}

/* Product info */
.product-info h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.product-info p {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  min-height: 40px; 
}

.product-info .price {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

/* SHOP BY SPORT Section */
.shop-sport h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #003366; 
}

.sport-card {
  position: relative;
  overflow: hidden;
}

.sport-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sport-card:hover img {
  transform: scale(1.1); 
}

.sport-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* Brand Row */
.brand-row {
  text-align: center;  /* gambar otomatis di tengah */
}

.brand-row img {
  width: 100px;
  margin: 0px 60px 60px;  /* jarak kiri kanan */
}

/* Recomended for Section */
.rekomended h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #111;
}

/* Product card */
.product-card {
  height: 100%; 
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.1s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Product image */
.product-card img {
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 10px;
}

/* Product info */
.product-info h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.product-info p {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  min-height: 40px; 
}

.product-info .price {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

/* === GAMBAR di atas rekomended for you === */
.poster-besar img {
  width: 100%;
  height: 500px;       /* batas tinggi */
  object-fit: cover;   /* auto crop */
  margin-top: 0.5rem;
}




























/* === FOOTER === */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 0 20px;
  font-family: 'Roboto', sans-serif;
}

.site-footer h6 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 8px;
}

.site-footer .footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
  color: #ff0000; /* hover merah */
}

.site-footer hr {
  border-top: 1px solid #ffffff;
  margin: 20px 0;
}

.footer-bottom {
  font-size: 13px;
  color: #aaa;
}

.footer-bottom .contact-info {
  margin-bottom: 8px;
}

.footer-bottom .contact-info span {
  margin: 0 12px;
  font-size: 14px;
  color: #bbb;
}

.footer-bottom .contact-info i {
  margin-right: 6px;
  color: #fff;
}

.footer-bottom .copyright {
  font-size: 12px;
  color: #777;
}

/* Footer ukuran lebih besar */
.footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding-top: 60px;   /* tambah tinggi atas */
  padding-bottom: 60px;/* tambah tinggi bawah */
  min-height: 300px;   /* pastikan footer tinggi minimal */
}
























