.site-archive {
  min-height: 100vh;
  padding: 25px 0;
}

.site-archive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.site-archive__header {
  text-align: center;
  margin-bottom: 40px;
}
.site-archive__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}
.site-archive__desc {
  color: #64748b;
  margin: 0;
}

/* Filter Toolbar */
.site-archive__toolbar {
  margin-bottom: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.site-archive__filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.site-archive__filter-group {
  flex-grow: 1;
  position: relative;
  min-width: 200px;
}

.site-archive__filter-group--search {
  flex-grow: 2;
}

/* Filter Inputs */
.site-archive__input,
.site-archive__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #334155;
  background-color: #fff;
  outline: none;
  transition: 0.2s;
  height: 48px; /* Đồng bộ chiều cao */
  box-sizing: border-box;
}

.site-archive__input {
  padding-left: 40px;
} /* Chừa chỗ cho icon */

.site-archive__search-icon {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #94a3b8;
  pointer-events: none;
}

.site-archive__input:focus,
.site-archive__select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Product Grid */
.site-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  min-height: 200px;
  transition: opacity 0.2s;
}

/* Product Card */
.site-archive__card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.site-archive__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.site-archive__card-thumb {
  position: relative;
  padding-top: 75%;
  background: #f1f5f9;
}

.site-archive__card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-archive__card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-archive__card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.site-archive__card-cat {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 5px;
}
.site-archive__card-cat a {
  text-decoration: none;
  color: inherit;
}

.site-archive__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.4;
}
.site-archive__card-title a {
  text-decoration: none;
  color: #0f172a;
  transition: 0.2s;
}
.site-archive__card-title a:hover {
  color: #2563eb;
}

.site-archive__card-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: #f1f5f9;
  color: #0f172a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.2s;
}

.site-archive__card-btn:hover {
  background: #2563eb;
  color: #fff;
}

/* Load More */
.site-archive__pagination {
  text-align: center;
}

.site-archive__btn-load {
  padding: 12px 30px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-archive__btn-load:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.site-archive__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  background: #fff;
  border-radius: 12px;
  color: #64748b;
  border: 1px dashed #cbd5e1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .site-archive__filters {
    flex-direction: column;
    align-items: stretch;
  }
  .site-archive__filter-group {
    min-width: 100%;
  }
}

.btn-load-more {
  background: var(--color-theme);
  color: #fff;
  padding: 12px 32px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/*.btn-load-more:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
*/
.btn-load-more:active {
  transform: translateY(0);
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Loading Spinner */
.spinner {
  animation: rotate 2s linear infinite;
  width: 18px;
  height: 18px;
}

.spinner circle {
  stroke: #fff;
  stroke-width: 6;
  stroke-dasharray: 1, 150;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

:root {
  --color-theme: #ee4d2d;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  background: #f8f9fa;
  color: #000;
  font-weight: 350;
}
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}
strong,
b {
  font-weight: 600;
}
hr {
  border: 0;
  border-top: 1px solid #ddd;
}

:root {
  --color-primary: #0f172a;
  --color-accent: #3b82f6;
  --color-text: #334155;
  --color-bg: #ffffff;
  --color-border: #e2e8f0;
  --height-header: 70px;
  --spacing-container: 1.5rem;
  --z-index-header: 1000;
}

.icon-svg {
  width: 26px;
  height: 26px;
  display: block;
  stroke-width: 1.2;
}

.overlay {
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.site-header__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 1001;
}

.site-logo__icon {
  color: var(--color-theme);
}

.site-nav {
  position: fixed;
  top: 0;
  right: -65%;
  width: 65%;
  height: 100%;
  background: #fff;
  padding: calc(var(--height-header) + 2rem) 2rem 2rem;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.05);
  z-index: 1001;
}

.site-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-nav__link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--color-theme);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-actions__btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.site-actions__btn:hover {
  color: var(--color-accent);
}

.site-actions__badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background-color: var(--color-theme);
  color: white;
  font-size: 0.65rem;
  font-weight: 400;
  padding: 0.15rem 0.35rem;
  border-radius: 9999px;
  border: 2px solid #fff;
}

.site-actions__btn--user {
  display: none;
}

.site-actions__badge.hidden {
  display: none;
  transform: scale(0);
}

/* Animation "Bounce" khi thêm hàng */
@keyframes bounceScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

.badge-bounce {
  animation: bounceScale 0.3s ease-in-out;
}

.site-actions__toggle {
  z-index: 1001;
}

