*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body.pagino {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #3d3d3d;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.pag_container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}
#pagino_topbar {
  --tb-bg: #c6f0eb;
  --tb-color: #1aab9f;
  background: var(--tb-bg);
  min-height: 50px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 101;
}
#pagino_topbar.topbar-coral {
  --tb-bg: #fde4ec;
  --tb-color: #c4194d;
}
#pagino_topbar.topbar-orange {
  --tb-bg: #fdeee4;
  --tb-color: #c45a10;
}
#pagino_topbar.topbar-blue {
  --tb-bg: #1b1a42;
  --tb-color: #fff;
}
#pagino_topbar.topbar-gradient {
  --tb-color: #fff;
  background: linear-gradient(135deg, #fa8555, #f5326f);
}
#pagino_topbar.topbar-yellow {
  --tb-bg: #fff5cc;
  --tb-color: #7a5500;
}
#pagino_topbar.topbar-red {
  --tb-bg: #e8192c;
  --tb-color: #fff;
}
#pagino_topbar .pag_container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.pag_topbar_text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tb-color);
  text-align: center;
}
.pag_topbar_text a {
  color: var(--tb-color);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#pag_topbar_close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tb-color);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#pag_topbar_close svg {
  width: 18px;
  height: 18px;
  display: block;
}
#pag_topbar_close:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  #pagino_topbar .pag_container {
    padding-right: 40px;
    min-height: 48px;
  }
  .pag_topbar_text {
    padding: 10px 0;
    line-height: 1.5;
  }
  #pag_topbar_close {
    right: 16px;
  }
}
#pag_header {
  position: sticky;
  top: 0;
  z-index: 200;
  transition: top 0.2s ease;
  background: #fff;
  box-shadow: 0 1px 0 #e2e2e8;
  height: 72px;
  display: flex;
  align-items: center;
}
.pag_header_inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
#pag_logo {
  flex-shrink: 0;
  display: block;
  width: 130px;
  height: 44px;
  background: url("/images/pagino/logo.png") no-repeat center left/contain;
}
#pag_nav_wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
#pag_nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  min-width: 0;
}
#pag_nav_more {
  position: relative;
  flex-shrink: 0;
}
#pag_nav_more_btn {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3d3d3d;
  padding: 8px 10px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
#pag_nav_more_btn svg {
  transition: transform 0.2s;
}
#pag_nav_more_btn:hover,
#pag_nav_more.open #pag_nav_more_btn {
  background: #f4f4f6;
  color: #1e2430;
}
#pag_nav_more.open #pag_nav_more_btn svg {
  transform: rotate(180deg);
}
#pag_nav_more_dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #e2e2e8;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(30,36,48,0.12);
  min-width: 180px;
  padding: 6px;
  z-index: 200;
}
#pag_nav_more_dropdown .pag_nav_link {
  display: block;
  width: 100%;
}
#pag_nav_more.open #pag_nav_more_dropdown {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pag_nav_link {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 400;
  color: #1b1a42;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.2s ease;
}
.pag_nav_link:hover,
.pag_nav_link.active {
  color: #f5326f;
}
#pag_header_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.pag_icon_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: #3d3d3d;
  transition: background 0.2s ease, color 0.2s ease;
}
.pag_icon_btn:hover {
  background: #f4f4f6;
  color: #f5326f;
}
.pag_badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #f5326f;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
#pag_login {
  position: relative;
}
#pag_login_bubble {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e2e2e8;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
  width: 280px;
  padding: 20px;
  z-index: 200;
}
#pag_login_bubble.open {
  display: block;
}
#pag_login_bubble_title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e2430;
  margin-bottom: 16px;
}
.pag_login_field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.pag_login_links {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.78rem;
  color: #777;
}
.pag_login_links a {
  color: #777;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.pag_login_links a:hover {
  color: #f5326f;
}
#pag_profil_dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e2e2e8;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
}
#pag_profil_dropdown.open {
  display: block;
}
.pag_dropdown_link {
  display: block;
  padding: 9px 18px;
  font-size: 0.875rem;
  color: #3d3d3d;
  transition: background 0.2s ease;
}
.pag_dropdown_link:hover {
  background: #f4f4f6;
  color: #1e2430;
}
.pag_admin_links {
  border-top: 1px solid #e2e2e8;
  margin-top: 6px;
  padding: 15px;
  opacity: 0.75;
}
.pag_admin_links a,
.pag_admin_links button,
.pag_admin_links form {
  display: block;
  width: 100%;
  padding: 7px 18px;
  font-size: 0.8rem;
  color: #777;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.pag_admin_links a:hover,
.pag_admin_links button:hover {
  background: #f4f4f6;
}
.pag_admin_links form {
  padding: 0;
}
.pag_admin_links input[type="text"],
.pag_admin_links input[type="hidden"] {
  display: none;
}
.pag_admin_links button {
  padding: 7px 18px;
  font-family: inherit;
  font-size: 0.8rem;
}
.pag_admin_links br {
  display: none;
}
#pag_mobile_header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 #e2e2e8;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
#pag_mobile_menu_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
#pag_mobile_menu_btn span {
  display: block;
  height: 2px;
  background: #1e2430;
  border-radius: 2px;
  transition: all 0.2s ease;
}
#pag_logo_mobile {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
#pag_logo_mobile img {
  height: 30px;
  width: auto;
  display: block;
}
#pag_mobile_header_actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
#pag_mobile_menu {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
}
#pag_mobile_menu.open {
  pointer-events: auto;
}
#pag_mobile_menu_panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 1;
}
#pag_mobile_menu.open #pag_mobile_menu_panel {
  transform: translateX(0);
}
#pag_mobile_menu_overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,36,48,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#pag_mobile_menu.open #pag_mobile_menu_overlay {
  opacity: 1;
}
#pag_mobile_menu_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e2e8;
  flex-shrink: 0;
}
#pag_logo_in_menu {
  display: block;
}
#pag_logo_in_menu img {
  height: 30px;
  width: auto;
  display: block;
}
#pag_mobile_menu_close {
  font-size: 1.2rem;
  color: #777;
  padding: 4px 8px;
}
#pag_mobile_nav {
  padding: 12px 0;
  flex: 1;
}
.pag_mobile_nav_link {
  display: block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #3d3d3d;
  border-bottom: 1px solid #f4f4f6;
  transition: background 0.2s ease, color 0.2s ease;
}
.pag_mobile_nav_link:last-child {
  border-bottom: none;
}
.pag_mobile_nav_link:hover,
.pag_mobile_nav_link.active {
  background: #f4f4f6;
  color: #f5326f;
}
#pag_mobile_menu_actions {
  padding: 20px;
  border-top: 1px solid #e2e2e8;
  flex-shrink: 0;
}
.pag_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 0;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1;
}
.pag_btn:hover {
  text-decoration: none;
}
.pag_btn_primary {
  background: #f5326f;
  color: #fff;
  border-color: #f5326f;
}
.pag_btn_primary:hover {
  background: #e54e2e;
  border-color: #e54e2e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,96,64,0.3);
}
.pag_btn_outline {
  background: transparent;
  color: #f5326f;
  border-color: #f5326f;
}
.pag_btn_outline:hover {
  background: #f5326f;
  color: #fff;
  transform: translateY(-1px);
}
.pag_btn_gradient {
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  border-color: transparent;
}
.pag_btn_gradient:hover {
  color: #fff;
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,50,111,0.35);
}
.pag_step_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e2e2e8;
}
.pag_step_nav .pag_btn {
  min-width: 180px;
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .pag_step_nav {
    flex-direction: column-reverse;
  }
  .pag_step_nav .pag_btn {
    width: 100%;
  }
}
#pag_content {
  min-height: 50vh;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  box-sizing: border-box;
}
#pag_content:has(> #pag_homepage),
#pag_content:has(> #pag_pdp) {
  max-width: none;
  padding: 0;
}
#pag_footer {
  --tooth-w: 54px;
  --tooth-h: 10px;
  position: relative;
  background: #1b1a42;
  color: rgba(255,255,255,0.45);
  padding-top: 0;
}
#pag_footer::before {
  content: '';
  position: absolute;
  top: calc(-1 * var(--tooth-h));
  left: 0;
  right: 0;
  height: var(--tooth-h);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1' preserveAspectRatio='none'%3E%3Cpolygon points='0,1 1,0 2,1' fill='%231B1A42'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: var(--tooth-w) var(--tooth-h);
  background-position: top left;
  pointer-events: none;
}
#pag_footer .pag_container {
  padding-top: 48px;
}
#pag_footer_top {
  display: grid;
  grid-template-columns: 130px 1fr 1fr 1fr 210px;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
