:root {
  --ev-blue: #2f6df6;
  --ev-blue-soft: #2f6df6;
  --ev-ink: #07121f;
  --ev-ink-soft: #132338;
  --ev-white: #ffffff;
  --ev-mist: #dce7ff;
  --ev-bg: #f7faff;
  --ev-surface: rgba(255, 255, 255, 0.76);
  --ev-surface-strong: rgba(255, 255, 255, 0.94);
  --ev-card: rgba(255, 255, 255, 0.9);
  --ev-border: rgba(13, 35, 66, 0.08);
  --ev-text: #07121f;
  --ev-text-soft: rgba(7, 18, 31, 0.68);
  --ev-shadow: 0 24px 60px rgba(7, 18, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(47, 109, 246, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: var(--ev-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.ev-main {
  min-height: 100vh;
}

.ev-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--ev-border);
}

.ev-header__notice {
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--ev-text-soft);
  border-bottom: 1px solid var(--ev-border);
}

.ev-header__inner,
.ev-footer__inner,
.ev-hero,
.ev-section {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.ev-header__inner {
  display: grid;
  grid-template-columns: auto minmax(300px, 1fr) auto;
  grid-template-areas:
    "brand nav actions"
    "search search search";
  align-items: center;
  gap: 0.8rem 1.25rem;
  min-height: 96px;
  padding: 0.7rem 0;
}

.ev-mobile-menu {
  display: none;
  position: relative;
}

.ev-mobile-menu__toggle {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.34rem;
  border-radius: 16px;
  border: 1px solid var(--ev-border);
  background: var(--ev-surface);
  cursor: pointer;
  list-style: none;
}

.ev-mobile-menu__toggle::-webkit-details-marker {
  display: none;
}

.ev-mobile-menu__toggle span {
  width: 20px;
  height: 2px;
  background: var(--ev-ink);
  border-radius: 999px;
}

.ev-mobile-menu__panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  width: min(340px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid var(--ev-border);
  background: var(--ev-surface-strong);
  box-shadow: var(--ev-shadow);
}

.ev-mobile-menu__nav {
  display: grid;
  gap: 0.55rem;
}

.ev-mobile-menu__nav a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--ev-border);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  color: var(--ev-ink);
}

.ev-mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ev-mobile-menu__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--ev-blue);
  background: rgba(47, 109, 246, 0.1);
}

.ev-mobile-menu__icon svg {
  width: 20px;
  height: 20px;
}

.ev-brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ev-ink);
}

.ev-brand img {
  width: 46px;
  height: 46px;
}

.ev-nav--desktop {
  grid-area: nav;
  min-width: 0;
  justify-self: center;
}

.ev-nav ul,
.menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.7rem, 1.05vw, 1.15rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.ev-nav a {
  color: var(--ev-text-soft);
  display: inline-flex;
  font-weight: 600;
  font-size: clamp(0.84rem, 0.8vw, 0.95rem);
  line-height: 1.1;
  white-space: nowrap;
}

.ev-header__actions {
  grid-area: actions;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.ev-header__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--ev-border);
  background: var(--ev-surface);
  color: var(--ev-ink);
  font-weight: 700;
}

.ev-header__icon::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: currentColor;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.ev-header__icon--shop::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8h16l-1 11H5L4 8Zm3-3h10l1 3H6l1-3Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8h16l-1 11H5L4 8Zm3-3h10l1 3H6l1-3Z' fill='black'/%3E%3C/svg%3E");
}

.ev-header__icon--cart::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6h14l-1.5 7.5H8L6 6Zm0 0L5 3H2' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='19' r='1.5' fill='black'/%3E%3Ccircle cx='17' cy='19' r='1.5' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6h14l-1.5 7.5H8L6 6Zm0 0L5 3H2' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='19' r='1.5' fill='black'/%3E%3Ccircle cx='17' cy='19' r='1.5' fill='black'/%3E%3C/svg%3E");
}