@media (min-width: 1024px) {
  .site-nav {
    position: static;
    height: auto;
    width: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: block;
  }

  .site-nav__list {
    flex-direction: row;
    gap: 2rem;
  }

  .site-nav__link {
    font-size: 0.95rem;
  }

  .site-actions__toggle {
    display: none;
  }

  .site-actions__btn--user {
    display: flex;
  }
}

.site-main {
  width: 100%;
  overflow-x: hidden;
}

.site-main__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* HERO SECTION */
.hero {
  padding: 2rem 0;
  /* background: radial-gradient(circle at top right, #f1f5f9 0%, #ffffff 40%); */
}

.hero__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.hero__content {
  text-align: center;
  max-width: 600px;
}

.hero__badge {
  display: inline-block;
  background-color: #eff6ff;
  color: var(--color-theme);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: 2rem;
  line-height: 1.2;
  color: #0f172a;
  font-weight: 800;
  margin: 0 0 1rem 0;
  letter-spacing: -0.025em;
}

.hero__desc {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 2rem 0;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
}

.hero__btn:active {
  transform: scale(0.98);
}

.hero__btn--primary {
  background-color: var(--color-theme);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.hero__btn--primary:hover {
  background-color: #1d4ed8;
}

.hero__btn--outline {
  background-color: transparent;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.hero__btn--outline:hover {
  background-color: #f8fafc;
  color: #0f172a;
}

.hero__trust {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero__visual {
  width: 100%;
  max-width: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 30% 30%, rgb(var(--color-theme) / 0.35), transparent 45%),
    radial-gradient(circle at 70% 65%, rgb(var(--color-theme) / 0.2), transparent 55%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

/* Image 3D */
.hero__visual img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;

  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-12deg) translateZ(50px);

  filter: drop-shadow(0 45px 70px rgb(var(--color-theme) / 0.35))
    drop-shadow(0 15px 25px rgb(var(--color-theme) / 0.2));

  animation: heroFloat 7s ease-in-out infinite;
  transition: transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1),
    filter 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* Hover – nổi khối hơn, vẫn cùng tone */
.hero__visual:hover img {
  transform: rotateX(0deg) rotateY(0deg) translateZ(90px);

  filter: drop-shadow(0 70px 100px rgb(var(--color-theme) / 0.45))
    drop-shadow(0 25px 35px rgb(var(--color-theme) / 0.3));
}

/* Float animation – nhẹ, cao cấp */
@keyframes heroFloat {
  0% {
    transform: rotateX(10deg) rotateY(-12deg) translateZ(50px) translateY(0);
  }
  50% {
    transform: rotateX(6deg) rotateY(-6deg) translateZ(70px) translateY(-14px);
  }
  100% {
    transform: rotateX(10deg) rotateY(-12deg) translateZ(50px) translateY(0);
  }
}

/* FEATURES SECTION */
.features {
  padding: 3rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.features__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features__icon {
  width: 3rem;
  height: 3rem;
  background-color: #eff6ff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.features__icon svg {
  stroke: var(--color-theme);
  stroke-width: 2;
}

.features__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.features__desc {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

/* PRODUCTS SECTION */
.products {
  padding: 4rem 0;
}

.section-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 1rem;
  align-items: center;
}

.section-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30%;
  height: 2px;
  background: var(--color-theme);
  max-width: 150px;
}

.section-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.section-header__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-theme);
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Product Card */
.product-card {
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
}

.product-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-card__thumb a {
  display: block;
}
.product-card__thumb img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 600;
}

.product-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #0f172a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  z-index: 2;
}

.product-card__tag--new {
  background-color: #22c55e;
}

.product-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__meta {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-card__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.product-card__title a:hover {
  color: var(--color-theme);
}

.product-card__price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
  /* margin-bottom: 1rem; */
}

.product-card__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-theme);
}