#pag_footer_brand {
  padding-top: 4px;
}
#pag_footer_logo {
  display: block;
  width: 110px;
  height: 52px;
  background: url("/images/pagino/pagino-logo.svg") no-repeat left top/contain;
}
.pag_footer_col_title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f5326f;
  margin-bottom: 14px;
  text-align: left;
}
.pag_footer_col_chevron {
  display: none;
}
.pag_footer_link {
  display: block;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.45);
  padding: 3px 0;
  transition: color 0.2s ease;
}
.pag_footer_link:hover {
  color: rgba(255,255,255,0.9);
}
#pag_footer_contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 2px;
}
.pag_footer_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
a.pag_footer_contact_item:hover {
  color: #fff;
}
.pag_footer_contact_ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  flex-shrink: 0;
}
.pag_footer_contact_text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}
.pag_footer_contact_text small {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1px;
}
#pag_footer_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
@media (max-width: 1024px) {
  #pag_footer_top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  #pag_footer_brand {
    grid-column: 1/-1;
  }
  #pag_footer_contact {
    grid-column: 1/-1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  #pag_footer_top {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #pag_footer_contact {
    flex-direction: column;
    margin-top: 8px;
  }
  .pag_footer_col {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .pag_footer_col_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
  }
  .pag_footer_col_chevron {
    display: block;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }
  .pag_footer_col.is-open .pag_footer_col_chevron {
    transform: rotate(180deg);
  }
  .pag_footer_col_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .pag_footer_col.is-open .pag_footer_col_body {
    max-height: 400px;
  }
  .pag_footer_link {
    padding: 5px 0;
  }
}
#loading_big_fade {
  position: fixed;
  inset: 0;
  background: rgba(30,36,48,0.65);
  display: none;
  z-index: 9999;
}
#loading_big_fade.active {
  display: block;
}
#loading_big_fade .loading_big {
  position: fixed;
  top: 50vh;
  left: 50vw;
  width: 56px;
  height: 56px;
  margin-top: -28px;
  margin-left: -28px;
  border-radius: 50%;
  background: conic-gradient(#fa8555, #f5326f, transparent 75%) !important;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  animation: pag_spin 0.8s linear infinite;
}
#loading_big_fade #loading_big_message {
  position: fixed;
  top: calc(50vh + 44px);
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
}
#loading_big_message {
  color: #fff;
  font-size: 0.875rem;
  opacity: 0.8;
}
.info_box {
  background: #fff8f7;
  color: #c0392b;
  border: 1px solid #f5c6c0;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.info_box.forced {
  background: #ffeaea;
  border-color: #f0a0a0;
  color: #c0392b;
}
.info_box.success {
  background: #f0fbf8;
  color: #1aab9f;
  border-color: #9de5df;
}
.info_box.warning {
  background: #fffbf0;
  color: #7a5500;
  border-color: #f5dfa0;
}
.info_box.info {
  background: #f0f6ff;
  color: #1a4d99;
  border-color: #a0bff5;
}
.info_box.coral {
  background: #fde4ec;
  color: #c4194d;
  border-color: #f5a0be;
}
.info_box.promo {
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  border-color: transparent;
}
.info_box.neutral {
  background: #f4f4f6;
  color: #777;
  border-color: #e2e2e8;
}
#pagino_topbar {
  height: 50px;
}
#pagino_topbar .info_box {
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  color: var(--tb-color);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
#pagino_topbar .info_box a {
  color: var(--tb-color);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#ppl_modal_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  z-index: 1000;
}
#ppl_modal_box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
  z-index: 1001;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  display: none;
}
.respo_size {
  position: fixed;
  bottom: 8px;
  right: 8px;
  background: rgba(30,36,48,0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 9998;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .pag_nav_link {
    font-size: 0.8rem;
    padding: 7px 7px;
  }
  #pag_footer_top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  #pag_header {
    display: none;
  }
  #pag_mobile_header {
    display: flex;
  }
  #pag_footer_top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #pag_footer_bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .pag_footer_payment {
    display: none;
  }
}
@media (max-width: 480px) {
  .pag_container {
    padding: 0 16px;
  }
  #pag_footer_top {
    grid-template-columns: 1fr;
  }
  #pag_footer_brand {
    padding-right: 0;
  }
}
.pag_page {
  background: #f4f4f6;
  padding: 56px 0 80px;
  min-height: calc(100vh - 72px - 50px);
}
.pag_page_wide {
  background: #f4f4f6;
  padding: 48px 0 80px;
  min-height: calc(100vh - 72px - 50px);
}
.pag_card {
  background: #fff;
  border: 1px solid #e2e2e8;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(30,36,48,0.08);
  padding: 40px;
  width: 100%;
}
.pag_card_sm {
  max-width: 440px;
}
.pag_card_md {
  max-width: 680px;
}
.pag_card_lg {
  max-width: 900px;
}
.pag_card_center {
  margin-left: auto;
  margin-right: auto;
}
.pag_card_cols {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
}
.pag_card_main {
  padding: 40px;
}
.pag_card_side {
  padding: 40px;
  border-left: 1px solid #e2e2e8;
  background: #f4f4f6;
  border-radius: 0 10px 10px 0;
}
.pag_page_title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1e2430;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.pag_page_subtitle {
  font-size: 1rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 32px;
}
.pag_card h1,
#pag_content h1 {
  font-size: clamp(2rem, 2vw, 1.75rem);
  font-weight: normal;
  color: #1b1a42;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.pag_card h2,
#pag_content h2 {
  font-size: 1.4rem;
  font-weight: normal;
  color: #1b1a42;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  margin-top: 28px;
}
.pag_card h3,
#pag_content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e2430;
  margin-bottom: 8px;
  margin-top: 20px;
}
.pag_card p,
#pag_content p {
  font-size: 0.9375rem;
  color: #3d3d3d;
  line-height: 1.75;
  margin-bottom: 16px;
}
.pag_card li,
#pag_content li {
  font-size: 0.9375rem;
  color: #3d3d3d;
  line-height: 1.7;
  margin-bottom: 4px;
}
body.pagino .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
body.pagino .form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #777;
}
body.pagino .form-group input.form-control,
body.pagino .form-group select.form-control,
body.pagino .form-group textarea.form-control {
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid #e2e2e8;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #1e2430;
  background: #fff;
  outline: none;
  box-shadow: none;
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body.pagino .form-group input.form-control:focus,
body.pagino .form-group select.form-control:focus,
body.pagino .form-group textarea.form-control:focus {
  border-color: #f5326f;
  box-shadow: 0 0 0 3px rgba(245,50,111,0.08);
}
body.pagino .form-group input.form-control.error,
body.pagino .form-group select.form-control.error,
body.pagino .form-group textarea.form-control.error {
  border-color: #e74c3c;
}
body.pagino .form-group textarea.form-control {
  height: auto;
  padding: 10px 12px;
  min-height: 90px;
  resize: vertical;
}
body.pagino .form-group .input_error_message {
  font-size: 0.72rem;
  color: #e74c3c;
  min-height: 0;
}
.pag_field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.pag_field label,
.pag_login_field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #777;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pag_field input[type="text"],
.pag_field input[type="email"],
.pag_field input[type="password"],
.pag_field input[type="number"],
.pag_field input[type="tel"],
.pag_field select,
.pag_field textarea,
.pag_login_field input {
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid #e2e2e8;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #1e2430;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.pag_field textarea {
  height: auto;
  padding: 10px 12px;
  resize: vertical;
  min-height: 100px;
}
.pag_field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.pag_field input:focus,
.pag_field select:focus,
.pag_field textarea:focus,
.pag_login_field input:focus {
  border-color: #f5326f;
  box-shadow: 0 0 0 3px rgba(255,96,64,0.1);
}
.pag_field input.error,
.pag_field select.error,
.pag_field textarea.error {
  border-color: #e74c3c;
}
.pag_field_hint {
  font-size: 0.75rem;
  color: #777;
  margin-top: 2px;
}
.pag_field_error {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 2px;
}
.pag_fields_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pag_fieldset {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}
.pag_fieldset_title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e8;
}
.pag_card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff1ee;
  color: #f5326f;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.pag_card_icon_error {
  background: #ffeaea;
  color: #c0392b;
}
.pag_card_icon_success {
  background: #f0fbf8;
  color: #1aab9f;
}
.pag_card_footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e2e8;
  font-size: 0.85rem;
  color: #777;
  text-align: center;
}
.pag_card_footer a {
  color: #f5326f;
  font-weight: 600;
}
.pag_gdpr_text {
  font-size: 0.75rem;
  color: #777;
  line-height: 1.55;
  margin-top: 16px;
}
.pag_gdpr_text a {
  color: #777;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pag_label_link {
  font-size: 0.75rem;
  font-weight: 400;
  color: #777;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.pag_label_link:hover {
  color: #f5326f;
}
@media (max-width: 768px) {
  .pag_card_cols {
    grid-template-columns: 1fr;
  }
  .pag_card_side {
    border-left: none;
    border-top: 1px solid #e2e2e8;
    border-radius: 0 0 10px 10px;
  }
  .pag_card_main {
    padding: 28px 24px;
  }
  .pag_card_side {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .pag_card {
    padding: 28px 20px;
  }
  .pag_fields_row {
    grid-template-columns: 1fr;
  }
}
.pag_auth_wrap {
  display: flex;
  justify-content: center;
}
.pag_auth_card {
  background: #fff;
  border: 1px solid #e2e2e8;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(30,36,48,0.08);
  padding: 40px 40px 32px;
  width: 100%;
  max-width: 420px;
}
.pag_auth_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e2430;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.pag_auth_intro {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}
.pag_auth_gdpr {
  font-size: 0.75rem;
  color: #777;
  line-height: 1.55;
  margin-top: 16px;
}
.pag_auth_gdpr a {
  color: #777;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pag_auth_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff1ee;
  color: #f5326f;
  margin: 0 auto 20px;
}
.pag_auth_icon_error {
  background: #ffeaea;
  color: #c0392b;
}
.pag_auth_footer_links {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e2e8;
  font-size: 0.85rem;
  color: #777;
  text-align: center;
}
.pag_auth_footer_links a {
  color: #f5326f;
  font-weight: 600;
}
.pag_auth_label_link {
  font-size: 0.75rem;
  font-weight: 400;
  color: #777;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pag_auth_label_link:hover {
  color: #f5326f;
}
#pag_registrace,
#pag_prihlaseni,
#pag_zapomenute_heslo {
  background: #f4f4f6;
  padding: 60px 0 80px;
}
@media (max-width: 480px) {
  .pag_auth_card {
    padding: 28px 20px 24px;
  }
}
.pag_section_title,
h2.pag_section_title {
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  font-weight: 700;
  color: #1e2430;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
#pag_hero {
  background: url("/images/pagino/homepage.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
#pag_hero .pag_container {
  position: relative;
  z-index: 2;
}
#pag_hero #pag_hero_deco_plant,
#pag_hero #pag_hero_deco_camera {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
#pag_hero #pag_hero_deco_plant {
  top: -20px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: url("/images/homepage/2026/deco-plant.png") no-repeat center/contain;
}
#pag_hero #pag_hero_deco_camera {
  top: -10px;
  right: -10px;
  width: 200px;
  height: 200px;
  background: url("/images/homepage/2026/deco-camera.png") no-repeat center/contain;
}
#pag_hero #pag_hero_text {
  text-align: center;
  padding: 72px 0 48px;
}
#pag_hero #pag_hero_heading {
  color: #1b1a42;
  font-weight: normal;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  line-height: 1.25;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
