@charset "UTF-8";
/* ==================================
   Variables
================================== */
:root {
  --primary: var(--loreva-primary);
  --text:#141414;
  --bg:#FFFFFF;
  --border:#ECECEC;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-weight: var(--loreva-font-weight);
  font-family: var(--loreva-body-font), sans-serif;
  font-size: var(--loreva-body-size);
  line-height: var(--loreva-line-height);
  color: var(--loreva-text);
  background: var(--loreva-bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--loreva-heading-font), sans-serif;
  color: var(--loreva-heading);
}

.hero-title {
  font-size: var(--loreva-heading-size);
}

h1 {
  font-size: var(--loreva-h1);
}

h2 {
  font-size: var(--loreva-h2);
}

h3 {
  font-size: var(--loreva-h3);
}

a {
  text-decoration: none;
}

/* ==================================
   admin
================================== */
.loreva-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.loreva-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 25px;
  border-radius: 16px;
}

.loreva-card h2 {
  margin-bottom: 10px;
}

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

/* ==================================
   Layout
================================== */
:root {
  --container:1440px;
}

.loreva-container {
  max-width: var(--container);
  margin: auto;
  padding: 0 24px;
}

/* ==================================
   Featured Products
================================== */
.mega-products {
  padding-left: 10px;
}

.mega-products h4 {
  margin: 0 0 18px;
  font-size: var(--loreva-heading-size);
  font-weight: 700;
}

.mega-products ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 35px;
}

.mega-products li {
  margin-bottom: 12px;
  break-inside: avoid;
}

.mega-products a {
  display: block;
  color: #555;
  text-decoration: none;
  line-height: var(--loreva-line-height);
  transition: 0.25s;
}

.mega-products a:hover {
  color: var(--loreva-primary);
  transform: translateX(-3px);
}

/* ==================================
   Banner
================================== */
.mega-banner {
  min-height: 260px;
  background: linear-gradient(135deg, #6C4CF1, #8B5CF6);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mega-banner span {
  font-size: var(--loreva-body-size);
  letter-spacing: 2px;
  opacity: 0.8;
}

.mega-banner h3 {
  margin: 14px 0;
  font-size: var(--loreva-h3);
  line-height: var(--loreva-line-height);
}

.mega-banner p {
  margin: 0;
  line-height: var(--loreva-line-height);
  opacity: 0.9;
}

.mega-banner a {
  margin-top: 22px;
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s;
}

.mega-banner a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.mega-banner img {
  width: 200px;
  height: auto;
}

/* ==================================
   Responsive
================================== */
@media (max-width: 1200px) {
  .loreva-mega-footer {
    grid-template-columns: 1fr;
  }
  .mega-products ul {
    columns: 1;
  }
  .mega-banner {
    min-height: auto;
  }
}
/* =================================
Hero
================================= */
.loreva-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.loreva-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(109, 74, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 40px;
}

/* ==========================
Content
========================== */
.hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(109, 74, 255, 0.08);
  color: var(--loreva-primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: var(--loreva-h1);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-content p {
  max-width: 560px;
  font-size: var(--loreva-body-size);
  line-height: var(--loreva-line-height);
  color: var(--loreva-text-secondary);
  margin: 0;
}

/* ==========================
Buttons
========================== */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 56px;
  padding: 0 32px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--loreva-primary), #5b48ff);
  box-shadow: 0 20px 40px rgba(109, 74, 255, 0.25);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 56px;
  padding: 0 32px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--loreva-text-primary);
  font-weight: 600;
  border: 1px solid var(--surface-border);
  background: #fff;
  transition: 0.3s;
}

.btn-secondary:hover {
  transform: translateY(-3px);
}

/* ==========================
Stats
========================== */
.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.hero-stat {
  padding: 16px;
  border-radius: 16px;
}

.hero-stat strong {
  font-size: 28px;
}

.hero-stat span {
  display: block;
  color: var(--loreva-text-secondary);
  font-size: 14px;
}

/* ==========================
Visual
========================== */
.hero-visual {
  position: relative;
  height: 400px;
}

.hero-product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.hero-product img {
  width: 820px;
  max-width: none;
  display: block;
}

.orbit-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 580px;
  transform: translate(-50%, -50%) rotate(10deg);
  border-radius: 38% 62% 58% 42%;
  border: 2px solid rgba(109, 74, 255, 0.16);
}

.orbit-frame-2 {
  width: 540px;
  height: 540px;
  transform: translate(-50%, -50%) rotate(-18deg);
  border-color: rgba(109, 74, 255, 0.08);
}

/* ==========================
Floating Cards
========================== */
.floating-card {
  position: absolute;
  z-index: 5;
  padding: 18px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 600;
}

.card-1 {
  top: 0;
  right: 20px;
}

.card-2 {
  left: 10px;
  bottom: 0px;
}

/* ==========================
Panel
========================== */
.hero-panel {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 240px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 5;
}

.hero-panel span {
  display: block;
  color: var(--loreva-primary);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel h3 {
  margin: 10px 0;
  font-size: var(--loreva-h3);
  line-height: 1.3;
}

.hero-panel p {
  font-size: 14px;
  color: var(--loreva-text-secondary);
  margin: 0;
}

/* ==========================
Animation
========================== */
@keyframes lorevaFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.floating-card,
.hero-panel {
  animation: lorevaFloat 5s ease-in-out infinite;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 16px 32px;
  border-radius: 16px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #141414;
}

.hero-product {
  position: relative;
  z-index: 3;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-product img {
  width: 650px;
  max-width: 100%;
  display: block;
  margin: auto;
}

.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid #eee;
  padding: 18px 28px;
  border-radius: 18px;
  font-size: var(--loreva-body-size);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.orbit-frame {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 38% 62% 58% 42%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  border: 2px solid rgba(109, 74, 255, 0.25);
}

.orbit-frame-2 {
  width: 450px;
  height: 430px;
  left: 40%;
  top: 15%;
  transform: rotate(25deg);
}

/* =================================
Tablet
================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-visual {
    order: -1;
    height: 560px;
  }
  .hero-product img {
    width: 620px;
  }
  .orbit-frame {
    width: 500px;
    height: 500px;
  }
  .orbit-frame-2 {
    width: 430px;
    height: 430px;
  }
}
/* =================================
Mobile
================================= */
@media (max-width: 767px) {
  .hero-visual {
    height: 380px;
  }
  .hero-product img {
    width: 360px;
  }
  .orbit-frame {
    width: 320px;
    height: 320px;
  }
  .orbit-frame-2 {
    width: 260px;
    height: 260px;
  }
  .hero-panel {
    width: 320px;
    bottom: -10px;
  }
  .card-1 {
    top: 0px;
    right: 20px;
  }
  .card-2 {
    left: 10px;
    bottom: 290px;
  }
}
/* ==================================
   Section Heading
================================== */
.section-heading {
  margin-bottom: 48px;
}

.loreva-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--loreva-border-color);
}

.section-heading-content {
  max-width: 680px;
}

/* Badge */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--loreva-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--loreva-primary);
  border-radius: 20px;
}

/* Title */
.section-title {
  margin: 0;
  color: var(--loreva-heading-color);
  font-size: var(--loreva-h2);
  line-height: 1.2;
  font-weight: 800;
}

/* Description */
.section-description {
  margin-top: 18px;
  color: var(--loreva-text-color);
  font-size: 15px;
  line-height: 1.9;
  max-width: 620px;
}

/* Link */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--loreva-heading-color);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.25s;
}

.section-link::after {
  content: "←";
  transition: 0.25s;
}

.section-link:hover {
  color: var(--loreva-primary);
}

.section-link:hover::after {
  transform: translateX(-6px);
}

/* ==================================
   Responsive
================================== */
@media (max-width: 992px) {
  .loreva-section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .section-heading {
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: var(--loreva-h3);
  }
  .section-description {
    margin-top: 14px;
  }
  .section-link {
    font-size: 15px;
  }
}
/* =================================
Destinations
================================= */
.loreva-destinations {
  padding: 60px 0;
}

.destination-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: var(--space-5);
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  min-height: 260px;
  isolation: isolate;
  background: var(--surface-2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.destination-large {
  grid-column: span 2;
  grid-row: span 2;
}

.destination-wide {
  grid-column: span 2;
}

.destination-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: -2;
}

.destination-card:hover .destination-bg {
  transform: scale(1.06);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.15));
  z-index: -1;
}

.destination-content {
  padding: var(--space-6);
  color: #fff;
}

.destination-content h3 {
  margin: 0 0 8px;
  font-size: var(--loreva-h4);
  color: #fff;
}

.destination-content p {
  margin: 0;
  opacity: 0.85;
  font-size: var(--loreva-small-size);
}

/* =========================
Tablet
========================= */
@media (max-width: 1024px) {
  .destination-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .destination-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .destination-wide {
    grid-column: span 2;
  }
}
/* =========================
Mobile
========================= */
@media (max-width: 767px) {
  .loreva-destinations {
    padding: var(--space-8) 0;
  }
  .destination-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: var(--space-4);
  }
  .destination-card,
  .destination-large,
  .destination-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
  .destination-content {
    padding: var(--space-5);
  }
  .destination-content h3 {
    font-size: 22px;
  }
  .destination-content p {
    font-size: 14px;
  }
}
/*featured-product*/
.loreva-featured-products {
  padding: 120px 0;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.featured-product-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.featured-product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  aspect-ratio: 1/1;
  background: #f7f7f7;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-content {
  padding: 24px;
}

.product-content h3 {
  font-size: var(--loreva-h3);
  margin-bottom: 12px;
  color: #111;
}

.product-price {
  font-weight: 700;
  color: var(--loreva-primary);
}

