/* Identity refresh based on index copy.html */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --surface-rgb: 255, 255, 255;
  --surface-soft: rgba(255, 255, 255, 0.52);
  --surface-strong: rgba(255, 255, 255, 0.76);
  --surface-elevated: rgba(255, 255, 255, 0.88);
  --text2: var(--muted);
  --line-soft: rgba(255, 255, 255, 0.86);
  --gradient-brand: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --gradient-aurora: linear-gradient(135deg, rgba(79, 70, 229, 0.16) 0%, rgba(6, 182, 212, 0.12) 50%, rgba(168, 85, 247, 0.14) 100%);
  --gradient-emerald: linear-gradient(135deg, #34d399 0%, #14b8a6 100%);
  --glow: #a855f7;
  --r: 20px;
  --r-lg: 40px;
  --r-xl: 56px;
  --shadow: 0 24px 60px -28px rgba(15, 23, 42, 0.26);
  --shadow-soft: 0 18px 42px -30px rgba(79, 70, 229, 0.34);
  --card-shadow: 0 24px 56px -32px rgba(79, 70, 229, 0.22);
}

body {
  background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 55%, #f8fafc 100%);
  color: var(--text);
  text-align: right;
  isolation: isolate;
}

main,
.r-footer,
.r-wa-float,
.r-back-top,
.r-floating-cart {
  position: relative;
  z-index: 1;
}

.r-wrap,
.r-container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.r-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 55%, #f8fafc 100%);
}

.r-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(92px);
  opacity: 0.56;
  animation: rFloatBlob 16s infinite ease-in-out alternate;
}

.r-blob-1 {
  top: -12%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: rgba(79, 70, 229, 0.22);
}

.r-blob-2 {
  bottom: -24%;
  left: -10%;
  width: 620px;
  height: 620px;
  background: rgba(6, 182, 212, 0.22);
  animation-delay: -6s;
}

.r-blob-3 {
  top: 35%;
  left: 24%;
  width: 420px;
  height: 420px;
  background: rgba(168, 85, 247, 0.18);
  animation-delay: -11s;
}

@keyframes rFloatBlob {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(54px, 82px, 0) scale(1.18); }
}

.r-glass,
.r-header-inner,
.r-nav-shell,
.r-mob-menu,
.r-hero-inner,
.r-page-hero .r-wrap,
.r-shop-hero-inner,
.r-about-card,
.r-story-text,
.r-story-vcard,
.r-vmg-card,
.r-aw-card,
.r-as-card,
.r-srv-card,
.r-prod-card,
.r-art-card,
.r-cta-inner,
.r-so-card,
.r-sd-vis-card,
.r-pc-card,
.r-fp-card,
.r-ag-card,
.r-cnt-form-box,
.r-cnt-info-card,
.r-cnt-wa,
.r-map-wrap,
.r-footer-main,
.r-shop-search-bar,
.r-shop-cat-chip,
.r-sg-scard,
.r-sg-product,
.r-sf-card,
.r-sp-gallery,
.r-sp-tabs-wrap,
.woocommerce form.checkout,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.r-ag-note {
  background: var(--surface-soft);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.r-badge,
.r-so-badge,
.r-sd-badge,
.r-hero-pill,
.r-shop-chip,
.r-art-cat-chip,
.r-art-cat-pill,
.r-pc-card-count,
.r-sg-pbadge,
.r-shop-results {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.82);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px -18px rgba(79, 70, 229, 0.38);
}

.r-badge-dot,
.r-hero-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-lt);
}

.r-hero-pulse {
  animation: pulse 2.2s infinite ease;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.28); }
  50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.r-line {
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: var(--gradient-brand);
  margin-bottom: 18px;
  box-shadow: 0 10px 28px -18px rgba(79, 70, 229, 0.42);
}

.r-line-center { margin-inline: auto; }

.r-htitle,
.r-cta-title,
.r-so-title {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
}

.r-hgold {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.r-hsub,
.r-cta-desc,
.r-so-sub {
  color: var(--muted);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.95;
  max-width: 760px;
}

.r-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.r-header-center .r-hsub,
.r-cta-desc,
.r-shop-cta .r-hsub { margin-inline: auto; }

.r-btn,
.r-prod-btn,
.r-fp-btn,
.r-cnt-submit,
.r-shop-search-btn,
.r-sg-price-btn,
.r-sg-cart-btn,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.r-btn:hover,
.r-prod-btn:hover,
.r-fp-btn:hover,
.r-cnt-submit:hover,
.r-shop-search-btn:hover,
.r-sg-price-btn:hover,
.r-sg-cart-btn:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-3px);
}

.r-btn-gold,
.r-prod-btn,
.r-fp-btn,
.r-cnt-submit,
.r-shop-search-btn,
.r-sg-price-btn,
.r-sg-cart-btn,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  color: #ffffff;
  background: var(--gradient-brand);
  box-shadow: 0 18px 34px -18px rgba(79, 70, 229, 0.42);
}

.r-btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px -18px rgba(15, 23, 42, 0.26);
}

