/*
Theme Name: DOGid Shop
Theme URI: https://dogid.local
Author: DOGid Dev
Author URI: https://dogid.local
Description: Motyw WooCommerce dla sklepu DOGid.
Version: 0.1.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: dogid-shop
*/

:root {
  --dogid-bg: #376d26;
  --dogid-bg-deep: #376d26;
  --dogid-text: #f3f8e8;
  --dogid-muted: #dbe7cb;
  --dogid-accent: #d9db45;
  --dogid-accent-strong: #c9cd2f;
  --dogid-accent-hover-bg: #94b506;
  --dogid-accent-hover-text: #fff;
  --dogid-card: #ffffff;
  --dogid-qty-bg: #225D2D;
  --dogid-footer-bg: #376d26;
  --dogid-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
  --site-width: 1220px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --font-main: "Poppins", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: var(--dogid-bg);
  color: var(--dogid-text);
  font-size: 18px;
  line-height: 1.55;
}

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

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

.site-main,
.dogid-shell {
  width: min(var(--site-width), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(55, 109, 38, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-header__inner {
  width: 100%;
  margin-inline: 0;
  padding-inline: 20px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-brand img {
  width: 177px;
  height: 36px;
  display: block;
  max-width: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.98rem;
}

.site-nav .menu-item {
  opacity: 0.95;
}

.site-nav .menu-item:hover,
.site-nav .current-menu-item {
  color: #fff;
  opacity: 1;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dogid-mobile-nav {
  display: none;
  position: relative;
}

.dogid-mobile-nav__toggle {
  list-style: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(217, 219, 69, 0.5);
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}

.dogid-mobile-nav__toggle::-webkit-details-marker {
  display: none;
}

.dogid-mobile-nav__toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--dogid-accent);
}

.dogid-mobile-nav__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 220px;
  border-radius: 14px;
  border: 1px solid rgba(217, 219, 69, 0.35);
  background: rgba(34, 92, 24, 0.98);
  box-shadow: 0 16px 34px rgba(9, 22, 13, 0.45);
  padding: 10px;
  display: grid;
  gap: 6px;
  z-index: 35;
}

.dogid-mobile-nav__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f3f8e8;
}

.dogid-mobile-nav__panel a:hover {
  background: rgba(217, 219, 69, 0.14);
}

.dogid-btn,
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border: 0;
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-weight: 700;
  background: var(--dogid-accent);
  color: #205f1d;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.dogid-btn:hover,
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--dogid-accent-hover-bg);
  color: var(--dogid-accent-hover-text);
  transform: translateY(-1px);
}

.dogid-btn--account {
  font-size: 0.96rem;
  padding-inline: 24px;
}

.dogid-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(217, 219, 69, 0.5);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.dogid-shell {
  width: min(1000px, calc(100% - 40px));
  padding-top: 36px;
  padding-bottom: 45px;
}

.dogid-shop-rules-screen {
  width: min(980px, 100%);
  margin: 56px auto 90px;
  color: var(--dogid-text);
}

.dogid-shop-rules-content {
  display: grid;
  gap: 34px;
}

.dogid-shop-rules-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  color: #fff;
}

.dogid-shop-rules-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.25;
  color: #fff;
}

.dogid-shop-rules-section p {
  margin: 0 0 14px;
}

.dogid-shop-rules-section ol,
.dogid-shop-rules-section ul {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 10px;
}

.dogid-shop-rules-section li > ul,
.dogid-shop-rules-section li > ol {
  margin-top: 10px;
}

.dogid-shop-rules-section a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dogid-shop-hero {
  max-width: 930px;
  margin-bottom: 42px;
}

.dogid-shop-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.dogid-shop-hero__content {
  color: var(--dogid-muted);
  font-size: 1.05rem;
}

.woocommerce ul.products.dogid-product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 80px;
}

.woocommerce ul.products li.product.dogid-product-card {
  width: 100%;
  margin: 0;
  float: none;
  color: var(--dogid-text);
}

.dogid-card__media {
  background: var(--dogid-card);
  border-radius: var(--radius-xl);
  height: 218px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--dogid-shadow);
  padding: 16px;
}

.dogid-card__media img {
  max-height: 180px;
  width: auto;
}

.dogid-card__body {
  margin-top: 14px;
}

.dogid-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.dogid-card__price,
.woocommerce ul.products li.product .price {
  margin: 9px 0 10px;
  color: var(--dogid-accent);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}

.dogid-card__price .woocommerce-Price-currencySymbol {
  font-size: 20px;
}

.dogid-loop-add-form {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
}

.dogid-qty {
  display: inline-flex;
  align-items: center;
  background: var(--dogid-qty-bg);
  border-radius: var(--radius-pill);
  width: 105px;
  min-width: 105px;
  height: 40px;
  padding: 0 35px 0 6px;
  position: relative;
}

