* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #eee;
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-weight: bold;
  font-size: 24px;
  color: #1e2d3d;
}

.logo-sub {
  font-size: 16px;
  color: #3da9fc;
  font-style: italic;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #1e2d3d;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.menu a:hover {
  color: #3da9fc;
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  border: 1px solid #eee;
  min-width: 180px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
}

.dropdown-menu li {
  padding: 8px 15px;
}

.dropdown-menu li a {
  font-size: 13px;
  color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}










/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* SLIDES CONTAINER */
.slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

/* SINGLE SLIDE */
.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.content h2 {
  color: white;
  font-size: 40px;
  background: rgba(0,0,0,0.4);
  padding: 10px 20px;
}

/* BUTTONS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }











/* ShortStory */

.card {
  width: 320px;
  border: 1px solid #ddd;
  font-family: Arial, sans-serif;
  background: #fff;
}

/* IMAGE */
.card-image {
  position: relative;
}

.card-image img {
  width: 100%;
  display: block;
}

/* BEST SELLER */
.badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: orange;
  color: white;
  padding: 8px 12px;
  font-weight: bold;
}

/* TOP CORNER */
.corner {
  position: absolute;
  top: 0;
  left: 0;
  background: #eaf3f8;
  padding: 10px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  font-size: 20px;
}

/* BODY */
.card-body {
  padding: 15px;
}

.card-body h3 {
  margin-bottom: 10px;
  color: #0b2a3c;
}

/* INFO */
.info {
  font-size: 14px;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

/* BOTTOM */
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* RATING */
.rating {
  color: orange;
  font-size: 16px;
}

.rating p {
  color: #555;
  font-size: 12px;
  margin: 2px 0 0;
}

/* PRICE */
.price {
  text-align: right;
}

.price small {
  display: block;
  color: #777;
}

.price strong {
  font-size: 22px;
  color: #0b2a3c;
}