.r-btn-wa,
.r-nav-cta a,
.r-mob-cta a,
.r-wa-btn,
.woocommerce a.checkout-button {
  color: #ffffff;
  background: var(--gradient-emerald);
  box-shadow: 0 18px 34px -18px rgba(16, 185, 129, 0.44);
}

.r-diag {
  width: min(1180px, calc(100% - 32px));
  height: 30px;
  margin: 0 auto;
  position: relative;
}

.r-diag::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.48), transparent);
}

.r-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  padding: 18px 0 0;
  transition: padding 0.28s ease;
}

.r-header-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 86px;
  padding: 16px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 48px -30px rgba(79, 70, 229, 0.34);
}

.r-header.r-scrolled { padding-top: 10px; }
.r-header.r-scrolled .r-header-inner { background: rgba(255, 255, 255, 0.54); }

.r-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.r-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 18px 34px -22px rgba(79, 70, 229, 0.3);
}

.r-logo-text { display: flex; flex-direction: column; gap: 2px; }
.r-logo-name { font-size: 24px; line-height: 1; font-weight: 900; color: var(--text); }
.r-logo-tag { font-size: 13px; font-weight: 800; color: var(--gold); }

.r-nav-shell {
  margin-inline: auto;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.r-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.r-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: #334155;
  font-size: 15px;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.r-nav a:hover,
.r-nav-active {
  background: rgba(255, 255, 255, 0.88);
  color: var(--gold);
  box-shadow: 0 14px 24px -20px rgba(79, 70, 229, 0.4);
}

.r-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.r-nav-cta a,
.r-mob-cta a {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}

.r-hamburger {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 18px 32px -24px rgba(79, 70, 229, 0.34);
}

.r-hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.r-hamburger.r-ham-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.r-hamburger.r-ham-open span:nth-child(2) { opacity: 0; }
.r-hamburger.r-ham-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.r-mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.22);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 58;
}

.r-mob-menu {
  position: fixed;
  top: 98px;
  right: 16px;
  left: 16px;
  padding: 18px;
  border-radius: 32px;
  display: grid;
  gap: 10px;
  transform: translateY(-14px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  z-index: 59;
}

.r-mob-menu a {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  font-weight: 800;
}

.r-mob-open { opacity: 1; visibility: visible; }
.r-mob-menu.r-mob-open { transform: translateY(0) scale(1); }

.r-hero,
.r-page-hero,
.r-shop-hero {
  position: relative;
  overflow: hidden;
}

.r-hero { padding: 156px 0 92px; }
.r-page-hero,
.r-shop-hero { padding: 142px 0 22px; }

.r-hero-glow-a,
.r-hero-glow-b,
.r-page-hero-glow-a,
.r-page-hero-glow-b,
.r-shop-hero-glow-a,
.r-shop-hero-glow-b {
  position: absolute;
  border-radius: 999px;
  filter: blur(78px);
  pointer-events: none;
}

.r-hero-glow-a,
.r-page-hero-glow-a,
.r-shop-hero-glow-a {
  top: 8%;
  right: 4%;
  width: 250px;
  height: 250px;
  background: rgba(79, 70, 229, 0.18);
}

.r-hero-glow-b,
.r-page-hero-glow-b,
.r-shop-hero-glow-b {
  bottom: 0;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.18);
}

.r-hero-inner,
.r-page-hero .r-wrap,
.r-shop-hero-inner {
  position: relative;
  z-index: 2;
  border-radius: var(--r-xl);
  padding: 32px;
}

.r-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 42px;
}

.r-page-hero .r-wrap { text-align: center; }

.r-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.r-breadcrumb a { color: var(--muted); }
.r-breadcrumb a:hover,
.r-breadcrumb-current { color: var(--gold); }
.r-breadcrumb-sep { color: rgba(100, 116, 139, 0.52); }

.r-hero-title,
.r-page-hero h1,
.r-shop-hero-text h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.15;
  font-weight: 900;
  color: var(--text);
}

.r-hero-desc,
.r-page-hero p,
.r-shop-hero-text p {
  color: var(--muted);
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.95;
  margin-top: 16px;
}

.r-hero-btns,
.r-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.r-hero-btns { margin: 32px 0 30px; }

.r-stats-strip,
.r-shop-hero-stats,
.r-sd-stats,
.r-as-grid {
  display: grid;
  gap: 14px;
}

.r-stats-strip,
.r-shop-hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.r-as-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.r-stats-strip {
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.r-stat,
.r-shop-stat,
.r-as-card,
.r-sd-stat {
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.84);
  text-align: center;
  box-shadow: 0 14px 32px -24px rgba(15, 23, 42, 0.24);
}

.r-stat-num,
.r-shop-stat-num,
.r-as-num,
.r-sd-snum {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}

.r-stat-lbl,
.r-shop-stat-lbl,
.r-as-lbl,
.r-sd-slbl {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.r-hero-slider-wrap {
  position: relative;
  padding: 18px;
  border-radius: calc(var(--r-xl) - 8px);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--card-shadow);
}

.r-hero-swiper {
  width: 100%;
  min-height: 520px;
  border-radius: calc(var(--r-xl) - 16px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.46);
}