.dogid-qty__btn {
  border: 0;
  background: transparent;
  width: 24px;
  height: 24px;
  color: var(--dogid-accent);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dogid-qty__btn--minus {
  color: #dce86d;
}

.dogid-qty__btn--plus {
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dogid-accent);
  color: #2d7322;
  font-size: 1.8rem;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.dogid-qty__btn--plus:hover {
  background: var(--dogid-accent-hover-bg);
  color: var(--dogid-accent-hover-text);
}

.dogid-qty .quantity {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dogid-qty input.qty {
  width: 18px;
  height: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #f8fef0;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  margin: 0;
  -moz-appearance: textfield;
}

.dogid-qty input.qty::-webkit-outer-spin-button,
.dogid-qty input.qty::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.woocommerce ul.products li.product .button.dogid-add-button {
  margin: 0;
  min-height: 40px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    var(--dogid-footer-bg) url("assets/img/dog-paw-2.svg") right bottom / 430px auto no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

.site-footer::before,
.site-footer::after {
  content: none;
}

.site-footer__inner {
  width: 100%;
  margin-inline: 0;
  position: relative;
  z-index: 1;
  padding: 78px 20px 96px;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 33%) repeat(3, minmax(0, 1fr));
}

.site-footer__logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: start;
}

.site-footer__logo img {
  width: 350px;
  height: 71px;
  max-width: none;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f5f9ef;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--dogid-muted);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin-inline: 0;
  padding-inline: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.site-content {
  min-height: calc(100vh - 74px);
  min-height: calc(100dvh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-header__actions .dogid-icon-link {
  position: relative;
}

.site-header__actions .dogid-icon-link::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-2px);
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(32, 95, 29, 0.96);
  border: 1px solid rgba(217, 219, 69, 0.7);
  color: var(--dogid-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease, transform 0.14s ease;
  z-index: 30;
}

@media (hover: hover) and (pointer: fine) {
  .site-header__actions .dogid-icon-link:hover::after,
  .site-header__actions .dogid-icon-link:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.site-header__actions .dogid-icon-link svg {
  width: 18px;
  height: 18px;
  fill: var(--dogid-accent);
}

.site-header__actions .dogid-icon-link--profile.is-logout {
  border-color: transparent;
}

.site-header__actions .dogid-icon-link--profile.is-logout svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--dogid-accent);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header__actions .dogid-icon-link--profile.is-logout svg .dogid-logout-arc {
  stroke: rgba(217, 219, 69, 0.55);
}

.site-header__actions .dogid-icon-link--profile.is-logout svg .dogid-logout-arrow {
  stroke: var(--dogid-accent);
}

.site-header__actions .dogid-icon-link--profile.is-logout svg path {
  vector-effect: non-scaling-stroke;
}

.dogid-cart-count {
  position: absolute;
  right: -7px;
  top: -6px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f36d76;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  padding: 0 3px;
}

.dogid-cart-count.is-hidden {
  display: none;
}

.dogid-single-shell {
  width: min(1200px, calc(100% - 64px));
  margin: 44px auto 120px;
}

.dogid-single-product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 34px;
  position: relative;
}

.dogid-product-gallery__viewport {
  position: relative;
  background: #ededed;
  border-radius: 30px;
  min-height: 520px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 38px 46px;
}

.dogid-product-gallery__track {
  width: 100%;
  flex: 1;
  min-width: 0;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dogid-product-gallery__track::-webkit-scrollbar {
  display: none;
}

.dogid-product-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.dogid-product-gallery__slide.is-active {
  display: flex;
}

.dogid-product-gallery__img {
  max-width: 390px;
  max-height: 390px;
  width: auto;
  height: auto;
}

.dogid-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dogid-accent);
  color: #2d7322;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.dogid-gallery-arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.dogid-gallery-arrow--next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.dogid-gallery-arrow--prev::before {
  transform: rotate(-135deg) translate(-1px, 1px);
}

.dogid-gallery-arrow:hover {
  background: var(--dogid-accent-hover-bg);
  color: var(--dogid-accent-hover-text);
}

.dogid-gallery-arrow--prev {
  left: 12px;
}

.dogid-gallery-arrow--next {
  right: 12px;
}

.dogid-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.dogid-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(217, 219, 69, 0.5);
  padding: 0;
  cursor: pointer;
}

.dogid-gallery-dot.is-active {
  background: var(--dogid-accent);
}

.dogid-product-summary {
  max-width: 560px;
  padding-top: 8px;
}

.dogid-product-summary__title {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 500;
}

.dogid-product-summary__description {
  color: #ecf5df;
  font-size: 1.06rem;
  line-height: 1.55;
}

.dogid-product-summary__description p {
  margin: 0 0 14px;
}

.dogid-product-summary__price {
  margin: 18px 0 16px;
  color: var(--dogid-accent);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.dogid-product-summary__price .woocommerce-Price-currencySymbol {
  font-size: 42px;
}

.dogid-product-add-form {
  margin-bottom: 22px;
}

.dogid-product-add-form .dogid-qty {
  width: 112px;
  min-width: 112px;
}

.dogid-product-add-form .dogid-add-button {
  min-width: 172px;
}

.dogid-product-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 1.04rem;
  color: #dce8c8;
}

.dogid-product-meta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dogid-product-meta-list img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
}