#pag_hero #pag_hero_heading strong {
  font-weight: 700;
}
#pag_hero .pag_hero_cta {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 0;
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,96,64,0.35);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#pag_hero .pag_hero_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(250,133,85,0.45), 0 4px 12px rgba(245,50,111,0.25);
}
#pag_hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1' preserveAspectRatio='none'%3E%3Cpolygon points='0,1 1,0 2,1' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 54px 10px;
  background-position: bottom left;
  pointer-events: none;
  z-index: 3;
}
#pag_hero #pag_hero_strip {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
#pag_hero #pag_hero_strip:hover .pag_strip_track {
  animation-play-state: paused;
}
#pag_hero .pag_strip_track {
  display: flex;
  gap: 16px;
  animation: pag_marquee 30s linear infinite;
  width: max-content;
  padding: 16px 0 0;
}
#pag_hero .pag_strip_track img {
  height: 220px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(30,36,48,0.08);
  flex-shrink: 0;
  object-fit: cover;
}
#pag_features {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #e2e2e8;
}
#pag_features .pag_features_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
#pag_features .pag_feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
#pag_features .pag_feature .pag_feature_ico {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
#pag_features .pag_feature .pag_feature_ico svg,
#pag_features .pag_feature .pag_feature_ico img {
  width: 100%;
  height: 100%;
}
#pag_features .pag_feature strong {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1b1a42;
  line-height: 1.3;
}
#pag_features .pag_feature p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}
#pag_products_section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
#pag_products_section .pag_product_panel {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
}
#pag_products_section .pag_product_panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#pag_products_section .pag_product_panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
  transition: opacity 0.2s ease;
}
#pag_products_section .pag_product_panel:hover img {
  transform: scale(1.05);
}
#pag_products_section .pag_product_panel:hover::after {
  opacity: 0.8;
}
#pag_products_section .pag_product_panel .pag_product_panel_label {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pag_quote_bubble {
  background: #f8f4f0;
  border-radius: 0;
  padding: 28px 32px;
  position: relative;
}
.pag_quote_bubble::after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 32px solid #f8f4f0;
  border-right: 32px solid transparent;
}
.pag_quote_bubble p {
  font-size: 0.9rem;
  color: #3d3d3d;
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}
.pag_quote_bubble_head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.pag_quote_avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.pag_quote_author {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pag_quote_author strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e2430;
}
.pag_quote_author span {
  font-size: 0.8rem;
  color: #f5326f;
}
.pag_quote_ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.pag_quote_bubble.pag_quote_bubble_white {
  background: #fff;
}
.pag_quote_bubble.pag_quote_bubble_white::after {
  border-top-color: #fff;
}
#pag_articles_section {
  padding: 80px 0;
  background: #fff;
}
#pag_articles_section .pag_article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #e2e2e8;
}
#pag_articles_section .pag_article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#pag_articles_section .pag_article.pag_article_rev {
  direction: rtl;
}
#pag_articles_section .pag_article.pag_article_rev > * {
  direction: ltr;
}
#pag_articles_section .pag_article .pag_article_img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
#pag_articles_section .pag_article .pag_article_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#pag_articles_section .pag_article .pag_article_content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#pag_articles_section .pag_article .pag_article_text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: #1b1a42;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
}
#pag_articles_section .pag_article .pag_article_text h2 strong {
  font-weight: 700;
}
#pag_articles_section .pag_article .pag_article_text p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.8;
}
#pag_about {
  position: relative;
  background: #f4f4f6;
  padding: calc(($tooth-h + 72px)) 0 calc(($tooth-h + 72px));
}
#pag_about::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1' preserveAspectRatio='none'%3E%3Cpolygon points='0,1 1,0 2,1' fill='%23f4f4f6'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 54px 10px;
  background-position: top left;
  pointer-events: none;
}
#pag_about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1' preserveAspectRatio='none'%3E%3Cpolygon points='0,1 1,0 2,1' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 54px 10px;
  background-position: top left;
  pointer-events: none;
}
#pag_about #pag_about_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 32px;
}
#pag_about #pag_about_text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: #1e2430;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: left;
}
#pag_about #pag_about_text h2 strong {
  font-weight: 700;
}
#pag_about #pag_about_text p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 16px;
}
#pag_about #pag_about_team {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
#pag_about .pag_about_avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}
#pag_about #pag_about_img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
#pag_about #pag_about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#pag_blog_section {
  padding: 80px 0;
}
#pag_blog_section #pag_blog_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
#pag_blog_section .pag_blog_card {
  display: flex;
  flex-direction: column;
}
#pag_blog_section .pag_blog_card_img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
#pag_blog_section .pag_blog_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
#pag_blog_section .pag_blog_card_img:hover img {
  transform: scale(1.04);
}
#pag_blog_section .pag_blog_card_body {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#pag_blog_section .pag_blog_card_body h3 {
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  text-align: left;
}
#pag_blog_section .pag_blog_card_body h3 a {
  color: #1e2430;
  text-decoration: none;
}
#pag_blog_section .pag_blog_card_body h3 a:hover {
  color: #f5326f;
}
#pag_blog_section .pag_blog_card_body p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
#pag_blog_section .pag_blog_read_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f5326f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}
#pag_blog_section .pag_blog_read_more svg {
  flex-shrink: 0;
}
#pag_blog_section .pag_blog_read_more:hover {
  gap: 10px;
}
@media (max-width: 1024px) {
  #pag_features .pag_features_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  #pag_blog_section #pag_blog_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  #pag_blog_section .pag_blog_card:last-child {
    display: none;
  }
}
@media (max-width: 900px) {
  #pag_articles_section .pag_article {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #pag_articles_section .pag_article.pag_article_rev {
    direction: ltr;
  }
  #pag_articles_section .pag_article .pag_article_img {
    aspect-ratio: 16/9;
  }
  #pag_about #pag_about_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #pag_about #pag_about_img {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 768px) {
  #pag_products_section {
    grid-template-columns: repeat(2, 1fr);
  }
  #pag_products_section .pag_product_panel {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 600px) {
  #pag_hero #pag_hero_text {
    padding: 48px 0 32px;
  }
  #pag_hero #pag_hero_deco_plant,
  #pag_hero #pag_hero_deco_camera {
    display: none;
  }
  #pag_hero .pag_strip_track img {
    height: 160px;
  }
  #pag_features .pag_features_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #pag_blog_section {
    padding: 48px 0;
  }
  #pag_blog_section #pag_blog_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #pag_blog_section .pag_blog_card:last-child {
    display: flex;
  }
}
#pag_cart_menu {
  background: #fff;
  border-bottom: 1px solid #e2e2e8;
}
#pag_cart_steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}
.pag_cart_step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.35;
  transition: opacity 0.2s;
}
.pag_cart_step.active,
.pag_cart_step.done {
  opacity: 1;
}
.pag_cart_step a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.pag_step_num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f4f4f6;
  color: #1e2430;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.pag_cart_step.active .pag_step_num {
  background: #f5326f;
  color: #fff;
}
.pag_cart_step.done .pag_step_num {
  background: #22c55e;
  color: #fff;
}
.pag_step_label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e2430;
  white-space: nowrap;
}
.pag_cart_step_sep {
  width: 40px;
  height: 1px;
  background: #e2e2e8;
  margin: 0 8px;
  flex-shrink: 0;
}
#pag_header.nakup #pag_nav {
  display: none;
}
#pag_content.nakup {
  padding-top: 0;
}
@media (max-width: 600px) {
  .pag_step_label {
    display: none;
  }
  .pag_cart_step_sep {
    width: 20px;
    margin: 0 4px;
  }
}
#pag_footer_image {
  display: block;
  line-height: 0;
}
#pag_footer_image img {
  display: block;
  width: 100%;
  height: auto;
}
#pag_scroll_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(30,36,48,0.12);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#pag_scroll_top.visible {
  display: flex;
}
#pag_kontakty #pag_kontakty_hero {
  background: #eeeaf7;
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
}
#pag_kontakty #pag_kontakty_hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1' preserveAspectRatio='none'%3E%3Cpolygon points='0,1 1,0 2,1' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 54px 10px;
  background-position: bottom left;
}
#pag_kontakty #pag_kontakty_hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1b1a42;
  margin: 0 0 16px;
}
#pag_kontakty #pag_kontakty_hero p {
  font-size: 1.05rem;
  color: #777;
  margin: 0;
}
#pag_kontakty #pag_kontakty_oddeleni {
  padding: 80px 0;
  background: #fff;
}
#pag_kontakty #pag_kontakty_oddeleni .pag_kontakty_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
#pag_kontakty .pag_kontakty_card {
  background: #f4f4f6;
  border-radius: 10px;
  padding: 44px 32px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
#pag_kontakty .pag_kontakty_card:hover {
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
  transform: translateY(-4px);
}
#pag_kontakty .pag_kontakty_card .pag_kontakty_ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fa8555, #f5326f);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}
#pag_kontakty .pag_kontakty_card .pag_kontakty_ico svg {
  width: 24px;
  height: 24px;
}
#pag_kontakty .pag_kontakty_card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b1a42;
  margin: 0;
}
#pag_kontakty .pag_kontakty_card .pag_kontakty_tel {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2430;
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-top: 4px;
}
#pag_kontakty .pag_kontakty_card .pag_kontakty_tel:hover {
  color: #f5326f;
}
#pag_kontakty .pag_kontakty_card .pag_kontakty_mail {
  font-size: 0.88rem;
  color: #f5326f;
  text-decoration: none;
}
#pag_kontakty .pag_kontakty_card .pag_kontakty_mail:hover {
  text-decoration: underline;
}
#pag_kontakty #pag_kontakty_team {
  padding: 80px 0;
  background: #f4f4f6;
}
#pag_kontakty #pag_kontakty_team .pag_section_title {
  text-align: center;
  margin-bottom: 48px;
}
#pag_kontakty #pag_kontakty_team .pag_kontakty_team_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
#pag_kontakty .pag_kontakty_person {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 2px 16px rgba(30,36,48,0.08);
  transition: box-shadow 0.2s ease;
}
#pag_kontakty .pag_kontakty_person:hover {
  box-shadow: 0 4px 20px rgba(30,36,48,0.12);
}
#pag_kontakty .pag_kontakty_person .pag_kontakty_avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
#pag_kontakty .pag_kontakty_person .pag_kontakty_person_info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#pag_kontakty .pag_kontakty_person .pag_kontakty_person_info strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e2430;
  line-height: 1.3;
}
#pag_kontakty .pag_kontakty_person .pag_kontakty_person_info span {
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 8px;
  line-height: 1.4;
}
#pag_kontakty .pag_kontakty_person .pag_kontakty_person_info a {
  font-size: 0.85rem;
  color: #f5326f;
  text-decoration: none;
}
#pag_kontakty .pag_kontakty_person .pag_kontakty_person_info a:hover {
  text-decoration: underline;
}
#pag_kontakty #pag_kontakty_info {
  padding: 80px 0;
  background: #fff;
}
#pag_kontakty #pag_kontakty_info .pag_kontakty_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
#pag_kontakty .pag_kontakty_info_card {
  background: #f4f4f6;
  border-radius: 10px;
  padding: 40px;
}
#pag_kontakty .pag_kontakty_info_card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1b1a42;
  margin: 0 0 28px;
}
#pag_kontakty .pag_kontakty_info_card .pag_kontakty_info_ico {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #fa8555, #f5326f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#pag_kontakty .pag_kontakty_info_card .pag_kontakty_info_ico svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
#pag_kontakty .pag_kontakty_firma_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: #1e2430;
}
#pag_kontakty .pag_kontakty_firma_list span {
  color: #777;
  margin-right: 4px;
}
#pag_kontakty .pag_kontakty_firma_name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
#pag_kontakty .pag_kontakty_hodiny_row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  background: #fff;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
#pag_kontakty .pag_kontakty_hodiny_row span {
  font-size: 0.9rem;
  color: #777;
}
#pag_kontakty .pag_kontakty_hodiny_row strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1b1a42;
}
#pag_kontakty .pag_kontakty_hodiny_closed strong {
  color: #777;
  font-size: 0.95rem;
  font-weight: 500;
}
#pag_kontakty .pag_kontakty_hodiny_note {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #pag_kontakty .pag_kontakty_grid,
  #pag_kontakty .pag_kontakty_team_grid,
  #pag_kontakty .pag_kontakty_info_grid {
    grid-template-columns: 1fr;
  }
  #pag_kontakty #pag_kontakty_oddeleni,
  #pag_kontakty #pag_kontakty_team,
  #pag_kontakty #pag_kontakty_info {
    padding: 56px 0;
  }
  #pag_kontakty #pag_kontakty_hero {
    padding: 56px 0 48px;
  }
}
@media (max-width: 600px) {
  #pag_kontakty .pag_kontakty_card {
    padding: 36px 24px;
  }
  #pag_kontakty .pag_kontakty_info_card {
    padding: 28px;
  }
}
body:has(#app_container) #pag_header {
  position: relative;
}
#app_head {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #e2e2e8;
}
#app_head .app_head_panel {
  flex: 0 0 50%;
  width: 50%;
}
#app_head .app_head_right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}
#app_head .selectric-wrapper {
  width: 100%;
  margin-bottom: 0;
}
#app_head .selectric {
  background: #fff;
  border: none;
  border-radius: 0;
  height: 64px;
}
#app_head .selectric .label {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e2430;
  height: 64px;
  line-height: 64px;
  padding: 0 52px 0 20px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app_head .selectric .button,