.r-hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r-hero-chip {
  position: absolute;
  z-index: 3;
  max-width: 240px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 24px 42px -28px rgba(79, 70, 229, 0.34);
}

.r-hero-chip strong { color: var(--gold); }
.r-hero-chip-a { top: 28px; right: 28px; }
.r-hero-chip-b { bottom: 28px; left: 28px; }

.r-about,
.r-services,
.r-products,
.r-why,
.r-articles,
.r-story,
.r-vmg,
.r-about-why,
.r-about-stats,
.r-srv-overview,
.r-sd-sec,
.r-prod-cats,
.r-feat-prods,
.r-art-filter,
.r-art-grid-sec,
.r-contact,
.r-contact-map,
.r-single-content,
.r-shop-search,
.r-shop-grid,
.r-shop-features,
.r-shop-cta,
.r-single-sec,
.r-cart-page-wrap,
.r-checkout-page-wrap,
.r-account-page-wrap {
  padding: 18px 0 88px;
}

.r-about-grid,
.r-story-grid,
.r-cnt-grid,
.r-sd-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.r-about-grid {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: center;
}

.r-story-grid,
.r-cnt-grid,
.r-sd-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
}

.r-features,
.r-services-grid,
.r-products-grid,
.r-why-grid,
.r-articles-grid,
.r-vmg-grid,
.r-aw-grid,
.r-so-grid,
.r-pc-grid,
.r-fp-grid,
.r-ag-grid,
.r-sf-grid {
  display: grid;
  gap: 22px;
}

.r-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.r-services-grid,
.r-products-grid,
.r-sf-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.r-why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.r-articles-grid,
.r-vmg-grid,
.r-aw-grid,
.r-fp-grid,
.r-ag-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.r-so-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.r-pc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.r-about-card,
.r-story-text,
.r-srv-card,
.r-prod-card,
.r-art-card,
.r-vmg-card,
.r-why-card,
.r-aw-card,
.r-pc-card,
.r-fp-card,
.r-ag-card,
.r-so-card,
.r-sf-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border-radius: 36px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.r-about-visual {
  position: relative;
  min-height: auto;
  max-width: 520px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
}

.r-about-grid > * { min-width: 0; }

.r-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.r-srv-card:hover,
.r-prod-card:hover,
.r-art-card:hover,
.r-vmg-card:hover,
.r-why-card:hover,
.r-aw-card:hover,
.r-pc-card:hover,
.r-fp-card:hover,
.r-ag-card:hover,
.r-so-card:hover,
.r-sf-card:hover,
.r-sg-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -28px rgba(79, 70, 229, 0.34);
}

.r-about-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.r-about-card {
  flex: 1 1 auto;
  min-height: auto;
  padding: 30px;
}

.r-about-card-icon,
.r-srv-icon,
.r-so-icon,
.r-vmg-icon,
.r-why-icon,
.r-aw-ico,
.r-cnt-info-icon,
.r-cnt-wa-icon,
.r-pc-card-icon,
.r-sd-big-icon {
  width: 72px;
  height: 72px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 30px -22px rgba(79, 70, 229, 0.34);
  font-size: 34px;
}

.r-about-card-body,
.r-story-text p,
.r-story-text li,
.r-srv-card p,
.r-prod-body p,
.r-art-card p,
.r-vmg-card p,
.r-aw-card p,
.r-cnt-form-box p,
.r-cnt-info-card p,
.r-sd-vis-card p,
.r-so-card p,
.r-ag-card p,
.r-fp-card p {
  color: var(--muted);
  line-height: 1.9;
}

.r-about-card-body {
  display: grid;
  gap: 16px;
  font-size: 15px;
}

.r-about-float {
  position: relative;
  inset: auto;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: auto;
  padding: 14px 24px;
  border-radius: 50px;
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.3);
  max-width: fit-content;
}

.r-about-float-num { font-size: 28px; font-weight: 900; color: #ffffff; margin-bottom: 0; }
.r-about-float-txt { color: rgba(255,255,255,.85); font-size: 12px; font-weight: 700; line-height: 1.4; }

.r-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 28px -24px rgba(15, 23, 42, 0.24);
}

.r-feature-ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  flex: 0 0 auto;
}

.r-feature-txt { color: var(--text); font-size: 14px; font-weight: 800; line-height: 1.8; }
.r-srv-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.r-srv-bar {
  position: static;
  inset: auto;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.18), rgba(6, 182, 212, 0.34), rgba(79, 70, 229, 0.12));
  margin-bottom: 20px;
}
.r-srv-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.r-srv-tag { padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.78); color: var(--muted); font-size: 12px; font-weight: 800; }
.r-srv-link { margin-top: auto; }

.r-prod-thumb,
.r-art-thumb,
.r-fp-img,
.r-ag-img,
.r-pc-card-icon {
  min-height: 220px;
  border-radius: 28px;
  background: var(--gradient-aurora);
  border: 1px solid rgba(255,255,255,.86);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 72px;
  margin-bottom: 24px;
}