.dogid-product-meta-list a {
  color: var(--dogid-accent);
  font-weight: 500;
}

.woocommerce-account .site-content {
  justify-content: flex-start;
}

.woocommerce-account:not(.logged-in) .site-main {
  width: min(1200px, calc(100% - 64px));
  margin: 44px auto 110px;
}

.woocommerce-account:not(.logged-in) .site-main .dogid-account-page {
  margin: 0;
}

.woocommerce-account:not(.logged-in) .site-main .woocommerce {
  max-width: 570px;
  margin: 0;
}

.woocommerce-account:not(.logged-in) .site-main .woocommerce::before,
.woocommerce-account:not(.logged-in) .site-main .woocommerce::after {
  display: none;
}

.woocommerce-account:not(.logged-in) .site-main .woocommerce-notices-wrapper {
  margin: 0 0 22px;
}

.dogid-auth-shell {
  width: 100%;
}

.dogid-auth-title {
  margin: 0 0 34px;
  color: #fff;
  font-size: 56px;
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.dogid-auth-form {
  margin: 0;
  display: grid;
  gap: 18px;
}

.dogid-auth-row {
  margin: 0 !important;
  float: none;
  width: 100%;
}

.dogid-auth-row label {
  margin: 0 0 8px;
  display: block;
  color: #f4fae9;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

.dogid-auth-row .required {
  color: inherit;
}

.dogid-auth-row input.input-text,
.dogid-auth-row select {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  background: #e7e7e7;
  color: #2f6725;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 14px;
  box-shadow: none;
}

.dogid-auth-row input::placeholder {
  color: #9b9b9b;
  opacity: 1;
}

.dogid-auth-phone {
  width: 100%;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 6px;
}

.dogid-auth-phone__prefix {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 22px !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #2f6725 50%),
    linear-gradient(135deg, #2f6725 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% + 1px),
    calc(100% - 11px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.dogid-auth-actions {
  margin: 14px 0 0 !important;
}

.dogid-auth-submit {
  min-height: 40px;
  padding: 10px 48px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dogid-auth-lost {
  margin: -6px 0 0;
}

.dogid-auth-lost a {
  color: var(--dogid-accent);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.dogid-auth-separator,
.dogid-auth-switch {
  margin: 18px 0 0;
  color: #f4fae9;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

.dogid-auth-switch a {
  margin-left: 8px;
  color: var(--dogid-accent);
  font-weight: 700;
}

.dogid-auth-create {
  margin-top: -2px;
  width: fit-content;
  min-height: 40px;
  padding: 10px 18px !important;
  border-radius: var(--radius-pill);
  background: #225D2D !important;
  color: #f4fae9 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dogid-auth-create:hover {
  background: #225D2D !important;
}

.dogid-auth-form .woocommerce-password-strength,
.dogid-auth-form .woocommerce-password-hint {
  margin-top: 8px;
  color: #f3f8e8;
  font-size: 14px;
  line-height: 1.4;
}

.dogid-auth-form .woocommerce-password-strength {
  border-radius: 8px;
  padding: 8px 10px;
}

.dogid-auth-form .woocommerce-password-strength.strong {
  background: rgba(26, 97, 36, 0.5);
}

.dogid-auth-form .woocommerce-password-strength.good {
  background: rgba(193, 173, 33, 0.5);
}

.dogid-auth-form .woocommerce-password-strength.bad,
.dogid-auth-form .woocommerce-password-strength.short {
  background: rgba(169, 41, 50, 0.48);
}

.woocommerce-checkout .site-content {
  justify-content: flex-start;
}

.woocommerce-checkout .site-main {
  width: min(1200px, calc(100% - 64px));
  margin: 44px auto 110px;
}

.woocommerce-checkout .site-main .dogid-checkout-page {
  margin: 0;
}

.dogid-checkout-shell {
  width: 100%;
}

.dogid-checkout-title {
  margin: 0 0 42px;
  font-size: 42px;
  line-height: 1.04;
  font-weight: 600;
}

.dogid-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.dogid-checkout-main {
  display: grid;
  gap: 26px;
}

.dogid-checkout-section-title {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
}

.dogid-checkout-main .woocommerce-billing-fields__field-wrapper,
.dogid-checkout-main .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.dogid-checkout-main .woocommerce-additional-fields__field-wrapper {
  display: block;
}

.dogid-checkout-main .form-row {
  margin: 0;
  float: none;
  width: auto;
}

.dogid-checkout-main .form-row-wide {
  grid-column: 1 / -1;
}

.dogid-checkout-main #billing_country_field,
.dogid-checkout-main #shipping_country_field {
  margin-bottom: 12px;
}

.dogid-checkout-main label {
  margin: 0 0 7px;
  display: block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  color: #f4fae9;
}

.dogid-checkout-main .optional {
  display: none !important;
}

.dogid-checkout-main input.input-text,
.dogid-checkout-main textarea,
.dogid-checkout-main select {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: #e7e7e7;
  color: #2f6725;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 12px;
  box-shadow: none;
}

.dogid-checkout-main textarea {
  min-height: 96px;
  resize: vertical;
}

.dogid-checkout-main input::placeholder,
.dogid-checkout-main textarea::placeholder {
  color: #9b9b9b;
  opacity: 1;
}

.dogid-checkout-shipping {
  margin-top: 6px;
}

.dogid-checkout-ship-to-different-address {
  margin: 0;
}

.dogid-checkout-ship-to-different-address label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  cursor: pointer;
}

.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1px solid #5f9150;
  border-radius: 5px;
  background: #f6f6f6;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.woocommerce-checkout input[type="checkbox"]::after,
.woocommerce-checkout input[type="radio"]::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #376d26;
  transform: scale(0);
  transition: transform 0.15s ease;
}

.woocommerce-checkout input[type="checkbox"]:checked::after,
.woocommerce-checkout input[type="radio"]:checked::after {
  transform: scale(1);
}

.dogid-checkout-shipping .shipping_address {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
  pointer-events: none;
}

.dogid-checkout-shipping.is-open .shipping_address {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-top: 24px;
}

.dogid-checkout-sidebar {
  padding-top: 10px;
}

.dogid-checkout-review-order {
  display: grid;
  gap: 22px;
}

.dogid-checkout-section-title--order {
  margin-bottom: 20px;
}

.dogid-checkout-order-items {
  margin-bottom: 20px;
}

.dogid-checkout-order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 12px;
  align-items: center;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(217, 219, 69, 0.42);
}

.dogid-checkout-order-item__name {
  margin: 0 0 3px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.dogid-checkout-order-item__price {
  color: var(--dogid-accent);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.dogid-checkout-order-item__thumb {
  margin: 0;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dogid-checkout-order-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dogid-checkout-summary-card,
.dogid-checkout-payment-card {
  border-radius: 22px;
  background: #e7e7e7;
  padding: 22px 30px;
}

.dogid-checkout-summary-card {
  color: #2f6725;
}

.dogid-checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.dogid-checkout-summary-row strong {
  font-weight: 600;
}

.dogid-checkout-summary-shipping {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(47, 103, 37, 0.35);
}

.dogid-checkout-summary-shipping__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
}

.dogid-checkout-summary-shipping ul#shipping_method {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0;
}

.dogid-checkout-summary-shipping ul#shipping_method li {
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(47, 103, 37, 0.28);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dogid-checkout-summary-shipping ul#shipping_method li label {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #2f6725;
  font-size: 16px;
  line-height: 1.25;
  cursor: pointer;
}

.dogid-checkout-summary-shipping ul#shipping_method .amount {
  margin-left: auto;
  font-weight: 600;
}

.dogid-checkout-summary-delivery {
  margin: 12px 0;
  padding: 10px 0 8px;
  border-top: 1px solid rgba(47, 103, 37, 0.35);
  border-bottom: 1px solid rgba(47, 103, 37, 0.35);
  font-size: 16px;
  line-height: 1.35;
}

.dogid-checkout-summary-delivery strong {
  font-weight: 700;
}

.dogid-checkout-summary-row--total {
  font-size: 28px;
  font-weight: 600;
}

.dogid-checkout-summary-row--total strong {
  font-weight: 700;
}

#payment {
  margin-top: 22px;
  border: 0;
  background: transparent;
}

.dogid-checkout-payment-title {
  margin: 0 0 12px;
  color: #2f6725;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
}

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

#payment ul.payment_methods > li {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(47, 103, 37, 0.35);
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  grid-template-areas:
    "control label"
    ". box";
  column-gap: 10px;
  row-gap: 8px;
  align-items: start;
}

#payment ul.payment_methods > li > input[type="radio"],
#payment ul.payment_methods > li > input[type="checkbox"] {
  grid-area: control;
  /* WooCommerce hides radio when only one method is available. */
  display: inline-grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 2px;
}