.ev-cart-count {
  position: absolute;
  top: -0.32rem;
  right: -0.24rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2f6df6;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(47, 109, 246, 0.32);
}

.ev-cart-count.is-empty {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.ev-header__icon--account::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm-7 8a7 7 0 0 1 14 0' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm-7 8a7 7 0 0 1 14 0' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ev-header__icon-label {
  line-height: 1;
}

.ev-header__icon--account-compact {
  width: 46px;
  min-width: 46px;
  height: 46px;
  justify-content: center;
  padding: 0;
}

.ev-product-search {
  grid-area: search;
  position: relative;
  width: min(760px, 100%);
  max-width: none;
  justify-self: center;
}

.ev-product-search__field {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem;
  border: 1px solid rgba(13, 35, 66, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 36px rgba(7, 18, 31, 0.06);
}

.ev-product-search__field::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-left: 0.75rem;
  background: rgba(7, 18, 31, 0.52);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 21-4.35-4.35M10.8 18a7.2 7.2 0 1 1 0-14.4 7.2 7.2 0 0 1 0 14.4Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 21-4.35-4.35M10.8 18a7.2 7.2 0 1 1 0-14.4 7.2 7.2 0 0 1 0 14.4Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ev-product-search input[type="search"] {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ev-ink);
  font: inherit;
  font-size: 0.94rem;
}

.ev-product-search input[type="search"]::placeholder {
  color: rgba(7, 18, 31, 0.48);
}

.ev-product-search button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 0.92rem;
  background: var(--ev-blue);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}

.ev-product-search__suggestions {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  gap: 0.25rem;
  max-height: min(460px, calc(100vh - 180px));
  padding: 0.55rem;
  overflow: auto;
  border: 1px solid rgba(13, 35, 66, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(7, 18, 31, 0.16);
  backdrop-filter: blur(24px);
}

.ev-product-search__result {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem;
  border-radius: 18px;
  color: var(--ev-ink);
}

.ev-product-search__result:hover,
.ev-product-search__result:focus {
  background: rgba(47, 109, 246, 0.08);
}

.ev-product-search__thumb {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
}

.ev-product-search__thumb img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.ev-product-search__copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.ev-product-search__copy strong,
.ev-product-search__copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ev-product-search__copy strong {
  font-size: 0.92rem;
}

.ev-product-search__copy small {
  color: var(--ev-text-soft);
  font-size: 0.76rem;
}

.ev-product-search__price {
  color: var(--ev-blue);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.ev-product-search__message {
  padding: 0.9rem 1rem;
  color: var(--ev-text-soft);
  font-size: 0.9rem;
}

.ev-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 5.5rem 0 3rem;
}

.ev-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--ev-blue-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
}

.ev-hero h1,
.ev-section__heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--ev-ink);
}

.ev-lead {
  max-width: 48rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--ev-text-soft);
  margin: 1.4rem 0 0;
}

.ev-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.ev-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 16px;
  border: 1px solid var(--ev-blue);
  background: var(--ev-blue);
  color: var(--ev-white);
  box-shadow: var(--ev-shadow);
  font-weight: 700;
}

.ev-button--ghost {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ev-ink);
  box-shadow: none;
}

.ev-hero__visual {
  justify-self: end;
  width: min(100%, 500px);
  padding: 1rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.82)),
    radial-gradient(circle at top, rgba(47, 109, 246, 0.16), transparent 55%);
  border: 1px solid var(--ev-border);
  box-shadow: var(--ev-shadow);
}

.ev-hero-carousel {
  display: grid;
  gap: 0.85rem;
}

.ev-hero-carousel__card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: 24px;
  border: 1px solid var(--ev-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(7, 18, 31, 0.06);
}

.ev-hero-carousel__card.is-active {
  transform: translateY(-2px);
  border-color: rgba(47, 109, 246, 0.28);
}

.ev-hero-carousel__frame {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(47, 109, 246, 0.12), rgba(255, 255, 255, 0.88));
}

