@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --lv-font-title: 'Barlow Condensed', sans-serif;
  --lv-font-body: 'Space Mono', monospace;
  --lv-bg-main: #0a0a0c;
  --lv-bg-app: #121215;
  --lv-bg-card: #1c1c22;
  --lv-border: #b45309;
  --lv-accent: #ea580c;
  --lv-text-primary: #b45309;
  --lv-text-secondary: #cbd5e1;
  --lv-text-muted: #64748b;
  --lv-text-white: #ffffff;
  --lv-glow: 0 0 15px rgba(180, 83, 9, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--lv-font-body);
  background-color: var(--lv-bg-main);
  color: var(--lv-text-secondary);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* App Wrapper */
.lv-app {
  border: 8px ridge #3f3f46;
  background-color: var(--lv-bg-app);
  padding: 30px;
  margin: 30px auto;
  width: 100%;
  max-width: 1200px;
  box-shadow: var(--lv-glow);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px);
}

.lv-header {
  border-bottom: 4px solid var(--lv-border);
  padding-bottom: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lv-header__logo-link {
  text-decoration: none;
}

.lv-header__logo-text {
  font-family: var(--lv-font-title);
  font-size: 32px;
  color: var(--lv-text-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lv-header__logo-text span {
  color: var(--lv-accent);
}

.lv-header__logo-sub {
  font-size: 10px;
  color: var(--lv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
}

.lv-nav__list {
  display: flex;
  list-style: none;
  gap: 15px;
}

.lv-nav__link {
  color: var(--lv-text-secondary);
  text-decoration: none;
  font-family: var(--lv-font-title);
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(180, 83, 9, 0.3);
  background: var(--lv-bg-main);
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

.lv-nav__link:hover, .lv-nav__link--active {
  color: var(--lv-accent);
  border-color: var(--lv-accent);
  box-shadow: var(--lv-glow);
}

/* Hero Section */
.lv-hero {
  background: #000;
  border: 2px solid #3f3f46;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.lv-hero__title {
  font-family: var(--lv-font-title);
  font-size: 36px;
  color: var(--lv-text-white);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.lv-hero__desc {
  font-size: 14px;
  color: var(--lv-text-muted);
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.lv-hero__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* General Sections */
.lv-section {
  margin-bottom: 50px;
}

.lv-section__title {
  font-family: var(--lv-font-title);
  font-size: 24px;
  color: var(--lv-accent);
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* Buttons */
.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--lv-font-title);
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--lv-border);
  background-color: var(--lv-bg-main);
  color: var(--lv-text-secondary);
  text-transform: uppercase;
}

.lv-btn:hover {
  background-color: var(--lv-border);
  color: var(--lv-text-white);
}

.lv-btn--primary {
  background-color: var(--lv-accent);
  border-color: var(--lv-accent);
  color: var(--lv-text-white);
}

.lv-btn--primary:hover {
  background-color: var(--lv-bg-main);
  color: var(--lv-accent);
}

.lv-btn--sm {
  padding: 8px 16px;
  font-size: 11px;
}

.lv-btn--lg {
  padding: 16px 32px;
  font-size: 14px;
}

/* Grid Layout */
.lv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* Carousel Layout */
.lv-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border: 2px solid #3f3f46;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
  background: var(--lv-bg-card);
}
.lv-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.lv-carousel-track .lv-card {
  min-width: 100%;
  border: none;
  border-right: 2px solid #3f3f46;
  box-shadow: none;
}
.lv-carousel-track .lv-card:last-child {
  border-right: none;
}
.lv-carousel-track .lv-card:hover {
  transform: none; /* disable hover lift inside carousel to prevent clipping */
  background: rgba(234, 88, 12, 0.05);
}
.lv-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--lv-bg-main);
  border: 2px solid var(--lv-border);
  color: var(--lv-accent);
  font-family: var(--lv-font-title);
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.lv-carousel-btn:hover {
  background: var(--lv-border);
  color: var(--lv-text-white);
}
.lv-carousel-btn--prev { left: 10px; }
.lv-carousel-btn--next { right: 10px; }

@media(min-width: 768px) {
  .lv-carousel-track .lv-card { min-width: 50%; }
}
@media(min-width: 1024px) {
  .lv-carousel-track .lv-card { min-width: 33.33333%; }
}

/* Cards */
.lv-card {
  background: var(--lv-bg-card);
  border: 2px solid #3f3f46;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
  height: 100%;
}

.lv-card:hover {
  border-color: var(--lv-accent);
  box-shadow: var(--lv-glow);
  transform: translateY(-4px);
}

.lv-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 2px solid #3f3f46;
}

.lv-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.lv-card:hover .lv-card__img {
  transform: scale(1.05);
}

.lv-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lv-card__category {
  font-family: var(--lv-font-title);
  font-size: 12px;
  color: var(--lv-text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lv-card__title {
  font-family: var(--lv-font-title);
  font-size: 20px;
  color: var(--lv-text-white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.lv-card__desc {
  font-size: 13.5px;
  color: var(--lv-text-secondary);
  margin-bottom: 20px;
}

.lv-card__stats {
  border-top: 1px dashed rgba(180, 83, 9, 0.3);
  padding-top: 15px;
  margin-top: auto;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.lv-card__actions {
  display: flex;
  gap: 12px;
}

.lv-card__actions .lv-btn {
  flex: 1;
  text-align: center;
}

/* Reviews */
.lv-review {
  background: var(--lv-bg-card);
  border: 2px solid #3f3f46;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
}

.lv-review::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 10px;
  background: #3f3f46;
}

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

.lv-review__author {
  display: block;
  margin-top: 10px;
  font-family: var(--lv-font-title);
  font-size: 12px;
  color: var(--lv-accent);
}

/* Accordion */
.lv-accordion-wrap {
  background: var(--lv-bg-card);
  border: 2px solid #3f3f46;
  padding: 25px;
}

.lv-accordion__item {
  border-bottom: 1px solid rgba(180, 83, 9, 0.2);
  padding: 10px 0;
}

.lv-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--lv-text-white);
  font-family: var(--lv-font-title);
  font-size: 15px;
  padding: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.lv-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.lv-accordion__content p {
  padding: 10px 12px 20px 12px;
  font-size: 14px;
  color: var(--lv-text-secondary);
}

.lv-accordion__item[data-open="true"] .lv-accordion__content {
  max-height: 200px;
}

/* Footer */
.lv-footer {
  margin-top: auto;
  border-top: 4px solid var(--lv-border);
  padding: 40px 0;
  text-align: center;
}

.lv-footer__nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-family: var(--lv-font-title);
  font-size: 13px;
  margin-top: 20px;
}

.lv-footer__link {
  color: var(--lv-text-primary);
  text-decoration: none;
}

/* Catalog */
.lv-catalog {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

.lv-catalog__sidebar {
  background: var(--lv-bg-card);
  border: 2px solid #3f3f46;
  padding: 24px;
}

.lv-catalog__search {
  width: 100%;
  background: var(--lv-bg-main);
  border: 1px solid var(--lv-border);
  color: var(--lv-text-white);
  padding: 12px;
  outline: none;
  font-family: var(--lv-font-body);
  font-size: 14.5px;
  margin-bottom: 25px;
}

.lv-catalog__filters {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lv-catalog__filter-btn {
  width: 100%;
  background: none;
  border: 1px solid transparent;
  color: var(--lv-text-secondary);
  font-family: var(--lv-font-title);
  font-size: 13px;
  text-align: left;
  padding: 12px;
  cursor: pointer;
}

.lv-catalog__filter-btn:hover, .lv-catalog__filter-btn--active {
  background: rgba(180, 83, 9, 0.1);
  color: var(--lv-accent);
}

/* Detail */
.lv-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}

.lv-detail__table {
  width: 100%;
  border-collapse: collapse;
}

.lv-detail__table th, .lv-detail__table td {
  padding: 12px;
  border-bottom: 1px dashed rgba(180, 83, 9, 0.15);
  text-align: left;
  font-size: 14px;
}

.lv-detail__table th {
  font-family: var(--lv-font-title);
  font-size: 11px;
  color: var(--lv-text-muted);
}

/* Misc details style */
.lv-content-box {
	background: var(--lv-bg-card);
	border: 2px solid #3f3f46;
	padding: 30px;
	box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
}
.lv-content-box h2 {
	color: var(--lv-accent);
	margin-bottom: 20px;
	font-family: var(--lv-font-title);
	text-transform: uppercase;
}
.lv-content-box p {
	margin-bottom: 15px;
}
.lv-content-box ul {
	margin-left: 20px;
	margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .lv-app { margin: 0; border: none; }
  .lv-header { flex-direction: column; gap: 15px; }
  .lv-nav__list { flex-wrap: wrap; justify-content: center; }
  .lv-catalog { grid-template-columns: 1fr; }
  .lv-detail { grid-template-columns: 1fr; }
}


.lv-input {
  width: 100%;
  background: var(--lv-bg-main);
  border: 1px solid var(--lv-border);
  color: var(--lv-text-white);
  padding: 12px;
  outline: none;
  font-family: var(--lv-font-body);
  margin-bottom: 20px;
}