#payment ul.payment_methods > li > label {
  grid-area: label;
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f6725;
  font-size: 16px;
  line-height: 1.3;
  cursor: pointer;
}

#payment ul.payment_methods > li > label img {
  margin-left: auto;
  max-height: 28px;
  width: auto;
}

#payment div.payment_box {
  grid-area: box;
  margin: 2px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(47, 103, 37, 0.12);
  color: #2f6725;
  font-size: 16px;
}

#payment div.payment_box p {
  margin: 0;
}

#payment ul.payment_methods > li .woocommerce-info,
#payment ul.payment_methods > li .woocommerce-error,
#payment ul.payment_methods > li .woocommerce-message {
  grid-column: 1 / -1;
}

#payment div.payment_box::before {
  display: none;
}

#payment .form-row.place-order {
  margin: 20px 0 0;
  padding: 0;
}

#payment .woocommerce-privacy-policy-text,
#payment .woocommerce-terms-and-conditions-wrapper {
  color: #dfead2;
  font-size: 16px;
  line-height: 1.5;
}

#payment .woocommerce-privacy-policy-text a,
#payment .woocommerce-terms-and-conditions-wrapper a {
  color: var(--dogid-accent);
  font-weight: 600;
  text-decoration: underline;
}

#payment .woocommerce-terms-and-conditions-checkbox-text {
  color: #f0f8e4;
  font-size: 16px;
  line-height: 1.35;
}