.loreva-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface-1);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.25s ease;
  box-shadow: var(--shadow-xs);
}

.loreva-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-thumb-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-images {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface-2);
}

.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.4s ease;
}

.loreva-product-card:hover .hover-image {
  opacity: 1;
}

.product-sale-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #ff3b30);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 59, 48, 0.25);
  overflow: hidden;
}

.product-sale-badge::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.product-sale-badge small {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1;
}

.product-sale-badge strong {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.product-thumb-wrapper {
  position: relative;
}

.product-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: var(--space-5);
}

.product-brand {
  display: block;
  margin-bottom: 8px;
  font-size: var(--loreva-body-size);
  opacity: 0.6;
  text-transform: uppercase;
}

.product-title {
  font-family: var(--loreva-heading-font);
  font-size: clamp(32px, 4vw, var(--loreva-heading-size));
  line-height: var(--loreva-line-height);
  color: var(--loreva-heading);
  margin: 0;
}

.product-title a {
  text-decoration: none;
  color: var(--loreva-heading);
}

.product-rating {
  margin-bottom: 12px;
}

.product-price {
  font-family: var(--loreva-heading-font);
  font-weight: 700;
  font-size: var(--loreva-heading-size);
  color: var(--loreva-primary);
}

.product-price del {
  opacity: 0.4;
  font-size: 0.7em;
}

.product-actions {
  margin-top: auto;
}

.loreva-add-to-cart,
.loreva-select-options,
.loreva-view-grouped,
.loreva-external-product {
  width: 100%;
  height: 48px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  background: var(--loreva-primary);
  transition: 0.2s ease;
  display: inline-block;
  padding: 10px !important;
  color: #fff;
  transition: 0.2s ease;
  font-size: var(--loreva-body-size);
  font-weight: 700;
  text-align: center;
  transition: 0.2s ease;
}

.loreva-add-to-cart:hover,
.loreva-select-options:hover,
.loreva-view-grouped:hover,
.loreva-external-product:hover {
  opacity: 0.9;
}

/* ==================================================
   Category Showcase
================================================== */
.shop-sidebar .loreva-category-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--surface-3);
  padding: 20px;
  border-radius: var(--radius-md);
}

.shop-sidebar .loreva-category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-bottom: 1px solid var(--surface-border);
  transition: 0.25s;
}

.shop-sidebar .loreva-category-card:last-child {
  border: none;
}

.loreva-category-card:hover {
  transform: translateY(-2px);
  border-color: var(--primery-color);
}

.shop-sidebar .loreva-category-card-image {
  display: none;
}

.loreva-category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.shop-sidebar .loreva-category-card-content {
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: space-between;
  align-items: center;
}

.category-name {
  font-weight: 700;
  font-size: var(--loreva-body-size);
  color: var(--loreva-heading);
}

.category-count {
  font-size: 13px;
  opacity: 0.6;
}

/* ==================================================
   Filters
================================================== */
.loreva-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loreva-filter-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  padding: 24px;
  margin: var(--space-4) 0;
}

.loreva-filter-card h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
}

.filter-group {
  margin-bottom: 14px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 0 14px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-checkbox input {
  width: auto;
  height: auto;
}

.loreva-filter-button {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
}

.loreva-reset-filters {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
}

/* ==================================================
   Toolbar
================================================== */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--surface-border);
}

/* ==================================================
   Sorting
================================================== */
.loreva-product-sorting {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.loreva-sort-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  background: #fff;
  transition: 0.25s;
  color: var(--loreva-heading);
}

.loreva-sort-button:hover {
  transform: translateY(-1px);
  border-color: var(--primery-color);
}

.loreva-sort-button.is-active {
  border-color: var(--loreva-primary);
  background: var(--loreva-primary);
  color: #fff;
}

/* ==================================================
   Product Grid
================================================== */
.loreva-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* ==================================================
   Pagination
================================================== */
.shop-pagination {
  margin-top: 60px;
}

/* ==================================================
   Empty
================================================== */
.shop-empty {
  text-align: center;
  padding: 120px 0;
}

.shop-empty-inner h2 {
  margin-bottom: 12px;
}

/* ==================================================
   Tablet
================================================== */
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
    order: 2;
  }
  .shop-main {
    order: 1;
  }
}
/* ==================================================
   Mobile
================================================== */
@media (max-width: 768px) {
  .loreva-shop {
    padding: 40px 0 70px;
  }
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .loreva-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .loreva-category-card {
    padding: 10px;
  }
  .loreva-category-card-image {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 540px) {
  .loreva-product-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================================
   Product Reviews
================================== */
.loreva-reviews {
  margin-top: 60px;
}

.loreva-reviews-header {
  margin-bottom: 30px;
}

.loreva-reviews-header h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--loreva-heading-color);
}

.loreva-reviews-header span {
  font-size: 15px;
  font-weight: 500;
  color: var(--loreva-text-color);
}

/* ==================================
   Review List
================================== */
.loreva-review-list {
  margin-bottom: 50px;
}

.loreva-review-list .commentlist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loreva-review-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--loreva-border-color, #ececec);
  border-radius: 24px;
  background: var(--loreva-surface, #fff);
  transition: 0.25s;
}

.loreva-review-card:hover {
  border-color: var(--loreva-primary);
  transform: translateY(-2px);
}

/* ==================================
   Avatar
================================== */
.review-avatar {
  flex-shrink: 0;
}

.review-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

/* ==================================
   Content
================================== */
.review-content {
  flex: 1;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-top h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--loreva-heading-color);
}

.review-top span {
  font-size: 14px;
  color: var(--loreva-text-color);
}

.review-text {
  margin-top: 15px;
  line-height: 2;
  color: var(--loreva-text-color);
}

/* ==================================
   Woo Rating
================================== */
.star-rating {
  margin: 0 !important;
}

.star-rating::before {
  color: #e2e2e2;
}

.star-rating span::before {
  color: #ffb400;
}

/* ==================================
   Form
================================== */
.loreva-review-form {
  padding: 40px;
  border: 1px solid var(--loreva-border-color, #ececec);
  border-radius: 28px;
  background: var(--loreva-surface, #fff);
}

.review-form-title {
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 700;
  color: var(--loreva-heading-color);
}

/* ==================================
   Fields
================================== */
.loreva-review-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--loreva-heading-color);
}

.loreva-review-form input,
.loreva-review-form textarea,
.comment-form-rating select {
  width: 100%;
  border: 1px solid var(--surface-border, #e5e5e5);
  border-radius: 14px;
  transition: 0.25s;
}

.loreva-review-form input {
  height: 52px;
  padding: 0 16px;
}

.loreva-review-form .comment-form-cookies-consent {
  display: flex;
}

.loreva-review-form input[type=checkbox] {
  height: 25px;
  width: 25px;
  margin-left: var(--space-3);
}

.loreva-review-form textarea {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
}

.loreva-review-form input:focus,
.loreva-review-form textarea:focus,
.comment-form-rating select:focus {
  outline: none;
  border-color: var(--loreva-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
}

/* ==================================
   Two Columns
================================== */
.comment-form-author,
.comment-form-email {
  width: calc(50% - 10px);
  float: right;
}

.comment-form-author {
  margin-left: 20px;
}

.comment-form-comment {
  clear: both;
}

.comment-form-rating {
  clear: both;
}

/* ==================================
   Rating Select
================================== */
.comment-form-rating {
  margin-bottom: 20px;
}

.comment-form-rating select {
  height: 52px;
  padding: 0 16px;
}

/* ==================================
   Submit
================================== */
.loreva-review-form .submit {
  min-width: 220px;
  height: 54px;
  padding: 0 32px;
  border: none;
  border-radius: 14px;
  background: var(--loreva-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.loreva-review-form .submit:hover {
  transform: translateY(-2px);
}

/* ==================================
   Woo Messages
================================== */
.woocommerce-review-link {
  color: var(--loreva-primary);
}

.woocommerce-noreviews {
  padding: 20px;
  border-radius: 16px;
  background: #f8f8f8;
}

/* ==========================
   Review Form Layout
========================== */
.loreva-review-form form {
  display: grid;
  gap: 20px;
}

.loreva-review-grid {
  display: grid;
  gap: 20px;
}

.comment-form-author,
.comment-form-email {
  margin: 0;
}

.loreva-review-form .comment-form-author,
.loreva-review-form .comment-form-email {
  width: 100%;
}

.loreva-review-form .comment-form-comment {
  margin: 0;
}

.loreva-review-form .comment-form-rating {
  margin: 0;
}

.comment-form-rating select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--surface-2);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.comment-form-rating select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--loreva-border-color);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.loreva-review-form {
  max-width: 100%;
}

.loreva-review-form textarea {
  min-height: 220px;
}

@media (min-width: 768px) {
  .loreva-review-form .comment-form-author,
  .loreva-review-form .comment-form-email {
    display: inline-block;
    width: calc(50% - 10px);
  }
  .loreva-review-form .comment-form-author {
    margin-left: 20px;
  }
}
/* ==================================
   Mobile
================================== */
@media (max-width: 768px) {
  .loreva-review-card {
    flex-direction: column;
    gap: 18px;
    padding: 22px;
  }
  .review-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .comment-form-author,
  .comment-form-email {
    width: 100%;
    float: none;
    margin-left: 0;
  }
  .loreva-review-form {
    padding: 24px;
  }
  .review-form-title {
    font-size: 24px;
  }
  .loreva-reviews-header h2 {
    font-size: 26px;
  }
}
/* ==========================================
   MOBILE MENU
========================================== */
.loreva-mobile-header,
.loreva-mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  .loreva-header-desktop {
    display: none;
  }
  /* ==========================================
     MOBILE HEADER
  ========================================== */
  .loreva-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: var(--space-4);
  }
  .mobile-logo {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .mobile-logo img {
    max-height: 38px;
    width: auto;
    display: block;
  }
  .mobile-menu-toggle,
  .mobile-cart {
    position: relative;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: 0.25s;
  }
  .mobile-menu-toggle:hover,
  .mobile-cart:hover {
    background: var(--surface-2);
  }
  /* ==========================================
     DRAWER
  ========================================== */
  .loreva-mobile-menu {
    display: block;
  }
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
  }
  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(90vw, 380px);
    height: 100vh;
    background: var(--surface-1);
    transition: 0.35s ease;
    overflow-y: auto;
    z-index: 999;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.12);
  }
  .loreva-mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
  }
  .loreva-mobile-menu.active .mobile-menu-panel {
    right: 0;
  }
  /* ==========================================
     HEADER
  ========================================== */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: var(--space-5);
    border-bottom: 1px solid var(--surface-border);
  }
  .mobile-menu-logo {
    display: flex;
    align-items: center;
  }
  .mobile-menu-logo img {
    max-height: 40px;
    width: auto;
  }
  .mobile-menu-close {
    width: 42px;
    height: 42px;
    border: none;
    background: var(--surface-2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  /* ==========================================
     SEARCH
  ========================================== */
  .mobile-menu-search {
    padding: var(--space-5);
    border-bottom: 1px solid var(--surface-border);
  }
  .mobile-menu-search input {
    width: 100%;
    height: 52px;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    padding: 0 var(--space-4);
    font-size: 14px;
    background: var(--surface-2);
  }
  .mobile-menu-search input:focus {
    outline: none;
    border-color: var(--color-primary);
  }
  /* ==========================================
     NAVIGATION
  ========================================== */
  .mobile-nav {
    list-style: none;
    margin: 0;
    padding: var(--space-4);
  }
  .mobile-menu-item {
    border-bottom: 1px solid var(--surface-border);
  }
  .mobile-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
  }
  .mobile-menu-link {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .submenu-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .submenu-toggle svg {
    width: 18px;
    height: 18px;
    transition: 0.3s;
  }
  .mobile-menu-item.open .submenu-toggle svg {
    transform: rotate(180deg);
  }
  /* ==========================================
     SUBMENU
  ========================================== */
  .mobile-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 12px 20px;
  }
  .mobile-menu-item.open .mobile-submenu {
    display: block;
  }
  .mobile-submenu li {
    margin: 0;
  }
  .mobile-submenu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: 0.2s;
  }
  .mobile-submenu a:hover {
    color: var(--color-primary);
  }
  /* ==========================================
     FOOTER ACTIONS
  ========================================== */
  .mobile-menu-actions {
    margin-top: auto;
    padding: var(--space-5);
    border-top: 1px solid var(--surface-border);
    display: grid;
    gap: 12px;
  }
  .mobile-menu-actions a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: 0.25s;
  }
  .mobile-menu-actions a:first-child {
    background: var(--surface-2);
    color: var(--text-primary);
  }
  .mobile-menu-actions a:last-child {
    background: var(--color-primary);
    color: #fff;
  }
  /* ==========================================
     SCROLLBAR
  ========================================== */
  .mobile-menu-panel::-webkit-scrollbar {
    width: 6px;
  }
  .mobile-menu-panel::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.15);
  }
}
/* =================================
Order Review
================================= */
#order_review {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

