.lcp-wrapper {
  width: 100%;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lcp-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.lcp-wrapper * {
  box-sizing: border-box;
}

.lcp-wrapper a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/* IMAGE */
.lcp-image {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

/* TOP BAR */
.lcp-top {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

/* BADGE - Glassmorphism */
.lcp-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* SKU */
.lcp-sku {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

/* CONTENT */
.lcp-content {
  width: 100%;
  padding: 30px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

/* TEXT */
.lcp-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.lcp-sub {
  font-size: 14px;
  margin-top: 6px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lcp-desc {
  font-size: 14px;
  margin-top: 12px;
  color: #888;
  line-height: 1.6;
}

/* ARROW */
.lcp-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a1a1a;
  border: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lcp-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.lcp-wrapper:hover .lcp-arrow {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.lcp-wrapper:hover .lcp-arrow svg {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lcp-image {
    height: 300px;
  }
  .lcp-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .lcp-image {
    height: 250px;
  }
  .lcp-content {
    padding: 20px;
  }
  .lcp-top {
    top: 20px; 
    left: 20px; 
    right: 20px;
  }
  .lcp-title {
    font-size: 20px;
  }
  .lcp-sub {
    font-size: 12px;
  }
  .lcp-desc {
    font-size: 13px;
  }
  .lcp-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