#app_head .selectric .select_button {
  width: 52px;
  height: 64px;
  top: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F5326F' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center;
  color: transparent;
  font-size: 0;
}
#app_head .selectric .button::after,
#app_head .selectric .select_button::after {
  display: none;
}
#app_head .selectric-open .selectric {
  background: #fff;
}
#app_head .selectric-items {
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  z-index: 9999;
}
#app_head .selectric-items ul,
#app_head .selectric-items li {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  min-height: auto;
}
#app_head .selectric-items li {
  padding: 14px 20px;
  margin: 0;
  color: #1e2430;
  font-weight: 500;
  border-bottom: 1px solid #e2e2e8;
  cursor: pointer;
}
#app_head .selectric-items li:last-child {
  border-bottom: none;
}
#app_head .selectric-items li.selected {
  background: #fff1ee;
  color: #f5326f;
  font-weight: 700;
}
#app_head .selectric-items li.highlighted,
#app_head .selectric-items li:hover {
  background: #fff1ee;
  color: #f5326f;
}
#servis_panel_app {
  bottom: 0;
}
#app_container .app_panel {
  padding-left: 88px;
}
@media (max-width: 799px) {
  #app_container .app_panel {
    padding-left: 0;
  }
}
#app_container #loader,
#app_container #small_loader {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(2px);
}
#app_container #loader::after,
#app_container #small_loader::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(245,50,111,0.25);
  border-top-color: #f5326f;
  border-radius: 50%;
  animation: pag_spin 0.75s linear infinite;
  background: none;
}
#app_container #themes_container_full {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(30,36,48,0.16);
  border: 1px solid #e2e2e8;
  padding: 24px 20px 20px;
  overflow: hidden;
}
#app_container #themes_container_full.shown {
  display: flex;
  flex-direction: column;
}
#app_container #themes_container_full #close_themes_container_full {
  color: #777;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  top: 12px;
  right: 14px;
  text-decoration: none;
}
#app_container #themes_container_full #close_themes_container_full:hover {
  color: #f5326f;
}
#app_container #themes_container_full #themes_container {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
#app_container #themes_container_full #themes_container h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e2430;
  margin: 0 0 16px;
  text-align: left;
}
#app_container #themes_container_full #themes_container .sizes-viewport {
  border-bottom: none;
  overflow: hidden;
}
#app_container #themes_container_full #themes_container .sizes-track {
  justify-content: flex-start;
  padding: 4px 0;
  mask-image: none;
  gap: 6px;
  cursor: grab;
}
#app_container #themes_container_full #themes_container .sizes-track.is-dragging {
  cursor: grabbing;
}
#app_container #themes_container_full #themes_container .size-card {
  min-width: auto;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid #e2e2e8;
  box-shadow: none;
  color: #1e2430;
  transition: all 0.15s ease;
}
#app_container #themes_container_full #themes_container .size-card.active {
  background: linear-gradient(135deg, #fa8555, #f5326f);
  border-color: transparent;
  color: #fff;
}
#app_container #themes_container_full #themes_container .size-card:hover:not(.active) {
  border-color: #f5326f;
  color: #f5326f;
}
#app_container #themes_container_full #themes_container section.filters {
  padding: 12px 0 16px;
  gap: 6px;
  justify-content: flex-start;
}
#app_container #themes_container_full #themes_container .pill label {
  padding: 6px 12px;
  font-size: 0.85rem;
  box-shadow: none;
  border-color: #e2e2e8;
  gap: 6px;
}
#app_container #themes_container_full #themes_container .pill label::before {
  width: 13px;
  height: 13px;
}
#app_container #themes_container_full #themes_container .pill input:checked + label {
  border-color: #1aab9f;
  background: rgba(26,171,159,0.08);
  color: #1e2430;
}
#app_container #themes_container_full #themes_container .pill input:checked + label::before {
  border-color: #1aab9f;
  background: radial-gradient(circle at 50% 50%, #1aab9f 55%, transparent 56%);
}
#app_container #themes_container_full #themes_container #themesContainerWrapper {
  flex: 1;
  min-height: 0;
}
#app_container #themes_container_full #themes_container #themesContainerWrapper .scrollbar {
  overflow-y: auto;
  max-height: 100%;
  padding: 4px 8px 4px 0;
  scrollbar-width: thin;
  scrollbar-color: #e2e2e8 transparent;
}
#app_container #themes_container_full #themes_container #themesContainerWrapper .scrollbar .inner_flex_container {
  gap: 12px;
}
#app_container #themes_container_full #themes_container #themesContainerWrapper .scrollbar .inner_flex_container .theme_cont {
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(30,36,48,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
#app_container #themes_container_full #themes_container #themesContainerWrapper .scrollbar .inner_flex_container .theme_cont:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,36,48,0.14);
}
#app_container #themes_container_full #themes_container #themesContainerWrapper .scrollbar .inner_flex_container .theme_cont.active {
  box-shadow: 0 0 0 3px #f5326f;
}
#app_container #themes_container_full #themes_container #themesContainerWrapper .scrollbar .inner_flex_container .theme_cont .theme_image {
  border-radius: 0;
}
#pag_app_head_controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
#pag_app_head_controls form {
  flex: 0 0 auto;
}
#pag_app_head_controls .pag_app_offset {
  flex: 0 0 auto;
  margin: 0;
}
#pag_app_head_controls .pag_app_offset label {
  display: none;
}
#pag_app_head_controls .pag_app_offset .selectric-wrapper {
  width: auto;
}
#pag_app_head_controls .pag_app_offset .selectric {
  height: 40px;
  border: 1px solid #e2e2e8;
  border-radius: 6px;
}
#pag_app_head_controls .pag_app_offset .selectric .label {
  height: 40px;
  line-height: 40px;
  font-size: 0.95rem;
  padding: 0 40px 0 14px;
}
#pag_app_head_controls .pag_app_offset .selectric .button,
#pag_app_head_controls .pag_app_offset .selectric .select_button {
  height: 40px;
}
#pag_pdp #pag_hero.pag_pdp_hero {
  background: #f4f4f6;
  min-height: 0;
  display: block;
}
#pag_pdp #pag_hero.pag_pdp_hero .pag_container {
  display: block;
  width: 100%;
  padding-top: 56px;
  padding-bottom: calc(64px + 10px);
}
#pag_pdp #pag_hero_heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 32px;
  text-align: center;
  color: #1b1a42;
}
#pag_pdp #pag_pdp_hero_inner {
  display: grid;
  grid-template-columns: 510px 1fr;
  gap: 40px;
  align-items: start;
}
#pag_pdp #pag_pdp_hero_left {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
#pag_pdp #pag_pdp_order_card {
  background: linear-gradient(135deg, #fa8555, #f5326f);
  border-radius: 0;
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: none;
  width: 100%;
}
#pag_pdp #pag_pdp_order_card #pag_pdp_order_title {
  display: none;
}
#pag_pdp #pag_pdp_order_card #pag_pdp_pills_bar {
  background: rgba(255,255,255,0.25);
  border-radius: 40px;
  padding: 4px;
}
#pag_pdp #pag_pdp_order_card #pag_pdp_pills_bar .pag_pill {
  color: rgba(255,255,255,0.85);
  background: transparent;
}
#pag_pdp #pag_pdp_order_card #pag_pdp_pills_bar .pag_pill.active {
  background: #fff;
  color: #f5326f;
}
#pag_pdp #pag_pdp_order_card .pag_pdp_form_row select,
#pag_pdp #pag_pdp_order_card .pag_pdp_form_row input[type=text]:not([name=qty]) {
  background: #fff;
  border-radius: 6px;
}
#pag_pdp #pag_pdp_order_card #pag_pdp_order_qty_row {
  display: flex;
  align-items: center;
  gap: 16px;
}
#pag_pdp #pag_pdp_order_card .pag_pdp_qty_ctrl {
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}
#pag_pdp #pag_pdp_order_card .pag_pdp_qty_ctrl input {
  color: #1e2430;
}
#pag_pdp #pag_pdp_order_card .pag_pdp_qty_ctrl .pag_qty_btn {
  color: #f5326f;
}
#pag_pdp #pag_pdp_order_card #PDprice .price_main {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}
#pag_pdp #pag_pdp_order_card #PDprice .price_undiscount {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  display: none;
}
#pag_pdp #pag_pdp_order_card #PDprice .price_undiscount.shown {
  display: inline-block;
}
#pag_pdp #pag_pdp_order_card #PDPcreate .pag_pdp_order_cta {
  background: #1b1a42;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 0;
  width: 100%;
}
#pag_pdp #pag_pdp_order_card #PDPcreate .pag_pdp_order_cta:hover {
  background: #272660;
}
#pag_pdp #pag_pdp_order_card #discount_info {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
}
#pag_pdp #pag_pdp_order_card #discount_info .pag_discount_msg_ico svg path {
  fill: rgba(255,255,255,0.9);
}
#pag_pdp #pag_pdp_hero_right {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
#pag_pdp #pag_hero_photo_wrap {
  position: relative;
  height: 520px;
  border-radius: 10px;
  overflow: hidden;
}
#pag_pdp #pag_hero_photo_slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#pag_pdp #pag_hero_photo_slider .pag_hero_slide {
  height: 100%;
}
#pag_pdp #pag_hero_photo_slider .pag_hero_slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
#pag_pdp #pag_hero_photo_slider .slick-list,
#pag_pdp #pag_hero_photo_slider .slick-track {
  height: 100%;
}
#pag_pdp .pag_hero_slide_prev,
#pag_pdp .pag_hero_slide_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #1e2430;
  cursor: pointer;
  transition: background 0.2s ease;
  backdrop-filter: blur(4px);
}
#pag_pdp .pag_hero_slide_prev:hover,
#pag_pdp .pag_hero_slide_next:hover {
  background: #fff;
}
#pag_pdp .pag_hero_slide_prev {
  left: 12px;
}
#pag_pdp .pag_hero_slide_next {
  right: 12px;
}
#pag_pdp .pag_hero_badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: #1aab9f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 6px;
}
#pag_pdp .pag_hero_badge small {
  display: block;
  font-size: 11px;
  font-weight: 400;
}
#pag_pdp .pag_pdp_hero_eyebrow {
  font-size: 0.85rem;
  font-weight: 400;
  color: #1e2430;
  margin-bottom: 14px;
}
#pag_pdp .pag_hero_sub {
  display: block;
  font-weight: 400;
}
#pag_pdp .pag_pdp_hero_checks {
  list-style: none;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