/* =================================
Order Table
================================= */
#order_review table {
  width: 100%;
  border: none;
}

#order_review th,
#order_review td {
  border: none !important;
  padding: 14px 0 !important;
}

#order_review tr {
  border-bottom: 1px solid var(--surface-border);
}

#order_review tr:last-child {
  border: none;
}

/* =================================
Shipping Methods
================================= */
.woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-shipping-methods li {
  margin-bottom: 12px;
}

/* =================================
Payment Methods
================================= */
#payment {
  background: none;
  margin-top: 24px;
}

#payment ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#payment li {
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}

#payment .payment_box {
  margin-top: 12px;
  border-radius: 12px;
}

/* =================================
Place Order
================================= */
#place_order {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

#place_order:hover {
  transform: translateY(-2px);
}

/* =================================
Coupon Login Notices
================================= */
.woocommerce-form-coupon-toggle,
.woocommerce-form-login-toggle {
  margin-bottom: 24px;
}

.woocommerce-info {
  border: none;
  border-radius: 18px;
  padding: 18px 20px;
}

/* =================================
Checkout Improvements
================================= */
#customer_details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =================================
Field Validation
================================= */
.woocommerce-invalid .input-text,
.woocommerce-invalid select {
  border-color: #ef4444 !important;
}

.woocommerce-validated .input-text,
.woocommerce-validated select {
  border-color: #22c55e !important;
}

/* =================================
Order Summary Product List
================================= */
#order_review .product-name {
  font-weight: 600;
}

#order_review .product-total {
  text-align: left;
  white-space: nowrap;
}

/* =================================
Order Total
================================= */
#order_review .order-total th,
#order_review .order-total td {
  font-size: 18px;
  font-weight: 700;
}

/* =================================
Payment Radio
================================= */
#payment li label {
  font-weight: 600;
  cursor: pointer;
}

/* =================================
Terms
================================= */
.woocommerce-terms-and-conditions-wrapper {
  margin-top: 20px;
}

.woocommerce-privacy-policy-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--loreva-text-secondary);
}

/* =================================
Loading State
================================= */
.woocommerce-checkout.processing {
  opacity: 0.7;
  pointer-events: none;
}

/* =================================
Two Column Fields
================================= */
@media (min-width: 768px) {
  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last {
    width: 48%;
  }
  .woocommerce form .form-row-first {
    float: right;
  }
  .woocommerce form .form-row-last {
    float: left;
  }
}
/* =================================
Tablet
================================= */
@media (max-width: 1024px) {
  .loreva-checkout-layout {
    grid-template-columns: 1fr;
  }
  .loreva-checkout-sidebar {
    position: static;
  }
  .loreva-checkout-layout {
    display: flex;
    flex-direction: column;
  }
  .loreva-checkout-sidebar {
    order: -1;
  }
}
/* =================================
Mobile
================================= */
@media (max-width: 768px) {
  .loreva-checkout {
    padding: 30px 0 60px;
  }
  .woocommerce-billing-fields,
  .woocommerce-shipping-fields,
  .woocommerce-additional-fields {
    padding: 20px;
  }
  #order_review {
    padding: 20px;
  }
  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last {
    width: 100%;
    float: none;
  }
  #place_order {
    height: 54px;
  }
}
.loreva-breadcrumb {
  margin-bottom: 24px;
}

.loreva-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loreva-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.loreva-breadcrumb li:not(:last-child)::after {
  content: "/";
  opacity: 0.4;
}

.loreva-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

.loreva-breadcrumb a:hover {
  color: var(--loreva-primary);
}

.loreva-breadcrumb span {
  font-weight: 600;
}