#payment .woocommerce-terms-and-conditions-checkbox-text::after,
#payment .dogid-terms-ack-row label span::after {
  content: " *";
  color: #fff;
  font-weight: 700;
}

#payment .woocommerce-terms-and-conditions-wrapper .validate-required > label,
#payment .dogid-terms-ack-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

#payment .woocommerce-terms-and-conditions-wrapper .validate-required input[type="checkbox"],
#payment .dogid-terms-ack-row input[type="checkbox"] {
  margin-top: 2px;
}

#payment .dogid-terms-ack-row {
  margin: 14px 0 0;
}

#payment .dogid-terms-ack-row span {
  color: #f0f8e4;
  font-size: 16px;
  line-height: 1.35;
}

#payment .dogid-terms-ack-row a {
  color: var(--dogid-accent);
  font-weight: 600;
  text-decoration: underline;
}

#place_order {
  width: 100%;
  min-height: 40px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

#place_order:disabled,
#place_order[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  background: rgba(217, 219, 69, 0.35);
  color: rgba(32, 95, 29, 0.75);
}

#place_order:disabled:hover,
#place_order[aria-disabled="true"]:hover {
  transform: none;
  background: rgba(217, 219, 69, 0.35);
  color: rgba(32, 95, 29, 0.75);
}

body.dogid-js.woocommerce-checkout .woocommerce-notices-wrapper ul.woocommerce-error,
body.dogid-js.woocommerce-checkout .woocommerce-notices-wrapper > .woocommerce-error,
body.dogid-js.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  display: none;
}

body.dogid-js.woocommerce-checkout form.checkout > ul.woocommerce-error,
body.dogid-js.woocommerce-checkout form.checkout > .woocommerce-error,
body.dogid-js.woocommerce-checkout form.checkout > .woocommerce-message,
body.dogid-js.woocommerce-checkout form.checkout > .woocommerce-info {
  display: none;
}

body.dogid-js.woocommerce-checkout #payment .place-order ul.woocommerce-error,
body.dogid-js.woocommerce-checkout #payment .place-order > .woocommerce-error {
  display: none;
}

.woocommerce-order-received .site-content {
  justify-content: flex-start;
}

.woocommerce-order-received .site-main {
  width: min(1200px, calc(100% - 64px));
  margin: 44px auto 110px;
}

.dogid-order-received-shell {
  width: 100%;
}

.dogid-order-received-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.dogid-order-received-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #edf4de;
  color: #2f7a21;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dogid-order-received-title {
  margin: 0;
  line-height: 1.1;
  max-width: 1120px;
}

.dogid-order-received-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 36px 42px;
  align-items: start;
}

.dogid-order-received-main {
  position: relative;
  overflow: hidden;
  background: url("assets/img/dog-paw.svg") top center / 100% auto no-repeat;
}

.dogid-order-received-main::before,
.dogid-order-received-main::after {
  content: none;
}

.dogid-order-received-main > * {
  position: relative;
  z-index: 1;
}

.dogid-order-received-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 28px;
}

.dogid-order-received-meta__item {
  margin: 0;
}

.dogid-order-received-meta__label {
  margin: 0 0 2px;
  color: #e5efd8;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
}

.dogid-order-received-meta__value {
  margin: 0;
  color: #f5f9eb;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 600;
  display: grid;
}

.dogid-order-reminder {
  margin-top: 30px;
  border: 1px solid var(--dogid-accent);
  border-radius: 30px;
  padding: 24px 20px 20px;
  background: rgba(55, 109, 38, 0.35);
}

.dogid-order-reminder__title {
  margin: 0 0 16px;
  color: #f4f9e8;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
}

.dogid-order-reminder__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dogid-step;
  display: grid;
  gap: 10px;
}

.dogid-order-reminder__list li {
  margin: 0;
  padding-left: 32px;
  color: #edf4df;
  font-size: 18px;
  line-height: 1.45;
  position: relative;
}

.dogid-order-reminder__list li::before {
  counter-increment: dogid-step;
  content: counter(dogid-step);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dogid-accent);
  color: #2d6f24;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 7px;
}

.dogid-order-reminder__list a {
  color: var(--dogid-accent);
  text-decoration: underline;
  font-weight: 700;
}

.dogid-order-summary {
  border-radius: 22px;
  background: #e7e7e7;
  padding: 24px 30px;
  color: #2f6725;
}

.dogid-order-summary__title {
  margin: 0 0 14px;
  color: #2f6725;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
}

.dogid-order-summary__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(47, 103, 37, 0.5);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.dogid-order-summary__items {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.dogid-order-summary__items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 8px 0;
  font-size: 18px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(47, 103, 37, 0.5);
}

.dogid-order-summary__items li strong {
  white-space: nowrap;
  font-weight: 600;
}

.dogid-order-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(47, 103, 37, 0.5);
  color: #2f6725;
  font-size: 18px;
  line-height: 1.25;
}

.dogid-order-summary__row > strong {
  white-space: nowrap;
}

.dogid-order-summary__row--shipping > div {
  display: grid;
  gap: 3px;
}