#pag_pdp .pag_pdp_hero_checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #1e2430;
}
#pag_pdp .pag_pdp_hero_checks li::before {
  content: '✓';
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#pag_pdp #pag_pdp_hero_right {
  position: relative;
}
#pag_pdp #pag_pdp_hero_photo {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
  object-fit: cover;
}
#pag_pdp #pag_pdp_types {
  background: #f4f4f6;
  padding: 80px 0;
}
#pag_pdp #pag_pdp_types .pag_section_title {
  text-align: center;
  margin-bottom: 60px;
}
#pag_pdp #pag_pdp_types .pag_pdp_types_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
#pag_pdp #pag_pdp_types .pag_pdp_type {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#pag_pdp #pag_pdp_types .pag_pdp_type_ico {
  display: flex;
  align-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 4px;
}
#pag_pdp #pag_pdp_types .pag_pdp_type_ico img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#pag_pdp #pag_pdp_types .pag_pdp_type strong {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #1b1a42;
}
#pag_pdp #pag_pdp_types .pag_pdp_type p {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
  color: #777;
  margin: 0;
}
#pag_pdp #pag_pdp_themes {
  padding: 80px 0;
  border-top: 1px solid #f4f4f6;
}
#pag_pdp #pag_pdp_themes .pag_pdp_themes_cta {
  text-align: center;
  margin-top: 48px;
}
#pag_pdp #pag_pdp_themes #themes_container {
  height: auto;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
#pag_pdp #pag_pdp_themes #themes_container h3 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: #1e2430;
  margin: 0 0 28px;
}
#pag_pdp #pag_pdp_themes #themes_container .sizes-viewport {
  border-bottom: none;
  overflow: visible;
}
#pag_pdp #pag_pdp_themes #themes_container .sizes-track {
  justify-content: flex-start;
  padding: 6px 0;
  mask-image: none;
  gap: 8px;
  cursor: grab;
}
#pag_pdp #pag_pdp_themes #themes_container .sizes-track.is-dragging {
  cursor: grabbing;
}
#pag_pdp #pag_pdp_themes #themes_container .size-card {
  min-width: auto;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid #e2e2e8;
  box-shadow: none;
  color: #1e2430;
  transition: all 0.15s ease;
}
#pag_pdp #pag_pdp_themes #themes_container .size-card.active {
  background: linear-gradient(135deg, #fa8555, #f5326f);
  border-color: transparent;
  color: #fff;
}
#pag_pdp #pag_pdp_themes #themes_container .size-card:hover:not(.active) {
  border-color: #f5326f;
  color: #f5326f;
}
#pag_pdp #pag_pdp_themes #themes_container section.filters {
  padding: 16px 0 24px;
  gap: 8px;
  justify-content: center;
}
#pag_pdp #pag_pdp_themes #themes_container .pill label {
  padding: 7px 14px;
  font-size: 0.88rem;
  box-shadow: none;
  border-color: #e2e2e8;
  gap: 7px;
}
#pag_pdp #pag_pdp_themes #themes_container .pill label::before {
  width: 14px;
  height: 14px;
}
#pag_pdp #pag_pdp_themes #themes_container .pill input:checked + label {
  border-color: #1aab9f;
  background: rgba(26,171,159,0.08);
  color: #1e2430;
}
#pag_pdp #pag_pdp_themes #themes_container .pill input:checked + label::before {
  border-color: #1aab9f;
  background: radial-gradient(circle at 50% 50%, #1aab9f 55%, transparent 56%);
}
#pag_pdp #pag_pdp_themes #themes_container #themesContainerWrapper {
  height: 700px;
}
#pag_pdp #pag_pdp_themes #themes_container #themesContainerWrapper .scrollbar {
  overflow-y: auto;
  padding: 4px 8px 4px 0;
  scrollbar-width: thin;
  scrollbar-color: #e2e2e8 transparent;
}
#pag_pdp #pag_pdp_themes #themes_container #themesContainerWrapper .scrollbar .inner_flex_container {
  justify-content: flex-start;
  gap: 16px;
}
#pag_pdp #pag_pdp_themes #themes_container #themesContainerWrapper .scrollbar .inner_flex_container .theme_cont {
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(30,36,48,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
#pag_pdp #pag_pdp_themes #themes_container #themesContainerWrapper .scrollbar .inner_flex_container .theme_cont:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(30,36,48,0.14);
}
#pag_pdp #pag_pdp_themes #themes_container #themesContainerWrapper .scrollbar .inner_flex_container .theme_cont.active {
  box-shadow: 0 0 0 3px #f5326f;
}
#pag_pdp #pag_pdp_themes #themes_container #themesContainerWrapper .scrollbar .inner_flex_container .theme_cont .theme_image {
  border-radius: 0;
}
#pag_pdp #pag_pdp_recenze {
  position: relative;
  background: #f4f4f6;
  padding: 40px 0;
  margin: 30px 0;
}
#pag_pdp #pag_pdp_recenze::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 1,1 2,0' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 54px 10px;
  background-position: top left;
  pointer-events: none;
  z-index: 3;
}
#pag_pdp #pag_pdp_recenze::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1' preserveAspectRatio='none'%3E%3Cpolygon points='0,1 1,0 2,1' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 54px 10px;
  background-position: bottom left;
  pointer-events: none;
  z-index: 3;
}
#pag_pdp #pag_pdp_recenze .pag_recenze_subtitle {
  text-align: center;
  color: #777;
  font-size: 0.95rem;
  margin: -8px 0 48px;
}
#pag_pdp #pag_pdp_recenze .pag_recenze_stars {
  color: #fa8555;
  letter-spacing: 1px;
}
#pag_pdp #pag_pdp_recenze .pag_recenze_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
#pag_pdp #pag_pdp_recenze .pag_recenze_arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e2e2e8;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.15s ease;
  color: #1e2430;
}
#pag_pdp #pag_pdp_recenze .pag_recenze_arrow:hover:not([disabled]) {
  border-color: #f5326f;
  color: #f5326f;
}
#pag_pdp #pag_pdp_recenze .pag_recenze_arrow[disabled] {
  opacity: 0.35;
  cursor: default;
}
#pag_pdp #pag_pdp_recenze .pag_recenze_viewport {
  flex: 1;
  overflow-x: hidden;
  overflow-y: visible;
}
#pag_pdp #pag_pdp_recenze .pag_recenze_track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 40px;
}
#pag_pdp #pag_pdp_recenze .pag_recenze_card {
  flex: 0 0 calc(50% - 12px);
}
@media (max-width: 768px) {
  #pag_pdp #pag_pdp_recenze .pag_recenze_card {
    flex: 0 0 100%;
  }
}
#pag_pdp #pag_pdp_faq {
  padding: 30px 0 80px 0;
  background: #fff;
}
#pag_pdp #pag_pdp_faq .pag_faq_head {
  text-align: center;
  margin-bottom: 48px;
}
#pag_pdp #pag_pdp_faq .pag_faq_avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
#pag_pdp #pag_pdp_faq .pag_faq_avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  margin-left: -10px;
}
#pag_pdp #pag_pdp_faq .pag_faq_avatar:first-child {
  margin-left: 0;
}
#pag_pdp #pag_pdp_faq .pag_faq_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
}
#pag_pdp #pag_pdp_faq .pag_faq_item {
  border-bottom: 1px solid #e2e2e8;
}
#pag_pdp #pag_pdp_faq .pag_faq_item:last-child {
  border-bottom: none;
}
#pag_pdp #pag_pdp_faq .pag_faq_q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e2430;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
}
#pag_pdp #pag_pdp_faq .pag_faq_q span:first-child {
  flex: 1;
}
#pag_pdp #pag_pdp_faq .pag_faq_icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff1ee;
  display: grid;
  place-items: center;
  color: #f5326f;
  transition: transform 0.25s ease;
}
#pag_pdp #pag_pdp_faq .pag_faq_item.open .pag_faq_icon {
  transform: rotate(180deg);
}
#pag_pdp #pag_pdp_faq .pag_faq_a {
  display: none;
  padding-bottom: 20px;
}
#pag_pdp #pag_pdp_faq .pag_faq_a p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.7;
  margin: 0;
}
#pag_pdp #pag_pdp_faq .pag_faq_item.open .pag_faq_a {
  display: block;
}
@media (max-width: 768px) {
  #pag_pdp #pag_pdp_faq .pag_faq_grid {
    grid-template-columns: 1fr;
  }
}
#pag_pdp #pag_articles_section {
  padding-top: 0;
}
#pag_pdp #pag_articles_section.pag_pdp_articles {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  #pag_pdp #pag_pdp_hero_inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 56px 0 64px;
  }
  #pag_pdp .pag_pdp_types_grid {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  #pag_pdp #pag_pdp_hero_inner {
    grid-template-columns: 1fr;
    padding: 48px 0 56px;
  }
  #pag_pdp #pag_pdp_hero_right {
    display: none;
  }
  #pag_pdp #pag_pdp_hero_left #pag_hero_heading {
    text-align: center;
  }
  #pag_pdp .pag_pdp_hero_eyebrow {
    align-self: center;
  }
  #pag_pdp .pag_pdp_hero_checks {
    align-self: center;
  }
  #pag_pdp .pag_hero_cta {
    align-self: center;
  }
  #pag_pdp .pag_pdp_types_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#pag_pdp #pag_features {
  border-bottom: none;
}
#pag_pdp_order {
  position: relative;
  background: #eeeaf7;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#pag_pdp_order::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 1,1 2,0' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 54px 10px;
  background-position: top left;
  z-index: 2;
}
#pag_pdp_order::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1' preserveAspectRatio='none'%3E%3Cpolygon points='0,1 1,0 2,1' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 54px 10px;
  background-position: bottom left;
  z-index: 2;
}
#pag_pdp_order_photos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
#pag_pdp_order_photos .pag_pdp_bg_photo {
  position: absolute;
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(30,36,48,0.12);
}
#pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_0 {
  left: 0;
  top: 60px;
  transform: rotate(-4deg);
}
#pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_1 {
  left: 140px;
  top: 140px;
  transform: rotate(3deg);
}
#pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_2 {
  left: 270px;
  top: 50px;
  transform: rotate(-2deg);
}
#pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_3 {
  right: 270px;
  top: 60px;
  transform: rotate(3deg);
}
#pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_4 {
  right: 140px;
  top: 140px;
  transform: rotate(-3deg);
}
#pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_5 {
  right: 0;
  top: 50px;
  transform: rotate(4deg);
}
#pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_6 {
  left: 60px;
  bottom: 30px;
  transform: rotate(2deg);
}
#pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_7 {
  right: 60px;
  bottom: 30px;
  transform: rotate(-2deg);
}
#pag_pdp_order_card {
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, #fa8555, #f5326f);
  border-radius: 0;
  padding: 48px 52px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
  text-align: center;
}
#pag_pdp_order_card #pag_pdp_order_title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
  margin-top: 0;
  line-height: 1.3;
}
#pag_pdp_order_card #pag_pdp_pills_bar {
  position: relative;
  display: inline-flex;
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
  margin: auto;
  margin-bottom: 20px;
  align-self: center;
}
#pag_pdp_order_card .pag_pill_slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: #fff;
  border-radius: 999px;
  transition: transform 0.24s cubic-bezier(0.34, 1.4, 0.64, 1), width 0.24s cubic-bezier(0.34, 1.4, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}