.ev-hero-carousel__frame img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #fff;
}

.ev-hero-carousel__text {
  display: grid;
  gap: 0.2rem;
  color: var(--ev-ink);
}

.ev-hero-carousel__text strong {
  font-size: 1rem;
  line-height: 1.25;
}

.ev-hero-carousel__text span {
  color: var(--ev-text-soft);
  font-weight: 700;
}

.ev-hero-carousel__empty {
  border-radius: 24px;
  overflow: hidden;
}

.ev-section {
  padding: 2rem 0 3rem;
}

.ev-section__heading {
  margin-bottom: 1.5rem;
}

.ev-section__heading h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.ev-trust-grid,
.ev-promo-grid,
.ev-category-grid,
.ev-product-grid {
  display: grid;
  gap: 1rem;
}

.ev-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ev-promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ev-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ev-trust-card,
.ev-promo-card,
.ev-category-card,
.ev-testimonial,
.ev-content article,
.ev-post {
  padding: 1.5rem;
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: 24px;
  color: var(--ev-ink);
}

.ev-category-card {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(47, 109, 246, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(7, 18, 31, 0.05);
}

.ev-category-card__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: var(--ev-blue);
  background: rgba(47, 109, 246, 0.1);
}

.ev-category-card__icon svg {
  width: 24px;
  height: 24px;
}

.ev-trust-card__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: var(--ev-blue);
  background: rgba(47, 109, 246, 0.1);
}

.ev-trust-card__icon svg {
  width: 24px;
  height: 24px;
}

.ev-category-card__label {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ev-category-card__meta {
  color: var(--ev-text-soft);
}

.ev-product-grid,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product,
.ev-product-card {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96));
  border: 1px solid var(--ev-border);
  box-shadow: 0 14px 32px rgba(7, 18, 31, 0.05);
}

.ev-product-card__image {
  aspect-ratio: 5 / 6;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.95rem;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247, 250, 255, 1), rgba(232, 240, 255, 1));
}

.ev-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border-radius: 14px;
  display: block;
}

.ev-product-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(247, 250, 255, 1), rgba(232, 240, 255, 1));
}

.ev-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 1rem;
}

.ev-product-card__category {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ev-blue);
  line-height: 1.45;
}

.ev-product-card__category a {
  color: inherit;
}

.ev-product-card h2,
.woocommerce ul.products li.product h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ev-product-card__price,
.woocommerce ul.products li.product .price {
  margin: 0;
  font-weight: 700;
  color: var(--ev-ink);
}

.ev-stock {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.ev-stock--in {
  background: rgba(77, 195, 111, 0.12);
  color: #1c8e3e;
}

.ev-stock--out {
  background: rgba(240, 77, 77, 0.1);
  color: #b93d3d;
}

.ev-product-card__actions,
.woocommerce ul.products li.product .button {
  margin-top: auto;
}

.ev-testimonial blockquote {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.4;
  color: var(--ev-ink);
}

.ev-footer {
  border-top: 1px solid var(--ev-border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ev-ink);
}

.ev-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  padding: 2rem 0;
  align-items: start;
}

.ev-footer__credit {
  white-space: nowrap;
  color: var(--ev-blue);
}

.ev-footer__legal {
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.ev-cookie-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
}

.ev-cookie-notice__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--ev-border);
  background: var(--ev-surface-strong);
  box-shadow: var(--ev-shadow);
}

.ev-cookie-notice__inner p {
  margin: 0;
  color: var(--ev-text-soft);
  font-size: 0.95rem;
}

.ev-cookie-notice__button {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  background: var(--ev-blue);
  color: var(--ev-white);
  font-weight: 700;
  cursor: pointer;
}

.ev-messenger-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0.75rem 1rem 0.75rem 0.8rem;
  border: 1px solid rgba(47, 109, 246, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(64, 131, 255, 1), rgba(47, 109, 246, 1));
  color: var(--ev-white);
  box-shadow: var(--ev-shadow);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.ev-messenger-fab__icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--ev-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ev-messenger-fab__label {
  line-height: 1;
}