.r-prod-cat,
.r-art-cat-pill,
.r-fp-badge,
.r-ag-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.r-art-thumb-bg {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(6,182,212,.08), rgba(168,85,247,.12));
}

.r-prod-body,
.r-art-body,
.r-fp-body,
.r-ag-body,
.r-pc-card-body {
  display: grid;
  gap: 12px;
}

.r-story-text ul,
.r-sd-list,
.r-footer-links,
.r-sg-flist,
.woocommerce-MyAccount-navigation ul,
.woocommerce ul.order_details {
  list-style: none;
}

.r-cnt-form-box,
.r-map-wrap,
.cart_totals,
.woocommerce-cart-form,
.woocommerce form.checkout,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  padding: 28px;
  border-radius: 36px;
}

.r-cnt-row,
.r-sg-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.r-input,
.r-select,
.r-textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.r-textarea,
.woocommerce form .form-row textarea { min-height: 170px; resize: vertical; }

.r-cnt-info {
  display: grid;
  gap: 16px;
}

.r-cnt-info-card,
.r-cnt-wa {
  padding: 24px;
  border-radius: 30px;
}

.r-map-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 30px;
}

.r-single-wrap { max-width: 920px; margin: 0 auto; }
.r-single-thumb,
.r-single-body,
.r-single-nav {
  border-radius: 34px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}

.r-single-body { padding: 34px; }
.r-single-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 24px; padding: 22px 26px; }

.r-footer {
  padding: 40px 0 26px;
}

.r-footer-main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 20px;
  padding: 34px;
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.r-footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.r-back-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 40;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.86);
  color: var(--text);
  box-shadow: 0 20px 34px -24px rgba(15,23,42,.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.r-btt-vis {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.r-wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.r-wa-tooltip,
.r-wa-phone {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.94);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 18px 34px -24px rgba(15,23,42,.3);
}

.r-wa-btn,
.r-floating-cart a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.92);
  position: relative;
}

.r-wa-badge,
.r-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  border: 2px solid #ffffff;
}

.r-floating-cart {
  position: fixed;
  left: 22px;
  bottom: 94px;
  z-index: 50;
}

.r-floating-cart a {
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: 0 20px 34px -24px rgba(79,70,229,.44);
}

.r-shop-search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.r-shop-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.r-shop-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 32px;
}

.r-shop-hero-text {
  display: grid;
  gap: 18px;
}

.r-shop-orbital {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.r-shop-ring {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.9) 0 18%, rgba(255,255,255,.38) 19%, transparent 20% 100%),
    radial-gradient(circle at 24% 26%, rgba(79,70,229,.18), transparent 42%),
    radial-gradient(circle at 78% 72%, rgba(6,182,212,.18), transparent 36%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.78), 0 26px 54px -34px rgba(79,70,229,.34);
}

.r-shop-orbit {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(79,70,229,.18);
  transform: translate(-50%, -50%);
}

.r-shop-orbit-1 { width: 74%; height: 74%; }
.r-shop-orbit-2 { width: 52%; height: 52%; border-color: rgba(6,182,212,.18); }
.r-shop-orbit-3 { width: 90%; height: 90%; border-color: rgba(168,85,247,.14); }

.r-shop-node,
.r-shop-center {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.94);
  box-shadow: 0 22px 42px -28px rgba(79,70,229,.28);
}

.r-shop-center {
  inset: 50%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
  font-size: 42px;
  color: var(--gold);
}

.r-shop-node {
  width: 66px;
  height: 66px;
  font-size: 28px;
}

.r-shop-node-1 { top: 10%; right: 14%; }
.r-shop-node-2 { bottom: 14%; right: 10%; }
.r-shop-node-3 { left: 10%; top: 50%; transform: translateY(-50%); }

.r-shop-chip {
  position: absolute;
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 26px;
  display: grid;
  gap: 4px;
  box-shadow: 0 22px 42px -28px rgba(79,70,229,.3);
}

.r-shop-chip-a { top: 24px; left: 8px; }
.r-shop-chip-b { bottom: 18px; right: 8px; }
.r-shop-chip-lbl { font-size: 12px; font-weight: 800; color: var(--muted); }
.r-shop-chip-val { font-size: 15px; font-weight: 900; color: var(--text); }

.r-shop-stat {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.r-shop-stat-ico {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.88);
  color: var(--gold);
  box-shadow: 0 16px 28px -24px rgba(79,70,229,.3);
  font-size: 20px;
}

.r-shop-search-input,
.r-sg-price-inp,
.woocommerce form .input-text,
.woocommerce form select,
.woocommerce textarea,
.woocommerce-ordering select,
.select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.82);
  color: var(--text);
  padding: 14px 18px;
  font-family: var(--ff);
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.r-shop-search-input:focus,
.r-sg-price-inp:focus,
.woocommerce form .input-text:focus,
.woocommerce form select:focus,
.woocommerce textarea:focus,
.woocommerce-ordering select:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: rgba(79,70,229,.34);
  box-shadow: 0 0 0 4px rgba(79,70,229,.08);
  background: rgba(255,255,255,.94);
}