#pag_pdp_order_card .pag_pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.2s;
  user-select: none;
  letter-spacing: 0.03em;
}
#pag_pdp_order_card .pag_pill:hover {
  color: rgba(255,255,255,0.95);
}
#pag_pdp_order_card .pag_pill.active {
  color: #f5326f;
}
#pag_pdp_order_card .pag_pdp_form_row.pag_has_radio {
  display: none;
}
#pag_pdp_order_card #pdp_discount_badge {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: #1aab9f;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 10px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
  display: none;
  align-items: center;
  gap: 8px;
}
#pag_pdp_order_card #pdp_discount_badge.visible {
  display: flex;
}
#pag_pdp_order_card #pdp_discount_badge svg {
  flex-shrink: 0;
}
#pag_pdp_order_card .selectric-wrapper {
  width: 100%;
  margin-bottom: 16px;
}
#pag_pdp_order_card .selectric {
  background: #fff;
  border: none;
  border-radius: 0;
  height: 64px;
}
#pag_pdp_order_card .selectric .label {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e2430;
  height: 64px;
  line-height: 64px;
  padding: 0 52px 0 20px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#pag_pdp_order_card .selectric .button,
#pag_pdp_order_card .selectric .select_button {
  width: 52px;
  height: 64px;
  top: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F5326F' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center;
  color: transparent;
  font-size: 0;
}
#pag_pdp_order_card .selectric .button::after,
#pag_pdp_order_card .selectric .select_button::after {
  display: none;
}
#pag_pdp_order_card .selectric-open .selectric {
  background: #fff;
}
#pag_pdp_order_card .selectric-items {
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  z-index: 9999;
}
#pag_pdp_order_card .selectric-items ul,
#pag_pdp_order_card .selectric-items li {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  min-height: auto;
}
#pag_pdp_order_card .selectric-items li {
  padding: 14px 20px;
  margin: 0;
  color: #1e2430;
  font-weight: 500;
  border-bottom: 1px solid #e2e2e8;
  cursor: pointer;
}
#pag_pdp_order_card .selectric-items li:last-child {
  border-bottom: none;
}
#pag_pdp_order_card .selectric-items li.selected {
  background: #fff1ee;
  color: #f5326f;
  font-weight: 700;
}
#pag_pdp_order_card .selectric-items li.highlighted,
#pag_pdp_order_card .selectric-items li:hover {
  background: #fff1ee;
  color: #f5326f;
}
#pag_pdp_order_card .pag_pdp_form_row.pag_has_select {
  margin-bottom: 16px;
}
#pag_pdp_order_card .pag_pdp_form_row select {
  display: block;
  width: 100%;
  padding: 0 52px 0 20px;
  height: 64px;
  border-radius: 0;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #1e2430;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F5326F' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
#pag_pdp_order_card .pag_pdp_form_row select option {
  background: #fff;
  color: #1e2430;
  font-weight: 600;
}
#pag_pdp_order_card .pag_pdp_form_row select option:checked {
  background: #fff1ee;
  color: #f5326f;
}
#pag_pdp_order_card .pag_pdp_form_row select:focus {
  outline: none;
}
#pag_pdp_order_qty_row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 20px;
}
#pag_pdp_order_qty_row .pag_pdp_qty_ctrl {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}
#pag_pdp_order_qty_row .pag_pdp_qty_ctrl input[type="text"] {
  width: 52px;
  border: none;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e2430;
  background: transparent;
  padding: 0;
}
#pag_pdp_order_qty_row .pag_pdp_qty_ctrl input[type="text"]:focus {
  outline: none;
}
#pag_pdp_order_qty_row .pag_pdp_qty_ctrl .pag_pdp_qty_unit {
  display: none;
}
#pag_pdp_order_qty_row .pag_qty_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 48px;
  background: #fff;
  border: none;
  border-right: 1px solid rgba(0,0,0,0.1);
  color: #f5326f;
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
#pag_pdp_order_qty_row .pag_qty_btn:hover {
  background: #fff1ee;
}
#pag_pdp_order_qty_row .pag_qty_btn.pag_qty_plus {
  border-right: none;
  border-left: 1px solid rgba(0,0,0,0.1);
}
#pag_pdp_order_qty_row #PDprice {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  position: relative;
  color: #fff;
}
#pag_pdp_order_qty_row .pag_pdp_price_col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#pag_pdp_order_qty_row .pag_pdp_price_col .price_undiscount {
  font-size: 0.8rem;
  text-decoration: line-through;
  opacity: 0.65;
}
#pag_pdp_order_qty_row .pag_pdp_price_col .price_main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
#pag_pdp_order_qty_row .pag_discount_badge {
  flex-shrink: 0;
  background: #1aab9f;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 0;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  display: none;
  align-items: center;
}
#pag_pdp_order_qty_row .pag_discount_badge.shown {
  display: flex;
}
#PDprice.is-loading {
  opacity: 0.4;
  pointer-events: none;
}
#PDprice.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pag_price_spin 0.7s linear infinite;
}
.pag_pdp_order_cta {
  display: block;
  width: 100%;
  padding: 17px;
  background: #1b1a42;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  margin-bottom: 16px;
  transition: background 0.2s ease;
}
.pag_pdp_order_cta:hover {
  background: #2a2866;
  color: #fff;
}
#discount_info {
  margin-top: 8px;
  display: none;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
#discount_info.shown {
  display: flex;
  justify-content: center;
}
#discount_info .pag_discount_msg_ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
#discount_info .pag_discount_msg_ico svg {
  width: 17px;
  height: 17px;
}
#discount_info #qty_discount_msg {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}
#discount_info #qty_discount_msg b,
#discount_info #qty_discount_msg strong {
  color: #fff;
  font-weight: 700;
}
#main_progress {
  margin-bottom: 12px;
}
@media (max-width: 1200px) {
  #pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_2,
  #pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_3 {
    display: none;
  }
}
@media (max-width: 900px) {
  #pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_1,
  #pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_4,
  #pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_6,
  #pag_pdp_order_photos .pag_pdp_bg_photo.pag_pdp_bg_photo_7 {
    display: none;
  }
}
@media (max-width: 600px) {
  #pag_pdp_order_photos {
    display: none;
  }
  #pag_pdp_order_card {
    margin: 0 16px;
    padding: 32px 24px;
    max-width: none;
    width: calc(100% - 32px);
    box-sizing: border-box;
    overflow: hidden;
  }
  #pag_pdp_order_qty_row {
    flex-wrap: wrap;
  }
  #pag_pdp_order_qty_row #PDprice {
    flex: 0 0 100%;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  #pag_pdp_order_qty_row #PDprice .pag_pdp_price_col {
    align-items: flex-start;
  }
}
.pag_btn_inline {
  width: auto;
  display: inline-flex;
}
.pag_btn_sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}
#pag_pdp_templates {
  padding: 80px 0 60px;
  background: #fff;
  text-align: center;
}
#pag_pdp_templates .pag_section_title {
  margin-bottom: 32px;
}
#pag_pdp_templates .pag_tpl_tabs {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e2e2e8;
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 48px;
}
#pag_pdp_templates .pag_tpl_tab {
  padding: 9px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #777;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
#pag_pdp_templates .pag_tpl_tab.active {
  background: #fff;
  color: #f5326f;
  font-weight: 600;
  box-shadow: 0 2px 16px rgba(30,36,48,0.08);
}
#pag_pdp_templates .pag_tpl_slider_outer {
  position: relative;
  margin: 0 -12px;
}
#pag_pdp_templates .pag_tpl_slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 20px 52px;
}
#pag_pdp_templates .pag_tpl_slide {
  flex: 0 0 calc(20% - 16px);
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,36,48,0.12);
  background: #f4f4f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#pag_pdp_templates .pag_tpl_slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
}
#pag_pdp_templates .pag_tpl_slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
#pag_pdp_templates .pag_tpl_slide_ph {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #ede9f7 0%, #d9d3ef 100%);
}
#pag_pdp_templates .pag_tpl_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(30,36,48,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e2e8;
  color: #1e2430;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