.ev-messenger-fab__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.ev-social-login {
  margin-top: 1.2rem;
}

.ev-social-login > p {
  margin: 0 0 0.8rem;
  color: var(--ev-text-soft);
}

.ev-social-login__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ev-social-login__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--ev-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ev-white);
  text-decoration: none;
}

.ev-social-login__button--disabled {
  opacity: 0.58;
  cursor: default;
}

.ev-social-login__button--google {
  border-color: var(--ev-blue);
}

.ev-social-login__button--facebook {
  border-color: var(--ev-blue);
}

.ev-social-login__button--apple {
  border-color: rgba(255, 255, 255, 0.2);
}

.ev-social-login__hint {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--ev-text-soft);
}

.ev-account-shell {
  display: grid;
  gap: 1.75rem;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  min-width: 0;
}

.ev-account-hero {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
}

.ev-account-kicker {
  margin: 0;
  color: var(--ev-blue-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.ev-account-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1;
}

.ev-account-hero p {
  margin: 0;
  max-width: 36rem;
  color: var(--ev-text-soft);
  font-size: 1.02rem;
}

.ev-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
  min-width: 0;
}

.ev-account-card {
  padding: clamp(1.4rem, 2vw, 2rem);
  border: 1px solid var(--ev-border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94)),
    radial-gradient(circle at top right, rgba(47, 109, 246, 0.12), transparent 40%);
  box-shadow: var(--ev-shadow);
  min-width: 0;
  overflow: hidden;
  color: var(--ev-ink);
}

.ev-account-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.ev-account-card > p {
  margin: 0 0 1rem;
  color: var(--ev-text-soft);
}

.ev-account-card .form-row {
  margin: 0 0 1rem;
}

.ev-account-card label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.ev-account-card input[type="text"],
.ev-account-card input[type="email"],
.ev-account-card input[type="password"] {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--ev-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ev-ink);
  max-width: 100%;
}

.ev-account-card .woocommerce-form-login__rememberme,
.ev-account-card .woocommerce-form-register__privacy-policy-text,
.ev-account-card .lost_password {
  color: var(--ev-text-soft);
}

.ev-account-card .woocommerce-form-login__rememberme label,
.ev-account-card .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.ev-account-card .woocommerce-form-login__rememberme input[type="checkbox"] {
  flex: 0 0 auto;
}

.ev-account-card .woocommerce-button,
.ev-account-card button.button,
.ev-account-card .button {
  width: 100%;
  justify-content: center;
}

.ev-account-sep {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0 0;
  color: var(--ev-text-soft);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ev-account-sep::before,
.ev-account-sep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ev-border);
}

.ev-shop-archive .woocommerce-notices-wrapper,
.ev-single-product .woocommerce-notices-wrapper {
  margin-bottom: 1rem;
}

.ev-breadcrumbs,
.ev-breadcrumbs--archive,
.ev-breadcrumbs--single {
  margin: 0 0 1rem;
  color: var(--ev-text-soft);
  font-size: 0.9rem;
}

.ev-breadcrumbs a {
  color: var(--ev-blue);
}

.ev-breadcrumbs .woocommerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.ev-single-product__shell {
  display: grid;
  gap: 1.5rem;
}

.ev-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: start;
}

.ev-product-hero__media,
.ev-product-hero__content,
.ev-product-detail-card,
.ev-product-review-block {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--ev-border);
  border-radius: 28px;
  box-shadow: 0 14px 32px rgba(7, 18, 31, 0.05);
}

.ev-product-hero__media {
  padding: 1rem;
}

.ev-product-hero__media .woocommerce-product-gallery,
.ev-product-hero__media .woocommerce-product-gallery__wrapper,
.ev-product-hero__media .woocommerce-product-gallery__image {
  min-width: 0;
}