.r-shop-search-bar svg { color: var(--gold); flex: 0 0 auto; }
.r-shop-search-bar .r-shop-search-input { flex: 1 1 auto; }

.r-shop-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.88);
  color: var(--text);
  font-weight: 800;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.r-shop-cat-chip:hover,
.r-shop-cat-chip.active {
  transform: translateY(-2px);
  color: var(--gold);
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 28px -24px rgba(79,70,229,.34);
}

.r-shop-results {
  min-height: 46px;
  padding-inline: 18px;
}

.r-sg-sidebar form { display: grid; gap: 18px; }

.r-sg-scard h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--text);
}

.woocommerce-ordering,
.woocommerce-ordering form {
  margin: 0;
}

.woocommerce-ordering select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(18px) calc(50% - 3px),
    calc(12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-left: 36px;
}

.r-sg-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.r-sg-flist {
  display: grid;
  gap: 10px;
}

.r-sg-flist li a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  color: var(--text) !important;
  font-size: 14px !important;
  font-weight: 700;
  transition: transform .25s ease, background-color .25s ease;
}

.r-sg-flist li a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.9);
}

.r-sg-fcount {
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,70,229,.1);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.r-sg-product {
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.r-sg-pimg a,
.r-sg-pname a {
  display: block;
  color: inherit;
}

.r-sg-pbadge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.r-sg-pbadge-sale { background: linear-gradient(135deg, #ef4444 0%, #f97316 100%); color: #fff; }
.r-sg-pbadge-hot { background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%); color: #fff; }
.r-sg-pbadge-new { background: var(--gradient-brand); color: #fff; }

.r-sg-pwish {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.r-sg-pwish a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 28px -24px rgba(15,23,42,.26);
}

.r-sg-pcat {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79,70,229,.08);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.r-sg-pname {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
  color: var(--text);
}

.r-sg-pdesc {
  color: var(--muted);
  line-height: 1.9;
  font-size: 14px;
}

.r-sg-prating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f59e0b;
  font-size: 13px;
  font-weight: 800;
}

.r-sg-prating-count { color: var(--muted); }

.r-sg-pfooter {
  margin-top: auto;
  display: grid;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(148,163,184,.16);
}

.r-sg-cart-btn {
  width: 100%;
}

.woocommerce .products,
.woocommerce ul.products {
  margin: 0;
  padding: 0;
}

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

.woocommerce .quantity .qty,
.r-sp-add-to-cart .quantity input[type="number"] {
  border-radius: 14px;
  background: rgba(255,255,255,.82);
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce form.checkout,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 24px 48px -34px rgba(79,70,229,.2);
}

.woocommerce-cart-form table.shop_table,
.woocommerce-checkout-review-order-table {
  background: transparent;
}

.woocommerce .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce .coupon .input-text {
  min-width: 220px;
}

.woocommerce-cart .cart-collaterals,
.woocommerce-checkout .col2-set,
.woocommerce-account .woocommerce {
  display: grid;
  gap: 24px;
}

.woocommerce-checkout .col2-set {
  grid-template-columns: minmax(0, 1fr);
}

.woocommerce-account .woocommerce {
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  align-items: start;
}

.woocommerce-MyAccount-navigation ul,
.woocommerce ul.order_details {
  display: grid;
  gap: 10px;
}

.woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  color: var(--text);
  font-weight: 800;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--gold);
  background: rgba(255,255,255,.94);
}

.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content li,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-order-details,
.woocommerce-customer-details {
  color: var(--muted);
}

.woocommerce-account .addresses,
.woocommerce ul.order_details {
  margin-top: 18px;
}

.woocommerce table.my_account_orders,
.woocommerce table.shop_table_responsive {
  background: transparent;
}

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

.woocommerce form .form-row label {
  margin-bottom: 8px;
  display: inline-block;
  color: var(--text);
  font-weight: 800;
}

.woocommerce-checkout #payment,
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
  background: rgba(255,255,255,.52);
}

.woocommerce-checkout #payment {
  padding: 20px;
  border-radius: 24px;
}

.woocommerce-checkout #payment ul.payment_methods {
  display: grid;
  gap: 10px;
}

.woocommerce-checkout #payment li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
}

.woocommerce .return-to-shop,
.woocommerce .cart-empty,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
  text-align: right;
}

.woocommerce .cart-empty,
.woocommerce .return-to-shop {
  padding: 20px 0;
}

.r-sg-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.r-sg-sidebar {
  width: 300px;
  flex: 0 0 300px;
  display: grid;
  gap: 18px;
  position: sticky;
  top: 120px;
}

.r-sg-main {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 16px;
}

.r-sg-scard { padding: 24px; border-radius: 32px; }
.r-sg-products,
.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; list-style: none; }
.r-sg-product,
.products .product { padding: 20px; border-radius: 34px; background: rgba(255,255,255,.66); border: 1px solid rgba(255,255,255,.88); box-shadow: var(--shadow); }

.r-sg-pimg {
  position: relative;
  min-height: 240px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--gradient-aurora);
  margin-bottom: 20px;
}