.product-summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-brand {
  background: rgba(var(--loreva-primary-rgb), 0.08);
  color: var(--loreva-primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.product-stock-badge {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.product-stock-badge.in-stock {
  background: #eaf8ef;
  color: #3f4241;
}

.product-stock-badge.out-of-stock {
  background: #ffe8e8;
  color: #dc3545;
}

.product-title {
  margin: 0;
  font-size: var(--loreva-heading-size);
  line-height: 2;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-count {
  color: #777;
}

.product-price {
  font-size: 1.25rem;
}

.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-item {
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--loreva-surface);
  border: 1px solid var(--loreva-border-color);
  font-size: 14px;
  font-weight: 600;
}

.product-cart {
  position: sticky;
  bottom: 20px;
  z-index: 20;
  background: var(--bg);
  padding-top: 10px;
}

.product-cart .single_add_to_cart_button {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-item {
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  background: var(--loreva-surface);
  border: 1px solid var(--loreva-border-color);
  font-size: 14px;
  font-weight: 600;
}

.product-meta {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--loreva-border-color);
}

.meta-row {
  margin-bottom: 10px;
  color: #666;
}

.meta-row strong {
  color: var(--loreva-heading-color);
}

.variations {
  width: 100%;
  border: 0 !important;
  margin: 0 0 20px;
}

.variations tbody {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 12px 20px;
}

.variations tr {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}

.variations td {
  padding: 0 !important;
  border: 0 !important;
}

.variations .label label {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.variations select {
  width: auto !important;
  min-width: 140px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--loreva-border-color);
  background: var(--loreva-surface);
}

.reset_variations {
  font-size: 13px;
  margin-right: 10px;
}

.woocommerce-variation-availability .stock.in-stock {
  display: none;
}

@media (max-width: 768px) {
  .product-trust {
    grid-template-columns: 1fr;
  }
}
/*responsive*/
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: var(--loreva-h1);
  }
}
@media (max-width: 992px) {
  .loreva-mega-menu-panel {
    display: none;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-main {
    flex-direction: column;
    text-align: center;
  }
  .showcase-image img {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .product-thumbnails {
    justify-content: center;
    gap: 8px;
  }
  .thumbnail-item {
    width: 60px;
    height: 60px;
  }
  .product-main-image {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .product-summary {
    gap: 16px;
  }
  .product-title {
    font-size: var(--loreva-heading-size);
  }
  .product-price {
    font-size: var(--loreva-heading-size);
  }
}
@media (max-width: 768px) {
  .product-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .tabs-header {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .tabs-header::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    flex-shrink: 0;
  }
  .tabs-content {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .loreva-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .single_add_to_cart_button {
    height: 52px;
    font-size: var(--loreva-body-size);
  }
}
@media (max-width: 768px) {
  .loreva-single-product {
    padding: var(--space-5) 0;
  }
  .single-product-grid {
    gap: 24px;
  }
}
/* ==================================
   Header
================================== */
.loreva-header {
  min-height: var(--loreva-header-height);
  background: var(--loreva-header-bg);
  position: var(--loreva-header-position);
  top: 0;
  z-index: 999;
}

/* ==================================
   Header Modern
================================== */
.loreva-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.loreva-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 40px;
}

.header-start {
  flex: 1;
}

.header-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.header-end {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.loreva-logo img {
  max-height: 48px;
  width: auto;
}

.logo-text {
  text-decoration: none;
  font-size: var(--loreva-body-size);
  font-weight: 700;
  color: #111;
}

.loreva-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loreva-menu a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.loreva-menu a:hover {
  color: var(--loreva-primary);
}

.loreva-search-toggle,
.loreva-account-icon,
.loreva-cart-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.loreva-search-toggle:hover,
.loreva-account-icon:hover,
.loreva-cart-icon:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.loreva-search-toggle svg,
.loreva-account-icon svg,
.loreva-cart-icon svg {
  width: 22px;
  height: 22px;
  stroke: #111;
}

.loreva-cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--loreva-primary);
  color: #fff;
  font-size: var(--loreva-body-size);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================
   Search Popup
========================== */
.loreva-search-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.loreva-search-popup.active {
  opacity: 1;
  visibility: visible;
}

.search-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.search-popup-content {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 90vw);
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.popup-search-form {
  display: flex;
  gap: 15px;
}

.popup-search-form input {
  flex: 1;
  height: 60px;
  border: none;
  background: #f5f5f7;
  border-radius: 16px;
  padding: 0 20px;
  font-size: var(--loreva-body-size);
  outline: none;
}

.popup-search-form button {
  width: 140px;
  border: none;
  border-radius: 16px;
  background: #6C4CF1;
  color: #fff;
  cursor: pointer;
}

.search-popup-close {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: #f2f2f2;
  font-size: var(--loreva-body-size);
}

.popup-search-suggestions {
  margin-top: 25px;
  min-height: 120px;
}

.popup-search-suggestions,
.mobile-search-results {
  display: none;
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.popup-search-suggestions.is-active,
.mobile-search-results.is-active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  text-decoration: none;
  transition: 0.25s;
}

.search-result-item:hover {
  background: #f7f7f7;
}

.search-result-image {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.search-result-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.search-result-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-result-title {
  color: inherit;
  font-weight: 600;
}

.search-result-price {
  color: var(--loreva-primary);
  font-weight: 700;
}

.search-empty {
  padding: 20px;
  text-align: center;
}

/* =================================
Search Loading
================================= */
.loreva-search-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 30px;
}

.loreva-search-loading span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--loreva-primary);
  animation: lorevaSearchLoading 1s infinite ease-in-out;
}

.loreva-search-loading span:nth-child(2) {
  animation-delay: 0.15s;
}

.loreva-search-loading span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes lorevaSearchLoading {
  0%, 80%, 100% {
    transform: scale(0.5);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
/* =================================
Search Error
================================= */
.loreva-search-error {
  padding: 20px;
  text-align: center;
  color: #d63638;
}

/* =================================
Search Results
================================= */
.popup-search-suggestions,
.mobile-search-results {
  min-height: 60px;
  position: relative;
}

/* ==================================
   Mega Menu Final v2
================================== */
/*.loreva-has-mega{
    position:relative;
}*/
.loreva-menu {
  position: relative;
}

.loreva-mega-menu-panel {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%) translateY(15px);
  width: 1300px;
  max-width: 90vw;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  overflow: hidden;
}

.loreva-has-mega:hover > .loreva-mega-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
}

/* ==================================
   Content
================================== */
.loreva-mega-content {
  padding: 35px 40px;
}

/* ==================================
   Categories Row
================================== */
.loreva-mega-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

/* ==================================
   Category Column
================================== */
.mega-column {
  min-width: 0;
}

.mega-column h4 {
  margin: 0 0 15px;
  font-size: var(--loreva-heading-size);
  font-weight: 700;
  line-height: var(--loreva-line-height);
}

.mega-column h4 a {
  color: #111;
  text-decoration: none;
  transition: 0.25s;
}

.mega-column h4 a:hover {
  color: var(--loreva-primary);
}

.mega-count {
  font-size: var(--loreva-body-size);
  color: #999;
  font-weight: 400;
}

.mega-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-column li {
  margin-bottom: 10px;
}

.mega-column li:last-child {
  margin-bottom: 0;
}

.mega-column li a {
  color: #666;
  text-decoration: none;
  line-height: var(--loreva-line-height);
  transition: 0.25s;
}

.mega-column li a:hover {
  color: var(--loreva-primary);
  padding-right: 4px;
}

.mega-level-2 {
  margin-top: 8px;
  padding-right: 14px;
}

.mega-level-2 li a {
  font-size: var(--loreva-body-size);
  color: #888;
}

.mega-level-3 {
  margin-top: 6px;
  padding-right: 12px;
}

.mega-level-3 li a {
  font-size: var(--loreva-body-size);
  color: #999;
}

/*.loreva-menu > li{
    position:relative;
}*/
.loreva-menu .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 12px 25px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 999;
}

.loreva-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.loreva-menu .sub-menu li {
  display: block;
}

/* ==================================
   Footer
================================== */
.loreva-mega-footer {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 35px;
  border-top: 1px solid #f0f0f0;
  padding-top: 30px;
  align-items: stretch;
}

/* ==================================
   Footer
================================== */
.loreva-footer {
  margin-top: 80px;
  background: var(--surface-2);
  border-top: 1px solid var(--surface-border);
}

/* ==================================
   Top
================================== */
.footer-top {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

/* ==================================
   Brand
================================== */
.footer-brand h3 {
  margin: 0 0 16px;
  font-size: var(--loreva-h3);
}

.footer-brand p {
  max-width: 420px;
  margin: 0 0 24px;
  color: var(--text-secondary);
  line-height: var(--loreva-line-height);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background: var(--surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

/* ==========================
   Footer Socials
========================== */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--loreva-surface);
  border: 1px solid var(--loreva-border-color);
  color: var(--loreva-text-color);
  transition: 0.25s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social:hover {
  background: var(--loreva-primary);
  color: #fff;
  border-color: var(--loreva-primary);
  transform: translateY(-3px);
}

.footer-social:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* ==================================
   Columns
================================== */
.footer-column h4 {
  margin: 0 0 20px;
  font-size: var(--loreva-heading-size);
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: 0.2s;
}

.footer-column a:hover {
  color: var(--loreva-primary);
}

/* ==================================
   Features
================================== */
.footer-features {
  padding: 32px 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.footer-feature {
  background: var(--surface-1);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.footer-feature h5 {
  margin: 0 0 8px;
  font-size: var(--loreva-heading-size);
}

.footer-feature span {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-trust-badges {
  margin: 10px 0;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--loreva-border-color);
  border-bottom: 1px solid var(--loreva-border-color);
}

.footer-trust-badges a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--loreva-surface);
  border: 1px solid var(--loreva-border-color);
  border-radius: 16px;
  transition: 0.3s;
}

.footer-trust-badges a:hover {
  transform: translateY(-4px);
  border-color: var(--loreva-primary);
}

.footer-trust-badges img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

/* ==================================
   Bottom
================================== */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-secondary);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 14px;
}

/* ==================================
   Tablet
================================== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==================================
   Mobile
================================== */
@media (max-width: 768px) {
  .loreva-footer {
    margin-top: 60px;
  }
  .footer-top {
    padding: 48px 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand p {
    max-width: none;
  }
  .footer-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-feature {
    text-align: right;
    padding: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}
/* ==================================
   Showcase Section
================================== */
.loreva-showcase {
  padding: 60px 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff, #faf9ff);
}

/* ==================================
   Grid
================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: stretch;
}

/* ==================================
   Main Product
================================== */
.showcase-main {
  background: #fafafa;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 500px;
  transition: 0.4s ease;
  position: relative;
}

.showcase-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.showcase-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.showcase-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.showcase-main:hover .showcase-image img {
  transform: scale(1.05);
}

.showcase-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-label {
  display: inline-flex;
  width: max-content;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(108, 76, 241, 0.08);
  color: #6C4CF1;
  font-size: var(--loreva-body-size);
  font-weight: 700;
  letter-spacing: 2px;
}

.showcase-content h2 {
  margin: 25px 0;
  font-size: var(--loreva-heading-size);
  line-height: 1.8;
  color: #111;
}

.showcase-description {
  color: #777;
  line-height: var(--loreva-line-height);
  margin-bottom: 30px;
}

.showcase-price {
  margin-bottom: 35px;
}

.showcase-price .price {
  font-size: 34px;
  font-weight: 800;
  color: #111;
}

.showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 58px;
  border-radius: 16px;
  background: var(--loreva-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.showcase-btn:hover {
  border: 1px solid var(--loreva-primary);
  background: var(--bg);
  color: var(--loreva-primary);
  transform: translateY(-3px);
}

/* ==================================
   Side Products
================================== */
.showcase-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.showcase-mini {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.showcase-mini:hover {
  transform: translateX(-5px);
  border-color: var(--loreva-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.showcase-mini .product-sale-badge {
  width: 40px;
  height: 40px;
  top: 2px;
}

.showcase-mini .product-sale-badge strong {
  font-size: 14px;
}

.showcase-mini .product-sale-badge small {
  font-size: 8px;
}

.mini-image {
  width: 95px;
  min-width: 95px;
  height: 95px;
  border-radius: 18px;
  overflow: hidden;
  background: #fafafa;
}

.mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-content {
  flex: 1;
}

.mini-content h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: var(--loreva-body-size);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  height: 3.2em;
}

.product-title a,
.showcase-mini h3,
.showcase-mini-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  min-height: 3.2em;
}

.mini-content span {
  color: var(--loreva-primary);
  font-size: var(--loreva-body-size);
}

del {
  opacity: 0.8;
  margin-left: 5px;
}

ins {
  font-weight: 800;
}

.mini-content .price {
  font-weight: 700;
  color: #111;
  font-size: var(--loreva-body-size);
}

/* ==================================
   Responsive
================================== */
@media (max-width: 1200px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .showcase-main {
    min-height: auto;
  }
  .showcase-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .loreva-showcase {
    padding: var(--space-8) 0;
  }
  .showcase-header {
    margin-bottom: 40px;
  }
  .showcase-header h2 {
    font-size: var(--loreva-h3);
    line-height: 1.2;
  }
  .showcase-header p {
    font-size: 15px;
  }
  .showcase-main {
    grid-template-columns: 1fr;
    border-radius: var(--radius-xl);
  }
  .showcase-image {
    min-height: 280px;
  }
  .showcase-image img {
    width: 80%;
    height: auto;
  }
  .showcase-content {
    padding: var(--space-5);
  }
  .showcase-content h2 {
    font-size: 32px;
    margin: 16px 0;
  }
  .showcase-description {
    margin-bottom: 20px;
  }
  .showcase-price .price {
    font-size: 28px;
  }
  .showcase-btn {
    width: 100%;
  }
  .showcase-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .showcase-mini {
    padding: 16px;
    gap: 16px;
  }
  .mini-image {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
  .mini-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .mini-content .price {
    font-size: 15px;
  }
}
/* ==================================
   Brands Section
================================== */
.loreva-brands {
  padding: 60px 0;
}

/* ==========================
   Grid
========================== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* ==========================
   Card
========================== */
.brand-universe {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 24px;
  text-decoration: none;
  text-align: center;
  transition: 0.25s ease;
  min-height: auto;
}

.brand-universe:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* ==========================
   Background Circle
========================== */
.brand-universe::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(rgba(108, 76, 241, 0.08), transparent);
  pointer-events: none;
}

.brand-universe::before {
  display: none;
}

/* ==========================
   Logo
========================== */
.brand-logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.brand-logo img {
  max-width: 110px;
  max-height: 60px;
  width: auto;
  height: auto;
}

/* ==========================
   Content
========================== */
.brand-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.brand-content p {
  margin: 0;
  color: #666;
  line-height: var(--loreva-line-height);
  font-size: var(--loreva-body-size);
}

/* ==========================
   Meta
========================== */
.brand-meta {
  margin: 12px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #777;
  background: #f7f7f7;
  padding: 8px 14px;
  border-radius: 999px;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .brand-universe {
    padding: 18px;
  }
  .brand-logo {
    height: 60px;
  }
  .brand-logo img {
    max-width: 90px;
  }
}
/*journal*/
.loreva-journal {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff, #faf9ff);
}

.journal-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.journal-featured {
  min-height: 460px;
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  background: #f7f7f7;
}

.journal-featured::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 40% 60% 55% 45%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  top: -150px;
  left: -150px;
}

.journal-content {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: 40px;
  max-width: 360px;
}

.journal-content h3 {
  font-size: 32px;
  line-height: 1.25;
  margin: 16px 0;
}

.journal-grid {
  display: grid;
  gap: 24px;
}

.journal-card {
  min-height: 110px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 26px;
  padding: 30px;
  text-decoration: none;
  color: #141414;
  transition: 0.3s;
}

.journal-card:hover {
  transform: translateX(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

/* Featured Image */
.journal-featured {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.journal-featured-image {
  position: absolute;
  inset: 0;
}

.journal-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.journal-featured:hover .journal-featured-image img {
  transform: scale(1.04);
}

.journal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}

.journal-featured-link {
  color: #fff;
  display: block;
  height: 100%;
}

.journal-content {
  z-index: 2;
}

.journal-content p {
  max-width: 520px;
  font-size: 15px;
}

.journal-tag {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: var(--loreva-body-size);
  letter-spacing: 1px;
}

.journal-content h3 {
  color: #fff;
}

.journal-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--loreva-line-height);
}

.journal-meta {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--loreva-body-size);
}

/* Cards */
.journal-card {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 16px;
}

.journal-card-image {
  flex: 0 0 90px;
}

.journal-card-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 18px;
}

.journal-card-content {
  flex: 1;
}

.journal-card-content span {
  color: #888;
  font-size: var(--loreva-body-size);
}

.journal-card-content h4 {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .journal-layout {
    grid-template-columns: 1fr;
  }
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .journal-featured {
    min-height: 420px;
  }
}
@media (max-width: 768px) {
  .loreva-journal {
    padding: var(--space-8) 0;
  }
  .journal-layout {
    gap: 20px;
  }
  .journal-featured {
    min-height: 340px;
    border-radius: 24px;
  }
  .journal-content {
    right: 24px;
    left: 24px;
    bottom: 24px;
  }
  .journal-content h3 {
    font-size: 24px;
  }
  .journal-content p {
    display: none;
  }
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .journal-card {
    padding: 16px;
    gap: 14px;
    border-radius: 18px;
  }
  .journal-card-image {
    flex: 0 0 72px;
  }
  .journal-card-image img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
  }
  .journal-card-content h4 {
    font-size: 16px;
    margin-top: 4px;
  }
}
/* ==================================
   Newsletter
================================== */
.loreva-newsletter {
  padding: 80px 0;
}

.newsletter-wrapper {
  position: relative;
  overflow: hidden;
  padding: 64px;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  text-align: center;
}

/* ==================================
   Label
================================== */
.newsletter-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-1);
  border: 1px solid var(--surface-border);
  color: var(--loreva-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ==================================
   Title
================================== */
.newsletter-wrapper h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: var(--loreva-h2);
  line-height: 1.2;
  font-weight: 800;
}