.ev-product-hero__media .woocommerce-product-gallery__wrapper {
  display: grid;
  gap: 0.85rem;
}

.woocommerce div.product .ev-product-hero__media img,
.ev-product-hero__media .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  max-height: clamp(360px, 62vw, 620px);
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(247, 250, 255, 1), rgba(232, 240, 255, 1));
  border-radius: 24px;
}

.ev-product-hero__content {
  padding: 1.35rem;
}

.ev-product-hero__content .product_title {
  margin: 0.35rem 0 0;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  max-width: 12ch;
}

.ev-product-hero__price {
  margin: 0.6rem 0 0.2rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ev-product-hero__summary {
  color: var(--ev-text-soft);
  line-height: 1.65;
  margin: 0.95rem 0 1rem;
  max-width: 50ch;
}

.ev-product-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ev-product-hero__sku {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--ev-border);
  background: rgba(248, 250, 255, 0.92);
  color: var(--ev-text-soft);
  font-size: 0.85rem;
}

.ev-product-hero__cart .cart,
.ev-product-hero__cart form.cart {
  display: grid;
  gap: 0.9rem;
}

.ev-product-hero__cart form.cart .variations,
.ev-product-hero__cart form.cart .single_variation_wrap,
.ev-product-hero__cart form.cart .woocommerce-variation-add-to-cart {
  width: 100%;
}

.ev-product-hero__cart form.cart .quantity {
  margin-right: 0.65rem;
}

.ev-product-hero__cart .product_meta {
  padding-top: 0.6rem;
  border-top: 1px solid var(--ev-border);
  color: var(--ev-text-soft);
  font-size: 0.95rem;
}

.ev-product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.ev-product-detail-card,
.ev-product-review-block {
  padding: 1.35rem;
}

.ev-product-detail-card h2,
.ev-product-review-block h2 {
  margin-top: 0.35rem;
  letter-spacing: -0.04em;
}

.ev-product-detail-card p,
.ev-product-review-block p {
  color: var(--ev-text-soft);
  line-height: 1.75;
}

.ev-product-detail-card__content {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.ev-product-review-block {
  display: grid;
  gap: 1rem;
}

.ev-product-review-block__body .woocommerce-Reviews,
.ev-product-review-block__body .comment-respond {
  margin-top: 0;
}

.ev-product-review-block__body .commentlist {
  display: grid;
  gap: 0.75rem;
  padding: 0;
}

.ev-product-review-block__body .commentlist li {
  list-style: none;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--ev-border);
  background: rgba(250, 252, 255, 0.92);
}

.ev-product-review-block__body .comment-reply-title,
.ev-product-review-block__body .woocommerce-noreviews {
  font-size: 1.1rem;
}


.woocommerce .quantity .qty {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--ev-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ev-ink);
}

.woocommerce div.product div.images,
.woocommerce div.product .woocommerce-product-gallery {
  min-width: 0;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
  display: grid;
  gap: 0.75rem;
}

.woocommerce div.product div.images img,
.woocommerce div.product .woocommerce-product-gallery__wrapper img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 680px);
  object-fit: contain;
  background: linear-gradient(180deg, rgba(247, 250, 255, 1), rgba(232, 240, 255, 1));
  border-radius: 24px;
}

.woocommerce div.product .woocommerce-product-gallery__image {
  border-radius: 24px;
  overflow: hidden;
}

.woocommerce div.product .summary {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ev-border);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 14px 32px rgba(7, 18, 31, 0.05);
}