.r-sg-pimg img { width: 100%; height: 240px; object-fit: cover; }
.r-sg-pbody { display: grid; gap: 12px; }
.r-sg-pprice, .price { color: var(--gold); font-size: 22px; font-weight: 900; }

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  list-style: none;
  margin-bottom: 18px;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 18px 34px -26px rgba(15,23,42,.24);
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.82);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px;
  border-bottom: 1px solid rgba(148,163,184,.16);
  text-align: right;
}

.woocommerce .page-numbers,
.woocommerce-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.woocommerce .page-numbers a,
.woocommerce .page-numbers span,
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.82);
  color: var(--text);
  font-weight: 800;
}

.woocommerce .page-numbers .current,
.woocommerce-pagination .page-numbers .current { color: #ffffff; background: var(--gradient-brand); }

.admin-bar .r-header { top: 32px; }

@media (max-width: 1200px) {
  .r-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); gap: 30px; }
  .r-shop-hero-inner { grid-template-columns: 1fr; }
  .r-shop-orbital { min-height: 400px; max-width: 520px; margin: 0 auto; }
  .r-about-grid,
  .r-story-grid,
  .r-cnt-grid,
  .r-sd-grid { grid-template-columns: 1fr; }
  .r-services-grid,
  .r-products-grid,
  .r-pc-grid,
  .r-so-grid,
  .r-sg-products,
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .r-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .r-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
  .r-header { padding-top: 12px; }
  .r-header-inner { min-height: 78px; padding: 12px 16px; border-radius: 32px; }
  .r-nav-shell, .r-header-actions { display: none; }
  .r-hamburger { display: flex; margin-inline-start: auto; }
  .r-hero, .r-page-hero, .r-shop-hero { padding-top: 128px; }
  .r-hero-inner, .r-about-grid, .r-story-grid, .r-cnt-grid, .r-sd-grid, .r-sg-layout { grid-template-columns: 1fr; display: grid; }
  .r-shop-search-bar { border-radius: 28px; flex-wrap: wrap; }
  .r-shop-search-btn,
  .r-shop-search-bar .r-shop-search-input { width: 100%; }
  .r-shop-hero-stats,
  .woocommerce-account .woocommerce { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .r-about-card { padding: 30px; }
  .r-about-visual { padding-bottom: 16px; display: flex; flex-direction: column; align-items: center; }
  .r-about-float { margin: 18px auto 0; }
  .r-stats-strip, .r-shop-hero-stats, .r-as-grid, .r-vmg-grid, .r-aw-grid, .r-fp-grid, .r-ag-grid, .r-articles-grid, .r-sf-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .r-sg-sidebar { position: static; width: 100%; flex-basis: auto; }
}

@media (max-width: 768px) {
  .r-wrap, .r-container, .r-header-inner, .r-footer-main, .r-footer-bottom { width: calc(100% - 20px); }
  .r-features, .r-services-grid, .r-products-grid, .r-why-grid, .r-articles-grid, .r-vmg-grid, .r-aw-grid, .r-pc-grid, .r-fp-grid, .r-ag-grid, .r-so-grid, .r-sg-products, .products, .r-sf-grid, .r-cnt-row, .r-sg-price-row { grid-template-columns: 1fr; }
  .r-hero-btns, .r-cta-btns { flex-direction: column; }
  .r-btn, .r-prod-btn, .r-fp-btn, .r-cnt-submit, .r-shop-search-btn, .r-sg-price-btn, .r-sg-cart-btn, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button, .woocommerce #respond input#submit { width: 100%; }
  .r-hero-chip { position: static; margin-top: 14px; max-width: 100%; }
  .r-shop-orbital { min-height: 330px; }
  .r-shop-ring { width: min(100%, 320px); }
  .r-shop-center { width: 92px; height: 92px; font-size: 34px; }
  .r-shop-node { width: 56px; height: 56px; font-size: 24px; }
  .r-shop-chip { position: static; width: 100%; max-width: 100%; margin-top: 12px; }
  .woocommerce-account .woocommerce,
  .woocommerce-cart .cart-collaterals { grid-template-columns: 1fr; }
  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td { padding: 12px; font-size: 13px; }
  .r-about-card,
  .r-story-text,
  .r-srv-card,
  .r-prod-card,
  .r-art-card,
  .r-vmg-card,
  .r-why-card,
  .r-aw-card,
  .r-pc-card,
  .r-fp-card,
  .r-ag-card,
  .r-so-card,
  .r-sf-card,
  .r-cnt-form-box,
  .r-cnt-info-card,
  .r-map-wrap,
  .r-footer-main { padding: 24px; }
  .r-footer-main { grid-template-columns: 1fr; }
  .r-single-nav { flex-direction: column; }
  .r-wa-tooltip,
  .r-wa-phone { display: none; }
}