#pag_pdp_templates .pag_tpl_arrow:hover:not([disabled]) {
  background: #f4f4f6;
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
}
#pag_pdp_templates .pag_tpl_arrow[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
#pag_pdp_templates .pag_tpl_arrow.pag_tpl_arrow_left {
  left: 4px;
}
#pag_pdp_templates .pag_tpl_arrow.pag_tpl_arrow_right {
  right: 4px;
}
#pag_pdp_templates .pag_tpl_arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}
#pag_pdp_templates .pag_tpl_cta {
  margin-top: 40px;
}
@media (max-width: 900px) {
  #pag_pdp_templates .pag_tpl_slide {
    flex: 0 0 calc(33.333% - 14px);
  }
  #pag_pdp_templates .pag_tpl_slider {
    padding: 16px 52px;
  }
}
@media (max-width: 600px) {
  #pag_pdp_templates .pag_tpl_slide {
    flex: 0 0 calc(50% - 10px);
  }
  #pag_pdp_templates .pag_tpl_slider {
    padding: 12px 48px;
  }
}
#pag_pdp_variants {
  padding: 80px 0;
  background: #fff;
  text-align: center;
  padding-top: 0;
}
#pag_pdp_variants .pag_section_title {
  margin-bottom: 16px;
}
#pag_pdp_variants .pag_pdp_variants_desc {
  color: #777;
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
#pag_pdp_variants .pag_pdp_variants_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
#pag_pdp_variants .pag_pdp_variant_card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(30,36,48,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
#pag_pdp_variants .pag_pdp_variant_card:hover {
  box-shadow: 0 8px 32px rgba(30,36,48,0.14);
  transform: translateY(-4px);
}
#pag_pdp_variants .pag_pdv_img {
  background: #f4f4f6;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  text-decoration: none;
}
#pag_pdp_variants .pag_pdv_img img {
  max-height: 180px;
  object-fit: contain;
  width: auto;
  transition: transform 0.2s ease;
}
#pag_pdp_variants .pag_pdv_img:hover img {
  transform: scale(1.04);
}
#pag_pdp_variants .pag_pdv_img_ph {
  width: 100%;
  height: 180px;
  background: linear-gradient(160deg, #e8e4f5 0%, #d4cfe8 100%);
  border-radius: 6px;
}
#pag_pdp_variants .pag_pdv_body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#pag_pdp_variants .pag_pdv_body h3 {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #1b1a42;
  margin-bottom: 16px;
}
#pag_pdp_variants .pag_pdv_params {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
#pag_pdp_variants .pag_pdv_params li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
  color: #777;
}
#pag_pdp_variants .pag_pdv_ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#pag_pdp_variants .pag_pdv_ico svg {
  width: 16px;
  height: 16px;
  display: block;
  color: #777;
}
#pag_pdp_variants .pag_pdv_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e2e8;
}
#pag_pdp_variants .pag_pdv_price {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
  color: #777;
  white-space: nowrap;
}
#pag_pdp_variants .pag_pdv_price strong {
  font-size: 20px;
  font-weight: 700;
  color: #1e2430;
  display: inline;
}
@media (max-width: 900px) {
  #pag_pdp_variants .pag_pdp_variants_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  #pag_pdp_variants .pag_pdp_variants_grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 799px) {
  #app_head {
    flex-wrap: wrap;
    padding: 10px 12px;
    gap: 8px;
  }
  #app_head .app_head_panel {
    flex: 0 0 100%;
    width: 100%;
  }
  #app_head .app_head_right {
    justify-content: space-between;
  }
  #app_head .button#add2cart,
  #app_head .button.add2cart {
    flex: 1;
    margin-left: 0;
    padding: 12px 16px;
    font-size: 0.9rem;
    height: auto;
    line-height: 1.2;
  }
}
@-moz-keyframes pag_price_spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pag_price_spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes pag_price_spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pag_price_spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#pag_kosik {
  padding: 48px 0 80px;
}
#pag_kosik .pag_kosik_title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1e2430;
  margin-bottom: 32px;
}
.pag_kosik_table {
  border: 1px solid #e2e2e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.pag_kosik_thead {
  display: grid;
  grid-template-columns: 1fr 180px 150px 150px 48px;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #e2e2e8;
  background: #f4f4f6;
}
.pag_kosik_thead > div {
  font-size: 0.8rem;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pag_kosik_thead .pag_kosik_col_qty,
.pag_kosik_thead .pag_kosik_col_price_unit,
.pag_kosik_thead .pag_kosik_col_price_total {
  text-align: center;
}
.pag_kosik_row {
  display: grid;
  grid-template-columns: 1fr 180px 150px 150px 48px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e2e8;
  gap: 0;
}
.pag_kosik_row:last-child {
  border-bottom: none;
}
.pag_kosik_row:hover {
  background: rgba(245,50,111,0.015);
}
.pag_kosik_qty_dis {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px 12px;
  border-bottom: 1px solid #e2e2e8;
  font-size: 0.85rem;
}
.pag_kosik_qty_dis_msg {
  color: #1aab9f;
  font-weight: 600;
  flex: 1;
}
.pag_kosik_qty_dis_free {
  color: #777;
}
.pag_kosik_qty_dis_price {
  color: #1aab9f;
  font-weight: 700;
}
.pag_kosik_col_product {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.pag_kosik_img_wrap {
  flex-shrink: 0;
}
.pag_kosik_img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.pag_kosik_product_info {
  min-width: 0;
}
.pag_kosik_name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e2430;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pag_kosik_name:hover {
  color: #f5326f;
}
.pag_kosik_desc {
  font-size: 0.8rem;
  color: #777;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pag_kosik_col_qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pag_kosik_qty_ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e2e8;
  border-radius: 6px;
  overflow: hidden;
}
.pag_kosik_qty_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #f5326f;
  font-size: 1.2rem;
  font-weight: 300;
  text-decoration: none;
  transition: background 0.15s;
  flex-shrink: 0;
}
.pag_kosik_qty_btn:hover {
  background: #fff1ee;
  color: #f5326f;
}
.pag_kosik_qty_input {
  width: 44px;
  height: 36px;
  border: none;
  border-left: 1.5px solid #e2e2e8;
  border-right: 1.5px solid #e2e2e8;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e2430;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: #fff;
  padding: 0;
  -moz-appearance: textfield;
}
.pag_kosik_qty_input:focus {
  outline: none;
}
.pag_kosik_qty_input::-webkit-outer-spin-button,
.pag_kosik_qty_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.pag_kosik_qty_static {
  font-size: 0.95rem;
  color: #1e2430;
  font-weight: 600;
}
.pag_kosik_qty_badge {
  background: #1aab9f;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pag_kosik_col_price_unit,
.pag_kosik_col_price_total {
  text-align: center;
  font-size: 0.9rem;
  color: #1e2430;
}
.pag_kosik_col_price_total {
  font-weight: 700;
  font-size: 1rem;
}
.pag_kosik_col_del {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pag_kosik_del {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.15s;
}
.pag_kosik_del:hover {
  background: #ffe8ee;
  color: #f5326f;
}
.pag_kosik_coupon_row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(198,240,235,0.45);
  border-bottom: 1px solid #b5ebe5;
  font-size: 0.88rem;
}
.pag_kosik_coupon_row:last-child {
  border-bottom: none;
}
.pag_kosik_coupon_ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #1aab9f;
}
.pag_kosik_coupon_text {
  flex: 1;
  color: #1e2430;
  font-weight: 500;
}
.pag_kosik_coupon_sleva {
  font-weight: 700;
  color: #1aab9f;
  white-space: nowrap;
}
.pag_kosik_coupon_del {
  flex-shrink: 0;
}
.pag_kosik_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  margin-top: 4px;
  border-top: 2px solid #e2e2e8;
}
.pag_kosik_footer_left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pag_kosik_delivery_msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #1e2430;
}
.pag_kosik_delivery_msg svg {
  flex-shrink: 0;
  color: #1aab9f;
}
.pag_kosik_delivery_msg.is-free {
  color: #1aab9f;
  font-weight: 600;
}
.pag_kosik_delivery_msg.is-free svg {
  color: #1aab9f;
}
.pag_kosik_coupon_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.pag_kosik_coupon_wrap > svg {
  flex-shrink: 0;
  color: #777;
}
.pag_kosik_coupon_link {
  color: #f5326f;
  font-weight: 600;
  text-decoration: none;
}
.pag_kosik_coupon_link:hover {
  text-decoration: underline;
}
.pag_kosik_coupon_form {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}
.pag_kosik_coupon_form.shown {
  display: flex;
}
.pag_kosik_coupon_form input[type=text] {
  height: 36px;
  padding: 0 12px;
  border: 1.5px solid #e2e2e8;
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #1e2430;
  background: #fff;
}
.pag_kosik_coupon_form input[type=text]:focus {
  outline: none;
  border-color: #f5326f;
}
.pag_kosik_footer_right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.pag_kosik_total {
  font-size: 1.1rem;
  color: #1e2430;
  white-space: nowrap;
}
.pag_kosik_total strong {
  font-weight: 800;
}
.pag_kosik_saved {
  background: #f5326f;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.pag_kosik_cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.pag_kosik_next_btn {
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pag_kosik_empty {
  text-align: center;
  padding: 80px 0;
}
.pag_kosik_empty p {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .pag_kosik_thead {
    grid-template-columns: 1fr 180px 150px 48px;
  }
  .pag_kosik_thead .pag_kosik_col_price_unit {
    display: none;
  }
  .pag_kosik_row {
    grid-template-columns: 1fr 180px 150px 48px;
  }
  .pag_kosik_col_price_unit {
    display: none;
  }
  .pag_kosik_col_price_total .pag_kosik_unit_hint {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #777;
  }
}
#pag_doprava {
  padding: 48px 0 80px;
}
#pag_doprava .pag_kosik_title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1e2430;
  margin-bottom: 32px;
}
.pag_delpay_country_row {
  margin-bottom: 8px;
}
.pag_delpay_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
.pag_delpay_col_heading {
  font-size: 0.82rem;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.pag_delpay_card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid #e2e2e8;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 6px;
  background: #fff;
}
.pag_delpay_card:last-child {
  margin-bottom: 0;
}
.pag_delpay_card.is-active {
  border-color: #1aab9f;
  background: rgba(198,240,235,0.2);
}
.pag_delpay_card:hover:not(.is-active) {
  border-color: #c8c8d4;
}
.pag_delpay_form {
  flex: 1;
  min-width: 0;
}
.pag_delpay_form > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pag_delpay_form input[type=radio] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  accent-color: #1aab9f;
  cursor: pointer;
  margin: 0;
}
.pag_delpay_form label {
  flex: 1;
  font-size: 0.9rem;
  color: #1e2430;
  cursor: pointer;
  line-height: 1.3;
  margin: 0;
}
.pag_delpay_form label .delivery_desc {
  font-size: 0.78rem;
  color: #777;
  display: block;
  margin-top: 2px;
}
.pag_delpay_form label br {
  display: none;
}
.pag_delpay_img {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pag_delpay_img img.delpay_image {
  max-width: 48px;
  max-height: 28px;
  object-fit: contain;
  display: block;
}
.pag_delpay_date {
  font-size: 0.78rem;
  color: #777;
  white-space: nowrap;
  flex-shrink: 0;
}
.pag_delpay_price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e2430;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
  min-width: 56px;
}
.pag_delpay_price strong {
  font-weight: 800;
}
@media (max-width: 768px) {
  .pag_delpay_wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  #pag_doprava {
    padding: 24px 0 48px;
  }
  .pag_delpay_card {
    padding: 12px;
  }
  .pag_delpay_date {
    display: none;
  }
}
#pag_dodaci {
  padding: 48px 0 0;
}
#pag_dodaci .pag_kosik_title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1e2430;
  margin-bottom: 32px;
}
.pag_dodaci_layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: start;
}
.pag_dodaci_section_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pag_dodaci_section_title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e2430;
}
.pag_dodaci_login_hint {
  font-size: 0.82rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pag_fields_row_2_1 {
  grid-template-columns: 2fr 1fr;
}
.pag_dodaci_phone_row {
  position: relative;
  margin-bottom: 0;
}
.pag_dodaci_phone_row .pag_dodaci_phone_hint {
  font-size: 0.75rem;
  color: #777;
  margin-top: 4px;
  display: block;
}
.pag_dodaci_link {
  display: inline-block;
  font-size: 0.85rem;
  color: #f5326f;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin: 4px 0 12px;
  cursor: pointer;
}
.pag_dodaci_link:hover {
  color: #f4165b;
}
.pag_dodaci_checkbox_row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}
.pag_dodaci_checkbox_row input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #f5326f;
  cursor: pointer;
  flex-shrink: 0;
}
.pag_dodaci_checkbox_row label {
  font-size: 0.88rem;
  color: #1e2430;
  cursor: pointer;
}
.pag_souhrn {
  border: 1.5px solid #e2e2e8;
  border-radius: 10px;
  background: #fff;
  padding: 24px;
  position: sticky;
  top: 16px;
}
.pag_souhrn_head {
  font-size: 1rem;
  font-weight: 700;
  color: #1e2430;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e2e8;
}
.pag_souhrn_row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e2e2e8;
}
.pag_souhrn_row:last-child {
  border-bottom: none;
}
.pag_souhrn_product {
  gap: 10px;
}
.pag_souhrn_img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.pag_souhrn_product_info {
  flex: 1;
  min-width: 0;
}
.pag_souhrn_product_name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e2430;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pag_souhrn_product_desc {
  font-size: 0.78rem;
  color: #777;
  margin-top: 2px;
}
.pag_souhrn_product_meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.pag_souhrn_qty {
  font-size: 0.78rem;
  color: #777;
}
.pag_souhrn_price_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.pag_souhrn_price_orig {
  font-size: 0.78rem;
  color: #777;
  text-decoration: line-through;
  white-space: nowrap;
}
.pag_souhrn_price {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e2430;
  white-space: nowrap;
}
.pag_souhrn_qtydis_msg {
  font-size: 0.75rem;
  color: #1aab9f;
  font-weight: 600;
  margin-top: 4px;
}
.pag_souhrn_coupon_row {
  font-size: 0.85rem;
}
.pag_souhrn_coupon_name {
  flex: 1;
  color: #777;
}
.pag_souhrn_coupon_price {
  font-weight: 700;
  color: #1aab9f;
  white-space: nowrap;
}
.pag_souhrn_delpay_row {
  padding: 8px 0;
}
.pag_souhrn_delpay_name {
  flex: 1;
  font-size: 0.85rem;
  color: #777;
}
.pag_souhrn_delpay_price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e2430;
  white-space: nowrap;
}
.pag_souhrn_total_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  margin-top: 4px;
}
.pag_souhrn_total_label {
  font-size: 0.9rem;
  color: #1e2430;
  font-weight: 500;
}
.pag_souhrn_total_right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pag_souhrn_saved {
  background: #f5326f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
#pag_souhrn_total_price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e2430;
  white-space: nowrap;
}
.pag_dodaci_step_nav {
  margin-top: 40px;
  padding: 24px 0 80px;
}
.pag_dodaci_step_nav_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.pag_dodaci_nav_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.pag_dodaci_gdpr {
  font-size: 0.72rem;
  color: #777;
  text-align: right;
  max-width: 340px;
  line-height: 1.4;
}
.pag_dodaci_gdpr a {
  color: #777;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pag_dodaci_gdpr a:hover {
  color: #f5326f;
}
@media (max-width: 900px) {
  .pag_dodaci_layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pag_souhrn {
    position: static;
    order: -1;
  }
}
@media (max-width: 600px) {
  #pag_dodaci {
    padding: 24px 0 0;
  }
}
@media (max-width: 600px) {
  #pag_kosik {
    padding: 24px 0 48px;
  }
  .pag_kosik_thead {
    display: none;
  }
  .pag_kosik_table {
    border-radius: 6px;
  }
  .pag_kosik_row {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    gap: 12px 8px;
    padding: 16px;
  }
  .pag_kosik_row .pag_kosik_col_product {
    grid-column: 1/3;
  }
  .pag_kosik_row .pag_kosik_col_qty {
    grid-column: 1;
    grid-row: 2;
    align-items: flex-start;
  }
  .pag_kosik_row .pag_kosik_col_price_unit {
    display: none;
  }
  .pag_kosik_row .pag_kosik_col_price_total {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }
  .pag_kosik_row .pag_kosik_col_del {
    grid-column: 3;
    grid-row: 1/3;
    align-items: flex-start;
  }
  .pag_kosik_footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .pag_kosik_footer_right {
    width: 100%;
    justify-content: space-between;
  }
}
#app_head {
  padding: 12px 28px;
  background: #fff;
  border-bottom: 1px solid #e2e2e8;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
}
#app_head h1 {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e2430;
  margin: 0;
}
#app_head #saveProduct {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  color: #f5326f;
  text-decoration: none;
  font-size: 0.9rem;
}
#app_head #saveProduct:hover {
  color: #ef0c53;
}
#app_head .go2saved {
  color: #777;
  font-size: 0.85rem;
}
#app_head .button,
#app_head #main_panel .button {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  height: 44px;
  line-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  background: #f4f4f6;
  color: #1e2430;
  border: none;
  display: inline-block;
  transition: background 0.2s ease;
}
#app_head .button:hover,
#app_head #main_panel .button:hover {
  background: #dedee4;
}
#app_head .button#add2cart,
#app_head .button.add2cart {
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  margin-left: 12px;
  font-size: 1.05rem;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