.dogid-order-summary__row--shipping small {
  color: #2f6725;
  font-size: 16px;
  line-height: 1.25;
  text-align: right;
}

.dogid-order-summary__locker {
  text-align: right;
}

.dogid-order-summary__row--total {
  border-bottom: 0;
  padding-bottom: 0;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 600;
}

.dogid-order-summary__row--total strong {
  font-weight: 700;
}

.dogid-order-received-gateway {
  margin-top: 18px;
}

.dogid-toast {
  position: fixed;
  right: 84px;
  top: 132px;
  z-index: 130;
  min-height: 70px;
  border-radius: 24px;
  background: #143129;
  color: #f8fce8;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  font-size: 1.07rem;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dogid-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dogid-toast__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9ecd7;
  color: #1a3f2b;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.dogid-cart-open {
  overflow: hidden;
}

.dogid-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.48s;
}

.dogid-cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.dogid-cart-drawer__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 22, 17, 0.62);
  opacity: 0;
  transition: opacity 0.42s ease;
}

.dogid-cart-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(510px, 36vw);
  min-width: 380px;
  background: #376D26;
  border-left: 1px solid #d9db45;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  overflow: hidden;
}

.dogid-cart-drawer.is-open .dogid-cart-drawer__overlay {
  opacity: 1;
}

.dogid-cart-drawer.is-open .dogid-cart-drawer__panel {
  transform: translateX(0);
}

.dogid-cart-step {
  position: absolute;
  inset: 0;
  padding: 40px 40px 26px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(30px);
  transition: opacity 0.28s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.38s;
}

.dogid-cart-step--items {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s, 0s, 0s;
}

.dogid-cart-step--auth {
  transform: translateX(30px);
}

.dogid-cart-drawer.is-auth-step .dogid-cart-step--items {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-30px);
  transition-delay: 0s, 0s, 0.38s;
}

.dogid-cart-drawer.is-auth-step .dogid-cart-step--auth {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s, 0s, 0s;
}

.dogid-cart-drawer__close {
  border: 0;
  padding: 0;
  margin-left: auto;
  background: transparent;
  color: #f3f8e8;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.dogid-cart-auth__top {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.dogid-cart-auth__back {
  border: 0;
  padding: 0;
  background: transparent;
  color: #f3f8e8;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.dogid-cart-auth__content {
  margin-top: auto;
  margin-bottom: auto;
  display: grid;
  gap: 30px;
}

.dogid-cart-auth__title {
  margin: 0;
  max-width: 420px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 600;
}

.dogid-cart-auth__actions {
  display: grid;
  gap: 14px;
}