/* ==================================
   Description
================================== */
.newsletter-wrapper p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--text-secondary);
  line-height: var(--loreva-line-height);
  font-size: var(--loreva-body-size);
}

/* ==================================
   Form
================================== */
.newsletter-form {
  max-width: 640px;
  margin: 40px auto 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.newsletter-form input {
  flex: 1;
  height: 52px;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background: #fff;
  padding: 0 18px;
  text-align: right;
  font-size: var(--loreva-body-size);
  outline: none;
  transition: 0.25s;
}

.newsletter-form input:focus {
  border-color: var(--loreva-primary);
}

.newsletter-form button {
  width: 180px;
  height: 52px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--loreva-primary);
  color: #fff;
  font-size: var(--loreva-body-size);
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

/* ==================================
   Note
================================== */
.newsletter-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ==================================
   Message
================================== */
.newsletter-message {
  margin-top: 16px;
  min-height: 24px;
  text-align: center;
  font-size: 14px;
}

.newsletter-message.success {
  color: #16a34a;
}

.newsletter-message.error {
  color: #dc2626;
}

/* ==================================
   Tablet
================================== */
@media (max-width: 992px) {
  .newsletter-wrapper {
    padding: 48px 32px;
  }
  .newsletter-form {
    max-width: 100%;
  }
}
/* ==================================
   Mobile
================================== */
@media (max-width: 768px) {
  .loreva-newsletter {
    padding: 60px 0;
  }
  .newsletter-wrapper {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
  }
  .newsletter-wrapper h2 {
    font-size: var(--loreva-h2);
  }
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: none;
  }
  .newsletter-form input {
    flex: none;
    width: 100%;
    min-width: 0;
    height: 52px;
    text-align: center;
  }
  .newsletter-form button {
    width: 100%;
    height: 52px;
  }
}
/* ==================================================
   Shop Archive
================================================== */
.loreva-shop {
  padding: 60px 0 100px;
}

/* ==================================================
   Hero
================================================== */
.shop-hero {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 60px;
  align-items: center;
  min-height: 300px;
  margin-bottom: 20px;
}

.shop-hero-image {
  border-radius: 32px;
  overflow: hidden;
  background: #f5f5f5;
}

.shop-hero-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.shop-title {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.shop-description {
  max-width: 700px;
  color: #666;
  line-height: 2;
}

/* ==================================================
   Layout
================================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.shop-main {
  min-width: 0;
}

.shop-layout-category {
  padding: 40px 0;
  text-align: center;
  margin: 0 auto;
  width: max-content;
  max-width: var(--container);
  overflow-x: hidden;
}

.shop-layout-category .loreva-category-showcase {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.shop-layout-category .loreva-category-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 12px;
  transition: 0.25s;
}

.shop-layout-category .loreva-category-card-image {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.shop-layout-category .loreva-category-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ==================================================
   Sidebar
================================================== */
.shop-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==================================
   Shop Pagination
================================== */
.shop-pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.woocommerce-pagination {
  display: flex;
  justify-content: center;
}

.woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-pagination li {
  margin: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--loreva-border-color);
  background: var(--loreva-surface);
  color: var(--loreva-text-color);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.woocommerce-pagination a:hover {
  background: var(--loreva-primary);
  border-color: var(--loreva-primary);
  color: #fff;
  transform: translateY(-2px);
}

.woocommerce-pagination .current {
  background: var(--loreva-primary);
  border-color: var(--loreva-primary);
  color: #fff;
  cursor: default;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.woocommerce-pagination .prev,
.woocommerce-pagination .next {
  font-size: 20px;
  font-weight: 700;
}

.woocommerce-pagination .dots {
  border: none;
  background: none;
  width: auto;
  padding: 0 8px;
}

@media (max-width: 767px) {
  .shop-pagination {
    margin-top: 50px;
  }
  .woocommerce-pagination .page-numbers {
    gap: 8px;
  }
  .woocommerce-pagination a,
  .woocommerce-pagination span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .shop-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .shop-title {
    font-size: 42px;
  }
  .shop-hero-image img {
    height: 260px;
  }
}
/*single-product*/
.loreva-single-product {
  padding: var(--space-7) 0;
}

.single-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 120px;
}

.product-main-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-1);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-sm);
  padding: var(--soace-5);
}