.product-card__price--old {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.product-card__btn {
  padding: 5px 10px;
  border: solid 1px var(--color-theme);
  border-radius: 5px;
  color: var(--color-theme);
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.product-card__btn:hover {
  background-color: var(--color-theme);
  color: #ffffff;
}

/* CTA SECTION */
.cta-section {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.cta-section__box {
  background-color: #0f172a;
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(to bottom right, #0f172a, #1e293b);
}

.cta-section__title {
  font-size: 1.75rem;
  margin: 0 0 1rem 0;
  font-weight: 800;
}

.cta-section__desc {
  color: #cbd5e1;
  margin: 0 0 2rem 0;
  font-size: 1rem;
}

.cta-section__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto 1rem auto;
}

.cta-section__input {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #334155;
  background-color: #1e293b;
  color: #fff;
  font-size: 1rem;
}

.cta-section__input:focus {
  outline: 2px solid #3b82f6;
  border-color: transparent;
}

.cta-section__btn {
  padding: 0.875rem 1.5rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.cta-section__btn:hover {
  background-color: #2563eb;
}

.cta-section__note {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
}

/* RESPONSIVE DESKTOP (Tablet trở lên) */
@media (min-width: 768px) {
  .hero__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero__content {
    text-align: left;
    max-width: 50%;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__actions {
    flex-direction: row;
  }

  .features__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .features__item {
    align-items: flex-start;
    text-align: left;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section__form {
    flex-direction: row;
  }

  .cta-section__input {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-page {
  width: 100%;
  display: block;
}

.site-page__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 15px;
  width: 100%;
}

.site-page__header {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 15px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.site-page__header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30%;
  height: 2px;
  background: var(--color-theme);
  max-width: 150px;
}

.site-page__title {
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.025em;
}

.site-page__content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #334155;
  font-weight: 400;
}

.site-page__content h2,
.site-page__content h3,
.site-page__content h4 {
  color: #1e293b;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3;
}

.site-page__content h2 {
  font-size: 1.75rem;
}

.site-page__content h3 {
  font-size: 1.5rem;
}

.site-page__content p {
  margin-bottom: 1.5em;
}

.site-page__content ul,
.site-page__content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.site-page__content li {
  margin-bottom: 0.5em;
}

.site-page__content a {
  color: var(--color-theme);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.site-page__content a:hover {
  border-bottom-color: #2563eb;
}

.site-page__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
  display: block;
}

.site-page__content blockquote {
  border-left: 4px solid #cbd5e1;
  padding-left: 1.5em;
  margin: 2em 0;
  font-style: italic;
  color: #64748b;
}

.site-page__pagination {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  font-weight: 600;
}

.single-product {
  background-color: #ffffff;
  padding: 20px 0;
  min-height: 100vh;
}

.single-product__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.single-product__gallery {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f8fafc;
}

.single-product__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.single-product__sticky-wrapper {
  position: sticky;
  top: 32px;
}

.single-product__meta-top {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.single-product__meta-top a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.single-product__meta-top a:hover {
  color: #2563eb;
}

.single-product__title {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.single-product__excerpt {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 32px;
}

.single-product__price-box {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.single-product__price-label {
  font-size: 1rem;
  color: #64748b;
}

.single-product__price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-theme);
}

.single-product__actions {
  margin-bottom: 32px;
}

.single-product__btn-buy {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--color-theme);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.single-product__btn-buy:hover {
  background-color: #1d4ed8;
}

.single-product__btn-buy:active {
  transform: translateY(1px);
}

.edd_errors {
  margin-bottom: 20px;
  padding: 12px;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 6px;
  font-size: 0.9rem;
}

.single-product__features {
  list-style: none;
  padding: 24px;
  margin: 0;
  background-color: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.single-product__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
}

.single-product__features li:last-child {
  margin-bottom: 0;
}

.single-product__content {
  grid-column: 1 / -1;
  margin-top: 40px;
  border-top: 1px solid #e2e8f0;
  padding-top: 40px;
}

.single-product__content-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0f172a;
}

.single-product__editor-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #334155;
  max-width: 800px;
}

.single-product__editor-content h2,
.single-product__editor-content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #0f172a;
}

.single-product__editor-content ul {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.single-product__editor-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

@media (max-width: 991px) {
  .single-product__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-product__gallery {
    max-width: 100%;
  }

  .single-product__title {
    font-size: 2rem;
  }
}

.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  margin-top: auto;
}

.site-footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f8fafc;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.site-footer__logo svg {
  color: #3b82f6;
}

.site-footer__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  color: #cbd5e1;
  max-width: 300px;
}

.site-footer__socials {
  display: flex;
  gap: 1rem;
}

.site-footer__social-link {
  color: #94a3b8;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social-link:hover {
  color: var(--color-theme);
  transform: translateY(-2px);
}

.site-footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__link {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.site-footer__link:hover {
  color: var(--color-theme);
  padding-left: 0.25rem;
}

.site-footer__text {
  font-size: 0.95rem;
  color: #94a3b8;
}

.site-footer__bottom {
  background-color: #020617;
  padding: 1.5rem 0;
  border-top: 1px solid #1e293b;
}

.site-footer__bottom-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.site-footer__payment {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.site-footer__card {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.site-footer__card:hover {
  opacity: 1;
}

/* TABLET & DESKTOP */
@media (min-width: 768px) {
  .site-footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .site-footer__container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