.dogid-cart-auth__actions .button {
  width: 100%;
  min-height: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dogid-cart-auth__guest {
  background: #95b700;
  color: #fff;
}

.dogid-cart-auth__guest:hover {
  background: #88a500;
  color: #fff;
}

.dogid-cart-drawer__title {
  margin: 40px 0 28px;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
}

.dogid-cart-drawer__items {
  flex: 1;
  overflow: auto;
  padding-right: 6px;
}

.dogid-cart-item {
  display: grid;
  grid-template-columns: auto 1fr 108px;
  gap: 14px 14px;
  align-items: center;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.dogid-cart-item__remove {
  border: 0;
  background: transparent;
  color: var(--dogid-accent);
  width: 16px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  align-self: start;
}

.dogid-cart-item__remove img {
  width: 16px;
  height: 18px;
  display: block;
}

.dogid-cart-item__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.dogid-cart-item__price {
  margin-bottom: 12px;
  color: #f2f9e2;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.dogid-cart-item__thumb {
  margin: 0;
  align-self: start;
  width: 108px;
  height: 108px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.dogid-cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dogid-qty--drawer {
  width: 110px;
  min-width: 110px;
}

.dogid-cart-drawer__footer {
  padding-top: 12px;
}

.dogid-cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
}

.dogid-cart-drawer__total #dogid-cart-total {
  font-size: 20px;
  font-weight: 700;
}

.dogid-cart-drawer__checkout {
  width: 100% !important;
  min-height: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin: 0;
  box-sizing: border-box;
}

.woocommerce a.button.dogid-cart-drawer__checkout {
  width: 100% !important;
  display: flex;
  box-sizing: border-box;
}

.dogid-cart-drawer__checkout.is-disabled,
.dogid-cart-drawer__checkout[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  background: rgba(217, 219, 69, 0.35);
  color: rgba(32, 95, 29, 0.75);
}

.dogid-cart-drawer__checkout.is-disabled:hover,
.dogid-cart-drawer__checkout[aria-disabled="true"]:hover {
  transform: none;
  background: rgba(217, 219, 69, 0.35);
  color: rgba(32, 95, 29, 0.75);
}

.dogid-cart-empty {
  display: grid;
  gap: 16px;
  padding: 20px 0;
}

.dogid-cart-empty p {
  margin: 0;
  font-size: 1rem;
}

.dogid-cart-empty__btn {
  width: fit-content;
}

.single-product .site-footer {
  display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dogid-global-notices {
  margin: 18px 0 0;
}

.dogid-global-notices .woocommerce-message {
  margin: 0;
  padding: 16px 20px !important;
  border: 2px solid var(--dogid-accent) !important;
  background: rgba(217, 219, 69, 0.14) !important;
  color: var(--dogid-accent) !important;
}

.dogid-global-notices .woocommerce-message::before {
  content: none !important;
  display: none !important;
}

.dogid-field-error,
.woocommerce form .form-row .woocommerce-error,
.woocommerce form .form-row .woocommerce-error li,
.woocommerce form .form-row label.error,
.woocommerce form .form-row .woocommerce-input-wrapper label.error,
.woocommerce form .form-row .error,
.woocommerce form .form-row .woocommerce-input-wrapper .error,
.woocommerce form .form-row span.error,
.woocommerce form .form-row .woocommerce-input-wrapper span.error,
.woocommerce form .form-row .woocommerce-input-wrapper .error,
.woocommerce form .form-row .woocommerce-input-wrapper span.woocommerce-error,
.woocommerce form .form-row .woocommerce-input-wrapper .woocommerce-error {
  margin: 8px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #FF5E57;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.woocommerce form .form-row .woocommerce-error {
  display: block;
}

.woocommerce form .form-row span.error,
.woocommerce form .form-row label.error,
.woocommerce form .form-row .error,
.woocommerce form .form-row .woocommerce-input-wrapper span.error,
.woocommerce form .form-row .woocommerce-input-wrapper label.error,
.woocommerce form .form-row .woocommerce-input-wrapper .error,
.woocommerce form .form-row .woocommerce-input-wrapper .error,
.woocommerce form .form-row .woocommerce-input-wrapper span.woocommerce-error,
.woocommerce form .form-row .woocommerce-input-wrapper .woocommerce-error {
  display: block;
}

.woocommerce form .form-row .woocommerce-error li {
  list-style: none;
}

.dogid-field-error a,
.woocommerce form .form-row .woocommerce-error a {
  color: #FF5E57;
  font-weight: 700;
  text-decoration: underline;
}

body.dogid-js.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper ul.woocommerce-error,
body.dogid-js.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper > .woocommerce-error {
  display: none;
}

.woocommerce-checkout form.checkout .form-row [role="alert"],
.woocommerce-checkout form.checkout .form-row .error,
.woocommerce-checkout form.checkout .form-row label.error,
.woocommerce-checkout form.checkout .form-row .woocommerce-error,
.woocommerce-checkout form.checkout .form-row .woocommerce-input-wrapper [role="alert"],
.woocommerce-checkout form.checkout .form-row .woocommerce-input-wrapper .error,
.woocommerce-checkout form.checkout .form-row .woocommerce-input-wrapper label.error,
.woocommerce-checkout form.checkout .form-row .woocommerce-input-wrapper .woocommerce-error,
.woocommerce-account form .form-row [role="alert"],
.woocommerce-account form .form-row .error,
.woocommerce-account form .form-row label.error,
.woocommerce-account form .form-row .woocommerce-error,
.woocommerce .checkout-inline-error-message {
  color: #FF5E57 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin-top: 8px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .site-footer {
    background-size: 340px auto;
  }

  .site-header__inner {
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .site-nav .menu {
    gap: 14px;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .dogid-single-product {
    grid-template-columns: 1fr;
  }

  .dogid-product-summary {
    max-width: none;
  }

  .woocommerce-checkout .site-main {
    width: min(100%, calc(100% - 40px));
  }

  .dogid-checkout-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .dogid-checkout-sidebar {
    padding-top: 0;
  }

  .dogid-checkout-title {
    margin-bottom: 30px;
  }

  .dogid-checkout-section-title {
    font-size: 26px;
  }

  .dogid-checkout-payment-title {
    font-size: 20px;
  }

  .dogid-checkout-summary-row--total {
    font-size: 28px;
  }

  .woocommerce-order-received .site-main {
    width: min(100%, calc(100% - 40px));
  }

  .dogid-order-received-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dogid-order-received-main::before,
  .dogid-order-received-main::after {
    display: none;
  }

  .dogid-order-received-meta__label {
    font-size: 18px;
  }

  .dogid-order-received-meta__value {
    font-size: 18px;
  }

  .dogid-order-reminder__title,
  .dogid-order-summary__title {
    font-size: 26px;
  }

  .dogid-order-reminder__list li,
  .dogid-order-summary__head,
  .dogid-order-summary__items li,
  .dogid-order-summary__row {
    font-size: 18px;
  }

  .dogid-order-summary__row--shipping small {
    font-size: 16px;
  }

  .dogid-order-summary__row--total {
    font-size: 30px;
  }

  .dogid-toast {
    right: 24px;
    top: 98px;
  }

  .dogid-cart-drawer__panel {
    width: min(520px, 62vw);
  }

}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 74px;
    padding: 10px 20px;
    flex-wrap: nowrap;
  }

  .site-brand img {
    width: 146px;
    height: auto;
  }

  .site-header__actions {
    margin-left: auto;
    gap: 10px;
  }

  .dogid-btn--account,
  .dogid-icon-link--profile {
    display: none;
  }

  .dogid-mobile-nav {
    display: block;
  }

  .site-footer {
    background-size: 250px auto;
    background-position: right -16px bottom;
  }

  .dogid-shell {
    padding-top: 22px;
  }

  .woocommerce ul.products.dogid-product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dogid-card__media {
    height: 218px;
  }

  .dogid-card__price,
  .woocommerce ul.products li.product .price {
    font-size: 20px;
  }

  .dogid-loop-add-form {
    flex-wrap: wrap;
  }

  .woocommerce-account:not(.logged-in) .site-main {
    width: min(100%, calc(100% - 28px));
    margin-top: 26px;
  }

  .dogid-auth-title {
    margin-bottom: 20px;
    font-size: 56px;
  }

  .dogid-auth-form {
    gap: 12px;
  }

  .dogid-auth-row label,
  .dogid-auth-separator,
  .dogid-auth-switch,
  .dogid-auth-lost a {
    font-size: 18px;
  }

  .dogid-auth-actions {
    margin-top: 10px !important;
  }

  .dogid-auth-submit {
    min-height: 40px;
    width: fit-content;
    min-width: 170px;
  }

  .dogid-auth-create {
    max-width: 100%;
  }

  .woocommerce-checkout .site-main {
    width: min(100%, calc(100% - 28px));
    margin-top: 26px;
  }

  .dogid-checkout-title {
    margin-bottom: 20px;
    font-size: 42px;
  }

  .dogid-checkout-main .woocommerce-billing-fields__field-wrapper,
  .dogid-checkout-main .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dogid-checkout-main .form-row-first,
  .dogid-checkout-main .form-row-last {
    grid-column: 1 / -1;
  }

  .dogid-checkout-section-title {
    font-size: 26px;
  }

  .dogid-checkout-payment-title {
    font-size: 20px;
  }

  .dogid-checkout-summary-row--total {
    font-size: 28px;
  }

  .woocommerce-order-received .site-main {
    width: min(100%, calc(100% - 28px));
    margin-top: 26px;
  }

  .dogid-order-received-head {
    gap: 12px;
    margin-bottom: 20px;
  }

  .dogid-order-received-icon {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .dogid-order-received-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dogid-order-received-meta__label {
    font-size: 1.03rem;
  }

  .dogid-order-received-meta__value {
    font-size: 1.03rem;
  }

  .dogid-order-reminder {
    margin-top: 22px;
    border-radius: 22px;
    padding: 20px 16px;
  }

  .dogid-order-reminder__title {
    font-size: 1.45rem;
    margin-bottom: 12px;
  }

  .dogid-order-reminder__list li {
    font-size: 1.03rem;
    padding-left: 30px;
  }

  .dogid-order-reminder__list li::before {
    top: 5px;
  }

  .dogid-order-summary {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .dogid-order-summary__title {
    font-size: 1.45rem;
  }

  .dogid-order-summary__head,
  .dogid-order-summary__items li,
  .dogid-order-summary__row {
    font-size: 1.03rem;
  }

  .dogid-order-summary__row--shipping small {
    font-size: 0.92rem;
  }

  .dogid-order-summary__row--total {
    font-size: 1.4rem;
  }

  .dogid-checkout-summary-card,
  .dogid-checkout-payment-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .dogid-checkout-order-item {
    grid-template-columns: minmax(0, 1fr) 50px;
  }

  .dogid-checkout-order-item__thumb {
    width: 50px;
    height: 50px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding-bottom: 64px;
    justify-items: center;
  }

  .site-footer__inner > div {
    width: 100%;
    text-align: center;
  }

  .site-footer__inner ul {
    justify-items: center;
  }

  .site-footer__logo img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
  }

  .dogid-single-shell {
    width: min(100%, calc(100% - 26px));
    margin-top: 26px;
  }

  .dogid-product-gallery__viewport {
    min-height: 360px;
    padding: 22px 32px;
  }

  .dogid-product-gallery__img {
    max-width: 260px;
    max-height: 260px;
  }

  .dogid-product-summary__title {
    font-size: 2.35rem;
  }

  .dogid-product-summary__price,
  .dogid-product-summary__price .woocommerce-Price-currencySymbol {
    font-size: 42px;
  }

  .dogid-product-add-form {
    gap: 10px;
  }

  .dogid-toast {
    right: 10px;
    left: 10px;
    top: 90px;
    min-height: 58px;
    border-radius: 18px;
    font-size: 0.95rem;
    justify-content: center;
  }

  .dogid-cart-drawer__panel {
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .dogid-cart-drawer__title {
    margin: 16px 0 18px;
  }

  .dogid-cart-auth__content {
    gap: 20px;
  }

  .dogid-cart-step {
    padding: 20px 16px 18px;
  }

  .dogid-cart-item {
    grid-template-columns: auto 1fr 108px;
    gap: 8px 10px;
  }

  .dogid-cart-item__price {
    margin-bottom: 10px;
  }

  .dogid-cart-item__thumb {
    width: 108px;
    height: 108px;
  }
}