.woocommerce div.product .product_title {
  letter-spacing: -0.04em;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 2rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  border-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid var(--ev-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 0.65rem 1rem;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding-top: 1rem;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.woocommerce-checkout form.checkout .col2-set,
.woocommerce-checkout form.checkout #order_review_heading,
.woocommerce-checkout form.checkout #order_review {
  float: none;
  width: 100%;
  min-width: 0;
}

.woocommerce-checkout form.checkout .woocommerce-billing-fields,
.woocommerce-checkout form.checkout .woocommerce-shipping-fields,
.woocommerce-checkout form.checkout .woocommerce-additional-fields,
.woocommerce-checkout form.checkout #order_review_heading,
.woocommerce-checkout form.checkout #order_review {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ev-border);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 14px 32px rgba(7, 18, 31, 0.05);
}

.woocommerce-checkout form.checkout .col2-set {
  display: grid;
  gap: 1rem;
}

.woocommerce-checkout form.checkout .col2-set .col-1,
.woocommerce-checkout form.checkout .col2-set .col-2 {
  width: 100%;
  float: none;
}

.woocommerce-checkout #payment {
  background: transparent;
  border: 0;
}

.woocommerce-checkout #payment .form-row {
  margin-bottom: 0.8rem;
}

.woocommerce div.product form.cart .button {
  min-height: 52px;
}

.woocommerce-pagination {
  margin: 1.75rem 0 0;
}

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

.woocommerce-pagination ul.page-numbers li {
  list-style: none;
  margin: 0;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--ev-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ev-ink);
  text-decoration: none;
  font-weight: 700;
}

.woocommerce-pagination .page-numbers.current,
.woocommerce-pagination .page-numbers:hover {
  background: var(--ev-blue);
  border-color: var(--ev-blue);
}

.woocommerce-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  min-width: 0;
  padding: 0 0.2rem;
}