@media (max-width: 576px) {
  .r-hero, .r-page-hero, .r-shop-hero { padding-top: 116px; }
  .r-hero-inner, .r-page-hero .r-wrap, .r-shop-hero-inner { padding: 24px; }
  .r-hero-swiper { min-height: 300px; }
  .r-shop-hero-stats { grid-template-columns: 1fr; }
  .r-shop-results { width: 100%; justify-content: center; }
  .r-sg-price-row { grid-template-columns: 1fr; }
  .woocommerce .coupon .input-text { min-width: 100%; }
  .r-about-card { padding: 22px; }
  .r-about-float { position: static; margin-top: 16px; width: auto; max-width: fit-content; padding: 12px 20px; gap: 10px; }
  .r-about-float-num { font-size: 24px; }
  .r-about-float-txt { font-size: 11px; }
  .r-logo-name { font-size: 20px; }
  .r-logo-tag { font-size: 12px; }
  .r-back-top { left: 14px; bottom: 14px; }
  .r-wa-float { left: auto; right: 14px; bottom: 14px; }
  .r-floating-cart { left: 14px; right: auto; bottom: 82px; }
}

@media (min-width: 1400px) {
  .r-about-grid {
    grid-template-columns: minmax(390px, 0.94fr) minmax(0, 1.06fr);
    gap: 38px;
  }

  .r-about-visual { max-width: 560px; }
  .r-about-card { padding: 34px 36px; }
  .r-about-card-body { font-size: 16px; }
}

/* Final UI tuneups */
.r-pc-card {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.r-pc-card-icon {
  width: 100%;
  height: auto;
  min-height: 190px;
  padding: 0;
  margin-bottom: 18px;
  border-radius: 30px;
  font-size: 48px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.r-pc-card-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(15,23,42,0.18));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.r-pc-card-icon.r-pc-card-icon-image {
  color: transparent;
  box-shadow: 0 24px 44px -28px rgba(15, 23, 42, 0.34);
}

.r-pc-card-icon.r-pc-card-icon-image::after {
  opacity: 1;
}

.r-pc-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 4px 4px;
}

.r-pc-card-body p {
  margin-bottom: 0;
}

.r-pc-card-count {
  margin-top: auto;
}

.r-footer {
  padding: 44px 0 28px;
  background: transparent;
  color: var(--text);
}

.r-footer-main {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.94) 55%, rgba(12, 26, 43, 0.92) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 32px 60px -40px rgba(15, 23, 42, 0.68);
}

.r-footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(79, 70, 229, 0.28), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(6, 182, 212, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 42%);
  pointer-events: none;
}

.r-footer-main > * {
  position: relative;
  z-index: 1;
}

.r-footer-bottom {
  color: rgba(71, 85, 105, 0.92);
}

.r-footer-col h4,
.r-flogo-name {
  color: #f8fafc;
}

.r-footer-col h4::after {
  background: linear-gradient(90deg, #22d3ee, rgba(255,255,255,0));
}

.r-footer-about p,
.r-footer-links a,
.r-footer-ci-text {
  color: rgba(226, 232, 240, 0.74);
}

.r-footer-links a:hover {
  color: #67e8f9;
}

.r-footer-ci-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #e0f2fe;
}

.r-footer-ci-text strong {
  color: #f8fafc;
}

.r-footer-copy,
.r-footer-blinks a {
  color: rgba(71, 85, 105, 0.86);
}

.r-footer-copy a {
  color: #4338ca;
}

.r-footer-blinks a:hover {
  color: rgba(30, 41, 59, 0.96);
}

body .r-wa-float {
  left: auto;
  right: 22px;
  bottom: 22px;
  width: auto;
  max-width: min(320px, calc(100vw - 28px));
}

body .r-floating-cart {
  left: 22px;
  right: auto;
  bottom: 94px;
}

.r-cta {
  padding: 96px 0;
  background: transparent;
}

.r-cta-inner {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.92) 0%, rgba(240,247,255,0.88) 100%);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 26px 54px -34px rgba(15, 23, 42, 0.26);
}

.r-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(79, 70, 229, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(6, 182, 212, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 44%);
  pointer-events: none;
}

.r-cta-inner > * {
  position: relative;
  z-index: 1;
}

.r-cta-icon-wrap {
  margin-inline: auto;
  margin-bottom: 18px;
}

.r-cta-title {
  max-width: 760px;
  margin-inline: auto;
}

.r-cta-desc,
.r-cta .r-hsub {
  max-width: 640px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .r-pc-card-icon { min-height: 180px; }
}

/* Layout scale and responsive tune */
:root {
  --nt-shell-max: 1460px;
  --nt-shell-gutter: 44px;
}

.r-wrap,
.r-container,
.r-header-inner,
.r-hero-inner,
.r-page-hero .r-wrap,
.r-shop-hero-inner,
.r-footer-main,
.r-footer-bottom {
  width: min(var(--nt-shell-max), calc(100% - var(--nt-shell-gutter)));
}

.r-diag {
  width: min(calc(var(--nt-shell-max) - 120px), calc(100% - var(--nt-shell-gutter)));
}