.product-main-image img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

.product-main-image:hover img {
  transform: scale(1.04);
}

.product-summary {
  min-width: 0;
}

@media (max-width: 1024px) {
  .single-product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery {
    position: relative;
    top: auto;
  }
}
.product-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: 0.25s ease;
  background: var(--surface-1);
}

.thumbnail-item:hover {
  opacity: 1;
}

.thumbnail-item.active {
  opacity: 1;
  border-color: var(--loreva-primary);
  box-shadow: var(--shadow-sm);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single_add_to_cart_button {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--loreva-primary);
  color: #fff;
  font-size: var(--loreva-body-size);
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.loreva-product-tabs {
  margin-top: 80px;
}

.tabs-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: var(--space-2);
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: auto;
}

.tab-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-family: var(--loreva-heading-font);
  font-size: var(--loreva-body-size);
  transition: 0.25s ease;
}

.tab-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

.tab-btn.active {
  background: var(--loreva-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.tabs-content {
  background: var(--surface-1);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-xs);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: lorevaFade 0.25s ease;
}

@keyframes lorevaFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.shop_attributes {
  width: 100%;
  border-collapse: collapse;
}

.shop_attributes th {
  width: 220px;
  text-align: right;
  padding: var(--space-4);
  background: var(--surface-2);
  border-bottom: 1px solid var(--surface-border);
}

.shop_attributes td {
  padding: 16px;
  border-bottom: 1px solid var(--surface-border);
}

.product-summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-brand {
  font-size: var(--loreva-body-size);
  opacity: 0.6;
  text-transform: uppercase;
}

.product-sku {
  font-size: var(--loreva-body-size);
  opacity: 0.7;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-count {
  font-size: var(--loreva-body-size);
  opacity: 0.7;
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 10px;
}

.in-stock,
.out-of-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-round);
  font-size: var(--loreva-body-size);
}

.in-stock {
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
}

.out-of-stock {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-item {
  text-align: center;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  transition: 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.product-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--surface-border);
}

.meta-row {
  margin-bottom: 10px;
}

.variations {
  width: 100%;
  border: none;
}

.variations tr {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.variations th {
  text-align: right;
}

.variations td {
  padding: 0;
}

.variations select {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-4);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.reset_variations {
  display: inline-flex;
  margin-top: 12px;
}

.single_variation {
  margin-top: 20px;
}

.single_variation .price {
  font-size: var(--loreva-heading-size);
  font-weight: 700;
}

.single_add_to_cart_button {
  width: 100%;
}

.quantity {
  margin-bottom: 16px;
}

.quantity input {
  height: 48px;
}

.loreva-related-products {
  margin-top: 120px;
}

.loreva-related-products .section-title {
  margin-bottom: 40px;
  text-align: center;
  font-size: var(--loreva-h2);
  font-family: var(--loreva-heading-font);
}

.loreva-related-products .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: var(--radius-round);
  background: var(--loreva-primary);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .footer-features {
    grid-template-columns: 1fr;
  }
}
/* cart*/
.loreva-add-to-cart.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loreva-add-to-cart.loading::after {
  content: "...";
}

.loreva-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
}

.loreva-cart-drawer.active {
  visibility: visible;
}

.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.3s;
}

.loreva-cart-drawer.active .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.loreva-cart-drawer.active .cart-drawer-content {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 20px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

/* =================================
My Account
================================= */
.loreva-account {
  padding: 60px 0 100px;
}

.loreva-account-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

/* =================================
Sidebar
================================= */
.loreva-account-sidebar {
  position: sticky;
  top: 100px;
}

.loreva-account-nav {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  overflow: hidden;
}

.loreva-account-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.loreva-account-nav li {
  border-bottom: 1px solid var(--surface-border);
}

.loreva-account-nav li:last-child {
  border-bottom: none;
}

.loreva-account-nav a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 20px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  transition: 0.25s;
}

.loreva-account-nav a:hover {
  background: #f8f8f8;
}

.loreva-account-nav .is-active a {
  background: var(--loreva-primary);
  color: #fff;
}

/* =================================
Content
================================= */
.loreva-account-content {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  padding: 32px;
}

/* =================================
Dashboard
================================= */
.woocommerce-MyAccount-content p {
  line-height: 2;
}

/* =================================
Orders Table
================================= */
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
  padding: 16px;
  border-bottom: 1px solid var(--surface-border);
}

.woocommerce-orders-table th {
  font-weight: 700;
}

/* =================================
Buttons
================================= */
.woocommerce .button {
  border: none;
  border-radius: 14px;
  min-height: 46px;
  padding: 0 20px;
  font-weight: 600;
}

/* =================================
Address Cards
================================= */
.woocommerce-Address {
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
}

/* =================================
Forms
================================= */
.woocommerce-EditAccountForm,
.woocommerce-address-fields {
  max-width: 900px;
}

.woocommerce form .form-row {
  margin-bottom: 18px;
}

.woocommerce form .input-text,
.woocommerce form select {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  padding: 0 16px;
}

.woocommerce form textarea.input-text {
  min-height: 140px;
  padding: 16px;
}

/* =================================
Downloads
================================= */
.woocommerce-table {
  width: 100%;
}

.woocommerce-table th,
.woocommerce-table td {
  padding: 16px;
}

/* =================================
Tablet
================================= */
@media (max-width: 1024px) {
  .loreva-account-layout {
    grid-template-columns: 1fr;
  }
  .loreva-account-sidebar {
    position: static;
  }
}
/* =================================
Mobile
================================= */
@media (max-width: 768px) {
  .loreva-account {
    padding: 30px 0 60px;
  }
  .loreva-account-content {
    padding: 20px;
  }
  .loreva-account-nav a {
    min-height: 52px;
  }
  .woocommerce-orders-table {
    display: block;
    overflow: auto;
  }
}
/* =================================
Dashboard
================================= */
.loreva-account-dashboard {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* =================================
Hero
================================= */
.loreva-dashboard-hero {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  padding: 32px;
}

.loreva-dashboard-hero h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
}

.loreva-dashboard-hero p {
  margin: 0;
  color: var(--text-secondary);
}

/* =================================
Grid
================================= */
.loreva-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* =================================
Card
================================= */
.loreva-dashboard-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 160px;
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  text-decoration: none;
  transition: 0.25s;
}

.loreva-dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.loreva-dashboard-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--loreva-primary);
}

.loreva-dashboard-icon {
  font-size: 34px;
}

.loreva-dashboard-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

/* =================================
Orders
================================= */
.loreva-orders {
  display: grid;
  gap: 24px;
}

.loreva-order-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  padding: 24px;
}

.loreva-order-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.loreva-order-top h3 {
  margin: 6px 0 0;
}

.loreva-order-status {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #f5f5f5;
}

.loreva-order-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.loreva-order-meta strong {
  display: block;
  margin-bottom: 8px;
}

/* =================================
Order Details
================================= */
.loreva-order-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.loreva-summary-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 20px;
}

.loreva-summary-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.loreva-order-products {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  padding: 24px;
}

.loreva-order-product {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--surface-border);
}

.loreva-order-product:last-child {
  border-bottom: none;
}

.loreva-order-product-image img {
  width: 80px;
  height: auto;
  border-radius: 16px;
}

/* =================================
Responsive
================================= */
@media (max-width: 768px) {
  .loreva-order-meta {
    grid-template-columns: 1fr;
  }
  .loreva-order-summary {
    grid-template-columns: 1fr 1fr;
  }
  .loreva-order-product {
    grid-template-columns: 1fr;
  }
}
/* ==================================
   Loreva Mini Cart Drawer
================================== */
.loreva-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.loreva-cart-drawer.active {
  visibility: visible;
  opacity: 1;
}

/* Overlay */
.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

/* Drawer */
.cart-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateX(100%);
  transition: 0.35s ease;
}

.loreva-cart-drawer.active .cart-drawer-content {
  transform: translateX(0);
}

/* Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid #eee;
}

.cart-drawer-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.cart-drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 24px;
}

/* Body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* ==================================
   Mini Cart Items
================================== */
.woocommerce-mini-cart {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-mini-cart-item {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.woocommerce-mini-cart-item:last-child {
  border-bottom: none;
}

.woocommerce-mini-cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.woocommerce-mini-cart-item a {
  text-decoration: none;
}

.woocommerce-mini-cart-item > a:not(.remove) {
  display: flex;
  gap: 14px;
  color: #111;
  font-weight: 600;
}

.woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 10px;
  left: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #d00 !important;
  text-decoration: none;
}

/* Quantity */
.woocommerce-mini-cart-item .quantity {
  display: block;
  margin-top: 8px;
  color: #666;
  font-size: 14px;
}

/* ==================================
   Total
================================== */
.woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 20px;
  border-top: 1px solid #eee;
  font-size: 16px;
  font-weight: 700;
}