#app_head .button#add2cart:hover,
#app_head .button.add2cart:hover {
  opacity: 0.9;
}
#app_head .button.add2cartDisabled {
  background: #777;
  color: #fff;
  margin-left: 12px;
  cursor: not-allowed;
}
#app_head .button.add2cartDisabled:hover {
  background: #777;
}
#main_panel .button.add2cart {
  background: linear-gradient(135deg, #fa8555, #f5326f);
  color: #fff;
  display: block;
  text-align: center;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 14px 24px;
  height: auto;
  line-height: 1.2;
  border: none;
  width: 100%;
  margin: 12px 0;
  box-sizing: border-box;
}
#main_panel .button.add2cart:hover {
  opacity: 0.9;
}
#main_panel .button.add2cart .productInfo {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  color: #777;
  margin-top: 8px;
}
#main_panel .button.add2cart .productInfo strong {
  color: #1e2430;
}
#main_panel .button.add2cart .add2cartButton {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.app_menu {
  background: #1b1a42;
  border-right: none;
  width: 88px;
}
.app_menu a {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  padding: 14px 5px;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  transition: background 0.15s, color 0.15s;
}
.app_menu a span.description {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.app_menu a span.icon {
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.15s;
}
.app_menu a:hover,
.app_menu a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.app_menu a:hover span.icon,
.app_menu a.active span.icon {
  opacity: 1;
}
.app_menu a.active {
  background: rgba(245,50,111,0.18);
  color: #f5326f;
  border-left: 3px solid #f5326f;
}
.app_menu a.active span.icon {
  filter: none;
  opacity: 1;
}
@media (max-width: 799px) {
  .app_menu {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
  }
  .app_menu a {
    flex: 1;
    padding: 10px 4px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .app_menu a:last-child {
    border-right: none;
  }
}
.pag_qty_ctrl,
#product_form #qty_container {
  display: inline-flex;
  align-items: center;
  background: #f4f4f6;
  border-radius: 6px;
  overflow: hidden;
}
.pag_qty_ctrl input[type="text"],
#product_form #qty_container input[type="text"],
.pag_qty_ctrl input[type="number"],
#product_form #qty_container input[type="number"] {
  width: 52px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1e2430;
  padding: 8px 0;
  height: auto;
  -moz-appearance: textfield;
}
.pag_qty_ctrl input[type="text"]:focus,
#product_form #qty_container input[type="text"]:focus,
.pag_qty_ctrl input[type="number"]:focus,
#product_form #qty_container input[type="number"]:focus {
  outline: none;
}
.pag_qty_ctrl input[type="text"]::-webkit-outer-spin-button,
#product_form #qty_container input[type="text"]::-webkit-outer-spin-button,
.pag_qty_ctrl input[type="number"]::-webkit-outer-spin-button,
#product_form #qty_container input[type="number"]::-webkit-outer-spin-button,
.pag_qty_ctrl input[type="text"]::-webkit-inner-spin-button,
#product_form #qty_container input[type="text"]::-webkit-inner-spin-button,
.pag_qty_ctrl input[type="number"]::-webkit-inner-spin-button,
#product_form #qty_container input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.pag_qty_ctrl .pag_qty_btn,
#product_form #qty_container .pag_qty_btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 300;
  color: #f5326f;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.pag_qty_ctrl .pag_qty_btn:hover,
#product_form #qty_container .pag_qty_btn:hover {
  background: #f5326f;
  color: #fff;
}
.pag_qty_unit {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  color: #777;
  padding: 0 10px 0 4px;
}
#pag_pdp .pag_qty_ctrl,
#app_head .pag_qty_ctrl {
  background: #fff;
}
@-moz-keyframes pag_spin {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pag_spin {
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes pag_spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pag_spin {
  to {
    transform: rotate(360deg);
  }
}
@-moz-keyframes pag_marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes pag_marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-o-keyframes pag_marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pag_marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