@media (min-width: 1200px) {
  .r-services-grid,
  .r-products-grid,
  .r-pc-grid,
  .r-fp-grid,
  .r-ag-grid,
  .r-sf-grid,
  .products,
  .r-sg-products {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
  }

  .r-vmg-grid,
  .r-aw-grid,
  .r-articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .r-srv-card,
  .r-prod-card,
  .r-art-card,
  .r-vmg-card,
  .r-aw-card,
  .r-pc-card,
  .r-fp-card,
  .r-ag-card,
  .r-sf-card {
    padding: 32px;
  }
}

@media (max-width: 992px) {
  :root {
    --nt-shell-gutter: 20px;
  }

  .r-wrap,
  .r-container,
  .r-header-inner,
  .r-hero-inner,
  .r-page-hero .r-wrap,
  .r-shop-hero-inner,
  .r-cta-inner,
  .r-footer-main,
  .r-footer-bottom {
    width: calc(100% - var(--nt-shell-gutter));
  }

  .r-hero,
  .r-page-hero,
  .r-shop-hero {
    padding-top: 124px;
  }

  .r-hero-inner,
  .r-page-hero .r-wrap,
  .r-shop-hero-inner,
  .r-cta-inner,
  .r-footer-main {
    padding: 24px;
    border-radius: 30px;
  }

  .r-about-visual,
  .r-about-copy,
  .r-story-text,
  .r-story-vcards,
  .r-cnt-info,
  .r-sg-main,
  .r-sg-sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .r-about-visual {
    max-width: none;
    padding-bottom: 24px;
  }

  .r-stats-strip,
  .r-shop-hero-stats,
  .r-as-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .r-services-grid,
  .r-products-grid,
  .r-why-grid,
  .r-articles-grid,
  .r-vmg-grid,
  .r-aw-grid,
  .r-pc-grid,
  .r-fp-grid,
  .r-ag-grid,
  .r-so-grid,
  .r-sg-products,
  .products,
  .r-sf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --nt-shell-gutter: 16px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .r-wrap,
  .r-container,
  .r-header-inner,
  .r-hero-inner,
  .r-page-hero .r-wrap,
  .r-shop-hero-inner,
  .r-cta-inner,
  .r-footer-main,
  .r-footer-bottom {
    width: calc(100% - var(--nt-shell-gutter));
  }

  .r-hero,
  .r-page-hero,
  .r-shop-hero {
    padding-top: 112px;
  }

  .r-hero-inner,
  .r-page-hero .r-wrap,
  .r-shop-hero-inner,
  .r-cta-inner,
  .r-about-card,
  .r-story-text,
  .r-srv-card,
  .r-prod-card,
  .r-art-card,
  .r-vmg-card,
  .r-aw-card,
  .r-pc-card,
  .r-fp-card,
  .r-ag-card,
  .r-so-card,
  .r-sf-card,
  .r-cnt-form-box,
  .r-cnt-info-card,
  .r-map-wrap,
  .woocommerce form.checkout,
  .woocommerce-account .woocommerce,
  .woocommerce table.shop_table {
    border-radius: 26px;
  }

  .r-stats-strip,
  .r-shop-hero-stats,
  .r-as-grid,
  .r-services-grid,
  .r-products-grid,
  .r-why-grid,
  .r-articles-grid,
  .r-vmg-grid,
  .r-aw-grid,
  .r-pc-grid,
  .r-fp-grid,
  .r-ag-grid,
  .r-so-grid,
  .r-sg-products,
  .products,
  .r-sf-grid,
  .r-features,
  .r-cnt-row,
  .r-sg-price-row,
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .r-hero-chip,
  .r-shop-chip,
  .r-about-float {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .r-about-grid {
    gap: 20px;
  }

  .r-about-copy {
    order: 1;
  }

  .r-about-visual {
    order: 2;
    max-width: none;
    padding-bottom: 0;
  }

  .r-about-card {
    padding: 22px;
  }

  .r-about-card-head {
    margin-bottom: 16px;
  }

  .r-about-card-body {
    gap: 12px;
    font-size: 14px;
  }

  .r-about-float {
    min-width: 0;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
  }

  .r-about-float-num {
    margin-bottom: 0;
    font-size: 26px;
    flex: 0 0 auto;
  }

  .r-about-float-txt {
    font-size: 12px;
    text-align: right;
  }

  .r-about-float-txt br {
    display: none;
  }

  .r-prod-thumb,
  .r-art-thumb,
  .r-fp-img,
  .r-ag-img,
  .r-pc-card-icon {
    min-height: clamp(180px, 52vw, 240px);
  }

  .woocommerce table.shop_table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .r-header-inner,
  .r-hero-inner,
  .r-page-hero .r-wrap,
  .r-shop-hero-inner,
  .r-cta-inner,
  .r-footer-main {
    padding: 20px;
    border-radius: 24px;
  }

  .r-btn,
  .r-prod-btn,
  .r-fp-btn,
  .r-cnt-submit,
  .r-shop-search-btn,
  .r-sg-price-btn,
  .r-sg-cart-btn,
  .woocommerce button.button,
  .woocommerce a.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit {
    width: 100%;
  }

  .r-logo-name {
    font-size: 18px;
  }

  .r-logo-tag {
    display: none;
  }
}