/* ==================================
   Buttons
================================== */
.woocommerce-mini-cart__buttons {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.woocommerce-mini-cart__buttons .button {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
}

.woocommerce-mini-cart__buttons .wc-forward {
  background: #f5f5f5;
  color: #111;
}

.woocommerce-mini-cart__buttons .checkout {
  background: var(--loreva-primary);
  color: #fff;
}

/* Empty */
.woocommerce-mini-cart__empty-message {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

/* Mobile */
@media (max-width: 768px) {
  .cart-drawer-content {
    width: 100%;
  }
  .woocommerce-mini-cart-item img {
    width: 75px;
    height: 75px;
  }
}
/* =================================
Cart Layout
================================= */
.loreva-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

.loreva-cart-items {
  min-width: 0;
}

/* =================================
Cart Card
================================= */
.loreva-cart-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 140px 140px 60px;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 20px;
  transition: 0.25s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.loreva-cart-card:hover {
  transform: translateY(-3px);
}

/* =================================
Image
================================= */
.loreva-cart-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
}

/* =================================
Info
================================= */
.loreva-cart-info h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}

.loreva-cart-info a {
  text-decoration: none;
  color: var(--loreva-text-primary);
}

.loreva-cart-price {
  color: var(--loreva-text-secondary);
}

/* =================================
Quantity
================================= */
.loreva-cart-qty {
  display: flex;
  justify-content: center;
}

.loreva-cart-qty .qty {
  width: 90px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid var(--surface-border);
  text-align: center;
  font-weight: 600;
}

/* =================================
Subtotal
================================= */
.loreva-cart-subtotal {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

/* =================================
Remove
================================= */
.loreva-cart-remove {
  display: flex;
  justify-content: center;
}

.loreva-cart-remove a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3f2;
  color: #ff4d4f;
  text-decoration: none;
  font-size: 20px;
  transition: 0.25s;
}

.loreva-cart-remove a:hover {
  background: #ff4d4f;
  color: #fff;
}

/* =================================
Actions
================================= */
.loreva-cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.coupon {
  display: flex;
  gap: 12px;
}

.coupon input {
  width: 220px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  padding: 0 18px;
}

.coupon button,
.loreva-update-cart {
  height: 52px;
  border: none;
  border-radius: 16px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 700;
}

/* =================================
Sidebar
================================= */
.loreva-cart-sidebar {
  position: sticky;
  top: 100px;
}

.loreva-cart-sidebar .cart_totals {
  background: #fff;
  border-radius: 30px;
  border: 1px solid var(--surface-border);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.loreva-cart-sidebar h2 {
  margin-bottom: 24px;
  font-size: 26px;
}

.cart_totals table {
  width: 100%;
}

.cart_totals tr {
  border-bottom: 1px solid var(--surface-border);
}

.cart_totals th,
.cart_totals td {
  padding: 16px 0 !important;
}

.wc-proceed-to-checkout a {
  width: 100%;
  height: 58px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 800;
}

/* =================================
Tablet
================================= */
@media (max-width: 1024px) {
  .loreva-cart-layout {
    grid-template-columns: 1fr;
  }
  .loreva-cart-sidebar {
    position: static;
  }
  .loreva-cart-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }
  .loreva-cart-qty,
  .loreva-cart-subtotal,
  .loreva-cart-remove {
    justify-content: flex-start;
  }
}
/* =================================
Mobile
================================= */
@media (max-width: 768px) {
  .loreva-cart-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .loreva-cart-image {
    max-width: 180px;
    margin: auto;
  }
  .loreva-cart-qty,
  .loreva-cart-subtotal,
  .loreva-cart-remove {
    justify-content: center;
  }
  .loreva-cart-actions {
    flex-direction: column;
  }
  .coupon {
    width: 100%;
    flex-direction: column;
  }
  .coupon input,
  .coupon button,
  .loreva-update-cart {
    width: 100%;
  }
}
/* =================================
Checkout Page
================================= */
.loreva-checkout {
  padding: 60px 0 100px;
}

.loreva-checkout-header {
  margin-bottom: 40px;
}

.loreva-checkout-header h1 {
  margin: 0;
  font-size: var(--loreva-h2);
  font-weight: 800;
}

/* =================================
Layout
================================= */
.loreva-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: start;
}

/* =================================
Left Column
================================= */
.loreva-checkout-main {
  min-width: 0;
}

/* =================================
Billing / Shipping Cards
================================= */
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 24px;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 700;
}

/* =================================
Form Row
================================= */
.woocommerce form .form-row {
  margin-bottom: 18px;
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* =================================
Inputs
================================= */
.woocommerce form .input-text,
.woocommerce form select,
.select2-container--default .select2-selection--single {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  background: #fff;
  padding: 0 16px;
  transition: 0.25s;
}

.woocommerce form textarea.input-text {
  min-height: 140px;
  padding: 16px;
  resize: vertical;
}

.woocommerce form .input-text:focus,
.woocommerce form select:focus {
  outline: none;
  border-color: var(--loreva-primary);
  box-shadow: 0 0 0 4px rgba(109, 74, 255, 0.08);
}

/* =================================
Select2
================================= */
.select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
}

.select2-selection__rendered {
  line-height: 50px !important;
}

.select2-selection__arrow {
  height: 50px !important;
}

/* =================================
Sidebar
================================= */
.loreva-checkout-sidebar {
  position: sticky;
  top: 100px;
}

.loreva-checkout-sidebar > h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

/* =========================
404
========================= */
.loreva-404 {
  padding: 120px 0;
}

.loreva-404-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 20px;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: var(--loreva-primary);
}

.loreva-404 h1 {
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 800;
}

.loreva-404 p {
  margin-bottom: 40px;
  opacity: 0.7;
  font-size: 18px;
  line-height: 1.9;
}

/* =========================
Search
========================= */
.loreva-404-search {
  margin-bottom: 40px;
}

.loreva-search-form {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.loreva-search-form input {
  width: 100%;
  max-width: 500px;
  height: 56px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid var(--surface-border);
}

.loreva-search-form button {
  height: 56px;
  padding: 0 24px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
}

/* =========================
Actions
========================= */
.loreva-404-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.loreva-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  text-decoration: none;
}

/* =========================
Mobile
========================= */
@media (max-width: 768px) {
  .loreva-404 {
    padding: 80px 0;
  }
  .error-code {
    font-size: 80px;
  }
  .loreva-404 h1 {
    font-size: 30px;
  }
  .loreva-search-form {
    flex-direction: column;
  }
  .loreva-search-form button {
    width: 100%;
  }
}
/* =================================
Blog Archive
================================= */
.loreva-blog {
  padding: 60px 0 100px;
}

/* =================================
Archive Header
================================= */
.loreva-blog-header {
  margin-bottom: 48px;
}

.loreva-blog-header h1 {
  margin: 0 0 12px;
  font-size: var(--loreva-h2);
  font-weight: 800;
  line-height: 1.3;
}

.loreva-blog-description {
  max-width: 700px;
  color: var(--loreva-text-secondary);
  line-height: 1.9;
}

/* =================================
Posts Grid
================================= */
.loreva-post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* =================================
Post Card
================================= */
.loreva-post-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  overflow: hidden;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.loreva-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* =================================
Thumbnail
================================= */
.loreva-post-thumbnail {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.loreva-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.loreva-post-card:hover .loreva-post-thumbnail img {
  transform: scale(1.05);
}

/* =================================
Content
================================= */
.loreva-post-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* =================================
Category
================================= */
.loreva-post-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(109, 74, 255, 0.08);
  color: var(--loreva-primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.single-post .loreva-breadcrumb {
  margin-right: 20px;
}

/* =================================
Title
================================= */
.loreva-post-title {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}

.loreva-post-title a {
  color: var(--loreva-text-primary);
  text-decoration: none;
}

/* =================================
Excerpt
================================= */
.loreva-post-excerpt {
  color: var(--loreva-text-secondary);
  line-height: 2;
  font-size: 14px;
  margin-bottom: 20px;
  flex: 1;
}

/* =================================
Meta
================================= */
.loreva-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--loreva-text-secondary);
  font-size: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-border);
}

/* =================================
Pagination
================================= */
.navigation.pagination {
  margin-top: 60px;
}

.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.navigation.pagination a,
.navigation.pagination span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid var(--surface-border);
  background: #fff;
  transition: 0.25s;
}

.navigation.pagination a:hover {
  border-color: var(--loreva-primary);
  color: var(--loreva-primary);
}

.navigation.pagination .current {
  background: var(--loreva-primary);
  color: #fff;
  border-color: var(--loreva-primary);
}

/* =================================
Empty State
================================= */
.loreva-empty-state {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
}

.loreva-empty-state h2 {
  margin: 0;
  font-size: 24px;
}

/* =====================================
   Single Post Hero
===================================== */
.loreva-single-header {
  padding: 4rem 0 3rem;
}

.loreva-single-header .loreva-container {
  max-width: 980px;
}

/* ---------- Meta ---------- */
.loreva-single-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--loreva-text-secondary);
  font-size: var(--loreva-body-size);
}

.loreva-single-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-1);
  border: 1px solid var(--surface-border);
}

/* ---------- Title ---------- */
.loreva-single-title {
  margin: 0 auto 2rem;
  max-width: 820px;
  font-size: var(--loreva-h1);
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  color: var(--loreva-heading-color);
}

/* ---------- Thumbnail ---------- */
.loreva-single-thumbnail {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-1);
  border: 1px solid var(--surface-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.loreva-single-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}

.loreva-single-thumbnail:hover img {
  transform: scale(1.03);
}