@media (max-width: 1024px) {
  .ev-header__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "menu brand actions"
      "search search search";
  }

  .ev-nav--desktop {
    display: none;
  }

  .ev-mobile-menu {
    display: block;
    grid-area: menu;
  }

  .ev-brand {
    justify-self: center;
  }

  .ev-hero,
  .ev-trust-grid,
  .ev-promo-grid,
  .ev-category-grid,
  .ev-footer__inner,
  .ev-product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ev-hero {
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .ev-header__inner {
    display: grid;
    min-height: 74px;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "menu brand actions"
      "search search search";
  }

  .ev-nav--desktop {
    display: none;
  }

  .ev-mobile-menu {
    display: block;
    grid-area: menu;
  }

  .ev-header__actions {
    gap: 0.4rem;
    grid-area: actions;
  }

  .ev-header__icon {
    min-width: 44px;
    min-height: 44px;
    padding: 0.65rem 0.7rem;
    border-radius: 14px;
    font-size: 0.82rem;
  }

  .ev-header__icon-label {
    display: none;
  }

  .ev-header__icon--signin .ev-header__icon-label {
    display: inline;
  }

  .ev-product-search {
    grid-area: search;
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .ev-product-search__field {
    border-radius: 18px;
  }

  .ev-product-search button {
    padding-inline: 0.8rem;
  }

  .ev-product-search__suggestions {
    border-radius: 20px;
  }

  .ev-product-search__result {
    grid-template-columns: 46px 1fr;
  }

  .ev-product-search__price {
    grid-column: 2;
    justify-self: start;
  }

  .ev-brand {
    grid-area: brand;
    justify-self: center;
    gap: 0;
  }

  .ev-brand span {
    display: none;
  }

  .ev-brand img {
    width: 40px;
    height: 40px;
  }

  .ev-hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .ev-trust-grid,
  .ev-promo-grid,
  .ev-category-grid,
  .ev-footer__inner {
    grid-template-columns: 1fr;
  }

  .ev-product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .ev-account-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .ev-account-shell,
  .ev-account-grid,
  .ev-account-card {
    min-width: 0;
  }

  .ev-account-card .form-row,
  .ev-account-card .woocommerce-form-row {
    float: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .ev-account-card .form-row label,
  .ev-account-card .woocommerce-form-row label {
    width: 100%;
  }

  .ev-account-card .form-row input,
  .ev-account-card .woocommerce-form-row input {
    max-width: 100%;
  }

  .ev-account-card .woocommerce-form-login__rememberme {
    display: block;
  }

  .woocommerce ul.products li.product,
  .ev-product-card {
    padding: 0.8rem;
    border-radius: 18px;
  }

  .ev-product-card h2,
  .woocommerce ul.products li.product h2 {
    font-size: 0.92rem;
    min-height: 0;
  }

  .ev-product-card__image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .ev-product-card__category {
    font-size: 0.72rem;
  }

  .woocommerce ul.products li.product .button,
  .ev-button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button {
    min-height: 44px;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .ev-messenger-fab {
    right: 0.9rem;
    bottom: 0.9rem;
    min-height: 52px;
    padding: 0.72rem 0.9rem 0.72rem 0.72rem;
  }

  .ev-messenger-fab__label {
    display: none;
  }

  .woocommerce-pagination {
    margin-top: 1.25rem;
  }

.woocommerce-pagination .page-numbers {
    min-width: 38px;
    min-height: 38px;
    padding: 0.35rem 0.65rem;
    font-size: 0.92rem;
  }
}

.ev-product-gallery,
.ev-product-gallery__stage,
.ev-product-gallery__frame {
  min-width: 0;
}

.ev-product-gallery {
  display: grid;
  gap: 0.9rem;
}

.ev-product-gallery__stage {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
}

.ev-product-gallery__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: clamp(320px, 42vw, 560px);
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border-radius: 24px;
  border: 1px solid rgba(39, 85, 203, 0.12);
  background: linear-gradient(180deg, rgba(247, 250, 255, 1), rgba(232, 240, 255, 1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.woocommerce div.product .ev-product-gallery__image,
.ev-product-gallery__image,
.ev-product-gallery-strip__image {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(58vh, 560px);
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

.ev-product-hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.ev-product-hero__facts div {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--ev-border);
  background: rgba(248, 250, 255, 0.9);
}

.ev-product-hero__facts span {
  display: block;
  color: var(--ev-text-soft);
  font-size: 0.84rem;
  margin-bottom: 0.2rem;
}

.ev-product-hero__facts strong {
  display: block;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.ev-product-detail-card__list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
}

.ev-product-detail-card__list li {
  list-style: none;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(39, 85, 203, 0.12);
  background: rgba(248, 250, 255, 0.92);
  color: var(--ev-text-soft);
}

.ev-product-gallery-strip {
  display: grid;
  gap: 0.9rem;
}

.ev-product-gallery-strip__header p {
  max-width: 60ch;
}

.ev-product-gallery-strip__header {
  display: grid;
  gap: 0.35rem;
}

.ev-product-gallery-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.ev-product-gallery-strip__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  min-height: 320px;
  padding: 0.8rem;
  border-radius: 22px;
  border: 1px solid var(--ev-border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(7, 18, 31, 0.04);
  overflow: hidden;
}

.ev-product-gallery__frame::before,
.ev-product-gallery-strip__item::before {
  content: "";
  position: absolute;
  inset: 18% 22%;
  background-image: var(--ev-watermark-logo);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(28%, 160px);
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

.ev-product-gallery-strip__image {
  max-height: 400px;
}

@media (max-width: 991px) {
  .ev-product-hero,
  .ev-product-detail-grid {
    grid-template-columns: 1fr;
  }

  .ev-product-gallery-strip__grid,
  .ev-product-hero__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ev-product-hero__content,
  .ev-product-detail-card,
  .ev-product-review-block,
  .ev-product-hero__media {
    padding: 1.1rem;
  }

  .ev-product-hero__cart form.cart .quantity {
    margin-right: 0;
  }

  .ev-product-gallery__image,
  .ev-product-gallery-strip__image {
    width: auto;
    max-width: 86%;
    max-height: min(36vh, 300px);
  }

  .ev-product-gallery__frame,
  .ev-product-gallery-strip__item {
    min-height: 200px;
    padding: 0.55rem;
  }
}