/* =================================
Desktop
================================= */
@media (max-width: 1400px) {
  .loreva-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* =================================
Laptop
================================= */
@media (max-width: 1024px) {
  .loreva-blog {
    padding: 50px 0 80px;
  }
  .loreva-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* =================================
Mobile
================================= */
@media (max-width: 768px) {
  .loreva-blog {
    padding: 30px 0 60px;
  }
  .loreva-blog-header {
    margin-bottom: 30px;
  }
  .loreva-blog-header h1 {
    font-size: 32px;
  }
  .loreva-post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .loreva-post-content {
    padding: 20px;
  }
  .loreva-post-title {
    font-size: 18px;
  }
  .navigation.pagination {
    margin-top: 40px;
  }
  .navigation.pagination a,
  .navigation.pagination span {
    width: 44px;
    height: 44px;
  }
  .loreva-empty-state {
    padding: 40px 20px;
  }
}
/* ==================================
   Loreva Auth Layout
================================== */
.loreva-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  min-height: calc(100vh - 120px);
  background: var(--loreva-surface, #fff);
  overflow: hidden;
}

/* ==================================
   Hero Side
================================== */
.loreva-account-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.12) 0%, transparent 35%), radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.08) 0%, transparent 40%), var(--loreva-background, #f8f8f8);
}

.loreva-account-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  left: -120px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.loreva-account-hero::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: -350px;
  right: -250px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.12);
}

.account-image {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.account-image img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.account-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.account-content h2 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--loreva-heading-color, #111);
}

.account-content p {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--loreva-text-color, #666);
}

.account-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-content li {
  position: relative;
  padding-right: 28px;
  margin-bottom: 14px;
  color: var(--loreva-text-color, #555);
  line-height: 1.9;
}

.account-content li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--loreva-primary);
}

/* ==================================
   Form Side
================================== */
.loreva-auth-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #fff;
}

.auth-card {
  width: 100%;
  max-width: 460px;
}

/* ==================================
   Woo Tabs
================================== */
.woocommerce-account .u-columns {
  width: 100%;
}

.loreva-auth-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  margin-bottom: 30px;
  border-radius: 16px;
  background: #f5f5f7;
}

.loreva-auth-tab {
  flex: 1;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: 0.25s;
}

.loreva-auth-tab.active {
  background: #fff;
  color: var(--loreva-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

/* ==================================
   Form Card
================================== */
.auth-card h1 {
  margin: 0 0 30px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--loreva-heading-color, #111);
}

.auth-card .form-row {
  margin-bottom: 18px;
}

.auth-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.auth-card input[type=text],
.auth-card input[type=email],
.auth-card input[type=password],
.auth-card input[type=tel] {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  transition: 0.25s;
}

.auth-card input:focus {
  outline: none;
  border-color: var(--loreva-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
}

/* ==========================
   Auth Tabs
========================== */
.loreva-auth-tabs {
  display: flex;
  gap: 8px;
  padding: 8px;
  margin-bottom: 30px;
  background: #f5f6fa;
  border: 1px solid var(--loreva-border-color, #ececec);
  border-radius: 16px;
}

.auth-tab {
  flex: 1;
  height: 54px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--loreva-text-color, #666);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.auth-tab:hover {
  color: var(--loreva-primary);
}

.auth-tab.active {
  background: var(--loreva-primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.loreva-auth-panel {
  display: none;
}

.loreva-auth-panel.active {
  display: block;
}

.auth-tab {
  cursor: pointer;
}

.auth-tab.active {
  background: var(--loreva-primary);
  color: #fff;
}

/* ==================================
   Remember
================================== */
.remember-row {
  display: flex;
  align-items: center;
}

.remember-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.remember-row input {
  width: auto;
  height: auto;
}

/* ==================================
   Button
================================== */
.loreva-btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 14px;
  background: var(--loreva-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.loreva-btn:hover {
  transform: translateY(-2px);
}

/* ==================================
   Links
================================== */
.lost-password {
  display: block;
  margin-top: 18px;
  text-align: center;
  color: #666;
  transition: 0.25s;
}

.lost-password:hover {
  color: var(--loreva-primary);
}

/* ==================================
   Register
================================== */
.woocommerce-form-register {
  margin-top: 0;
}

.u-column1,
.u-column2 {
  width: 100%;
  float: none;
}

/* ==================================
   Reset Password
================================== */
.loreva-reset-password-layout {
  justify-content: center;
}

.loreva-reset-password-layout .auth-card {
  max-width: 520px;
}

.loreva-reset-password-layout input {
  width: 100%;
}

.loreva-reset-password-layout button {
  width: 100%;
}

/* ==================================
   Messages
================================== */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  max-width: 90%;
  margin: 10px auto;
  border-right: 5px solid var(--loreva-primary);
  border-radius: 0;
  padding: 5px 10px;
  background: var(--surface-3);
  outline: none;
}

/* ==================================
   Tablet
================================== */
@media (max-width: 1200px) {
  .loreva-auth-layout {
    grid-template-columns: minmax(0, 1fr) 460px;
  }
  .loreva-account-hero {
    padding: 60px;
  }
  .account-content h2 {
    font-size: 34px;
  }
}
/* ==================================
   Mobile
================================== */
@media (max-width: 991px) {
  .loreva-auth-layout {
    grid-template-columns: 1fr;
  }
  .loreva-account-hero {
    order: 2;
    padding: 40px;
  }
  .loreva-auth-form {
    order: 1;
    padding: 40px 25px;
  }
  .account-image {
    margin-bottom: 25px;
  }
  .account-image img {
    max-width: 100%;
  }
  .account-content h2 {
    font-size: 28px;
  }
  .auth-card {
    max-width: 100%;
  }
}
/* ==================================
   Small Mobile
================================== */
@media (max-width: 575px) {
  .loreva-account-hero {
    padding: 30px 20px;
  }
  .loreva-auth-form {
    padding: 30px 20px;
  }
  .auth-card h1 {
    font-size: 26px;
  }
  .account-content h2 {
    font-size: 24px;
  }
  .auth-card input[type=text],
  .auth-card input[type=email],
  .auth-card input[type=password],
  .auth-card input[type=tel] {
    height: 50px;
  }
  .loreva-btn {
    height: 52px;
  }
  .loreva-auth-tabs {
    flex-direction: column;
  }
}
/* =================================
Thank You Page
================================= */
.loreva-thankyou {
  padding: 60px 0 100px;
}

/* =================================
Success Header
================================= */
.loreva-thankyou-success,
.loreva-thankyou-failed {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  padding: 40px;
  text-align: center;
  margin-bottom: 32px;
}

.loreva-thankyou-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
}

.loreva-thankyou-success .loreva-thankyou-icon {
  background: #ecfdf3;
  color: #16a34a;
}

.loreva-thankyou-failed .loreva-thankyou-icon {
  background: #fef2f2;
  color: #dc2626;
}

.loreva-thankyou-success h1,
.loreva-thankyou-failed h1 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 800;
}

.loreva-thankyou-success p,
.loreva-thankyou-failed p {
  margin: 0;
  color: var(--loreva-text-secondary);
}

/* =================================
Layout
================================= */
.loreva-thankyou-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

/* =================================
Cards
================================= */
.loreva-order-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  padding: 28px;
  margin-bottom: 24px;
}

.loreva-order-card h2 {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 700;
}

/* =================================
Order Meta
================================= */
.loreva-order-meta {
  list-style: none;
  margin: 0;
  padding: 0;
}

.loreva-order-meta li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--surface-border);
}

.loreva-order-meta li:last-child {
  border: none;
  padding-bottom: 0;
}

.loreva-order-meta span {
  color: var(--loreva-text-secondary);
}

.loreva-order-meta strong {
  font-weight: 700;
}

/* =================================
Products
================================= */
.loreva-order-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--surface-border);
}

.loreva-order-item:last-child {
  border: none;
  padding-bottom: 0;
}

.loreva-order-item-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 18px;
}

.loreva-order-item-content {
  min-width: 0;
}

.loreva-order-item-content h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

.loreva-order-item-content span {
  color: var(--loreva-text-secondary);
  font-size: 14px;
}

.loreva-order-item-total {
  font-weight: 700;
  white-space: nowrap;
}

/* =================================
Sidebar
================================= */
.loreva-thankyou-sidebar {
  position: sticky;
  top: 100px;
}

/* =================================
Totals
================================= */
.loreva-order-totals {
  width: 100%;
  border-collapse: collapse;
}

.loreva-order-totals tr {
  border-bottom: 1px solid var(--surface-border);
}

.loreva-order-totals tr:last-child {
  border: none;
}

.loreva-order-totals th,
.loreva-order-totals td {
  padding: 16px 0;
  text-align: right;
}

.loreva-order-totals td {
  font-weight: 700;
}

/* =================================
Failed Actions
================================= */
.loreva-thankyou-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.loreva-thankyou-actions .button {
  min-width: 180px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.loreva-thankyou-actions .secondary {
  background: #f5f5f5;
  color: inherit;
}

/* =================================
WooCommerce Customer Details
================================= */
.woocommerce-order-details,
.woocommerce-customer-details {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  padding: 28px;
  margin-top: 24px;
}

.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
  margin-top: 0;
}

/* =================================
Tablet
================================= */
@media (max-width: 1024px) {
  .loreva-thankyou-grid {
    grid-template-columns: 1fr;
  }
  .loreva-thankyou-sidebar {
    position: static;
  }
}
/* =================================
Mobile
================================= */
@media (max-width: 768px) {
  .loreva-thankyou {
    padding: 30px 0 60px;
  }
  .loreva-thankyou-success,
  .loreva-thankyou-failed {
    padding: 24px;
  }
  .loreva-thankyou-success h1,
  .loreva-thankyou-failed h1 {
    font-size: 26px;
  }
  .loreva-order-card {
    padding: 20px;
  }
  .loreva-order-item {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
  }
  .loreva-order-item-image img {
    width: 70px;
    height: 70px;
  }
  .loreva-order-item-total {
    grid-column: 2;
    margin-top: 8px;
  }
  .loreva-order-meta li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .loreva-thankyou-actions {
    flex-direction: column;
  }
  .loreva-thankyou-actions .button {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
